mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
c4bc257a09
Unit tests fail to build with gcc 10 on: [100%] Linking C executable NE10_dsp_unit_test_smoke /home/buildroot/autobuild/instance-2/output-1/host/opt/ext-toolchain/bin/../lib/gcc/aarch64-none-linux-gnu/10.2.1/../../../../aarch64-none-linux-gnu/bin/ld: CMakeFiles/NE10_dsp_unit_test_static.dir/__/modules/dsp/test/test_suite_fft_float32.c.o:(.bss+0x0): multiple definition of `seatest_simple_test_result'; CMakeFiles/NE10_dsp_unit_test_static.dir/__/modules/dsp/test/test_main.c.o:(.bss+0x0): first defined here So just disable them and, while at it, also disable examples which are also enabled by default Fixes: - http://autobuild.buildroot.org/results/c658d52668825c26a15d6ac3ca538472cad5cd78 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# ne10
|
|
#
|
|
################################################################################
|
|
|
|
NE10_VERSION = 1.2.1
|
|
NE10_SITE = $(call github,projectNe10,Ne10,v$(NE10_VERSION))
|
|
NE10_LICENSE = BSD-3-Clause or Apache-2.0
|
|
NE10_LICENSE_FILES = doc/LICENSE
|
|
NE10_INSTALL_STAGING = YES
|
|
|
|
NE10_CONF_OPTS = \
|
|
-DGNULINUX_PLATFORM=ON \
|
|
-DNE10_BUILD_EXAMPLES=OFF \
|
|
-DNE10_BUILD_UNIT_TEST=OFF \
|
|
-DNE10_LINUX_TARGET_ARCH=$(if $(BR2_aarch64),aarch64,armv7)
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
|
NE10_CONF_OPTS += \
|
|
-DNE10_BUILD_SHARED=ON
|
|
endif
|
|
|
|
# The package does not have any install target, so have to provide
|
|
# INSTALL_STAGING_CMDS and INSTALL_TARGET_CMDS.
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
|
define NE10_INSTALL_STAGING_SHARED_LIB
|
|
cp -dpf $(@D)/modules/libNE10*.so* $(STAGING_DIR)/usr/lib/
|
|
endef
|
|
endif
|
|
|
|
define NE10_INSTALL_STAGING_CMDS
|
|
cp -dpf $(@D)/inc/NE10*h $(STAGING_DIR)/usr/include/
|
|
cp -dpf $(@D)/modules/libNE10.a $(STAGING_DIR)/usr/lib/
|
|
$(NE10_INSTALL_STAGING_SHARED_LIB)
|
|
endef
|
|
|
|
define NE10_INSTALL_TARGET_CMDS
|
|
cp -dpf $(@D)/modules/libNE10*.so* $(TARGET_DIR)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(cmake-package))
|