mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
0af98ea2d8
Fix the following build failure raised since the addition of the package in commitd5bba26801
: [100%] Linking CXX executable oatppAllTests /home/buildroot/instance-0/output-1/per-package/oatpp/host/opt/ext-toolchain/m68k-buildroot-uclinux-uclibc/bin/ld.real: cannot find -latomic: No such file or directory Fixes:d5bba26801
- http://autobuild.buildroot.org/results/1587b391baecdbb5a24a0c0b2c33d63cb71a2f7f Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
23 lines
670 B
Makefile
23 lines
670 B
Makefile
################################################################################
|
|
#
|
|
# oatpp
|
|
#
|
|
################################################################################
|
|
|
|
OATPP_VERSION = 1.3.0
|
|
OATPP_SITE = $(call github,oatpp,oatpp,$(OATPP_VERSION))
|
|
OATPP_LICENSE = Apache-2.0
|
|
OATPP_LICENSE_FILES = LICENSE
|
|
OATPP_CONF_OPTS = -DBUILD_SHARED_LIBS=OFF -DOATPP_BUILD_TESTS=OFF
|
|
OATPP_INSTALL_STAGING = YES
|
|
# Only builds a static lib and headers
|
|
OATPP_INSTALL_TARGET = NO
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS_NPTL),y)
|
|
OATPP_CONF_OPTS += -DOATPP_COMPAT_BUILD_NO_SET_AFFINITY=OFF
|
|
else
|
|
OATPP_CONF_OPTS += -DOATPP_COMPAT_BUILD_NO_SET_AFFINITY=ON
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|