diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-01-26 13:03:17 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-01-27 11:17:48 +0100 |
commit | 3c937807a3921c87c6463f9dbb7e225dd711fd45 (patch) | |
tree | 2fe41a289a9f60e4b24932d17265f19e31568777 | |
parent | eb2bb6648fa09a7b59973a9f889e74d098058bd0 (diff) | |
download | buildroot-3c937807a3921c87c6463f9dbb7e225dd711fd45.tar.gz buildroot-3c937807a3921c87c6463f9dbb7e225dd711fd45.zip |
ltp-testsuite: disable numa tests
The LTP_CHECK_SYSCALL_NUMA autoconf macro uses AC_RUN_IFELSE when it
detects the numaif.h header. This is incompatible with cross
compilation.
Fixes:
http://autobuild.buildroot.net/results/21a/21a6eeddbf5ccffc34c38527d0807305a5eb3917/
http://autobuild.buildroot.net/results/fc0/fc01921e8e8e1ea100461b29137c4219e6686c58/
http://autobuild.buildroot.net/results/962/96285d154abd65838ff5c66e96db309d9ac26c80/
Cc: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Acked-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/ltp-testsuite/ltp-testsuite.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/ltp-testsuite/ltp-testsuite.mk b/package/ltp-testsuite/ltp-testsuite.mk index 87854568d8..28dc24749e 100644 --- a/package/ltp-testsuite/ltp-testsuite.mk +++ b/package/ltp-testsuite/ltp-testsuite.mk @@ -56,7 +56,8 @@ LTP_TESTSUITE_CONF_ENV += \ CFLAGS="$(LTP_TESTSUITE_CFLAGS)" \ CPPFLAGS="$(LTP_TESTSUITE_CPPFLAGS)" \ LIBS="$(LTP_TESTSUITE_LIBS)" \ - SYSROOT="$(STAGING_DIR)" + SYSROOT="$(STAGING_DIR)" \ + have_numa_headers=no # Requires uClibc fts and bessel support, normally not enabled ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) |