mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-24 19:56:35 +00:00
ltp-testsuite: support building with toolchains without native RPC
ltp-testsuite needs RPC, but this could also be provided by libtirpc. The dependency of libtirpc on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 does not need to be propagated, because it is always satisfied: ltp-testsuite depends on BR2_USE_MMU which is always unset for Blackfin targets. Since musl toolchains never have RPC support, this change would now allow building of ltp-testsuite on musl toolchains. Unfortunately, ltp-testsuite does not build yet with musl, so a specific check on musl is added. This is deemed more conceptually correct than checking on glibc||uclibc. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Cc: "Yann E. Morin" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
6406d41e60
commit
baedef979c
@ -6,7 +6,8 @@ config BR2_PACKAGE_LTP_TESTSUITE
|
|||||||
bool "ltp-testsuite"
|
bool "ltp-testsuite"
|
||||||
depends on BR2_USE_MMU # fork()
|
depends on BR2_USE_MMU # fork()
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||||
depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
||||||
|
select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
|
||||||
# does not build, cachectl.h issue
|
# does not build, cachectl.h issue
|
||||||
depends on !BR2_nios2
|
depends on !BR2_nios2
|
||||||
help
|
help
|
||||||
@ -21,7 +22,7 @@ config BR2_PACKAGE_LTP_TESTSUITE
|
|||||||
|
|
||||||
http://ltp.sourceforge.net/
|
http://ltp.sourceforge.net/
|
||||||
|
|
||||||
comment "ltp-testsuite needs a toolchain w/ RPC, threads"
|
comment "ltp-testsuite needs a non-musl toolchain w/ threads"
|
||||||
depends on !BR2_nios2
|
depends on !BR2_nios2
|
||||||
depends on BR2_USE_MMU
|
depends on BR2_USE_MMU
|
||||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_HAS_NATIVE_RPC
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_MUSL
|
||||||
|
@ -19,8 +19,19 @@ endif
|
|||||||
|
|
||||||
# ltp-testsuite uses <fts.h>, which isn't compatible with largefile
|
# ltp-testsuite uses <fts.h>, which isn't compatible with largefile
|
||||||
# support.
|
# support.
|
||||||
|
LTP_TESTSUITE_CFLAGS = $(filter-out -D_FILE_OFFSET_BITS=64,$(TARGET_CFLAGS))
|
||||||
|
LTP_TESTSUITE_CPPFLAGS = $(filter-out -D_FILE_OFFSET_BITS=64,$(TARGET_CPPFLAGS))
|
||||||
|
LTP_TESTSUITE_LIBS =
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
|
||||||
|
LTP_TESTSUITE_DEPENDENCIES += libtirpc host-pkgconf
|
||||||
|
LTP_TESTSUITE_CFLAGS += "`$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`"
|
||||||
|
LTP_TESTSUITE_LIBS += "`$(PKG_CONFIG_HOST_BINARY) --libs libtirpc`"
|
||||||
|
endif
|
||||||
|
|
||||||
LTP_TESTSUITE_CONF_ENV += \
|
LTP_TESTSUITE_CONF_ENV += \
|
||||||
CFLAGS="$(filter-out -D_FILE_OFFSET_BITS=64,$(TARGET_CFLAGS))" \
|
CFLAGS="$(LTP_TESTSUITE_CFLAGS)" \
|
||||||
CPPFLAGS="$(filter-out -D_FILE_OFFSET_BITS=64,$(TARGET_CPPFLAGS))"
|
CPPFLAGS="$(LTP_TESTSUITE_CPPFLAGS)" \
|
||||||
|
LIBS="$(LTP_TESTSUITE_LIBS)"
|
||||||
|
|
||||||
$(eval $(autotools-package))
|
$(eval $(autotools-package))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user