diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-10-11 21:04:29 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-11 22:07:41 +0200 |
commit | b449ba80077d94e503521a53bc7e2613901dd1c7 (patch) | |
tree | 4f88d2f6b579f1a9fa2608d2b6d1be4463aa934c | |
parent | 25fbac566c0540cd34005f14dda8644a1879c85e (diff) | |
download | buildroot-b449ba80077d94e503521a53bc7e2613901dd1c7.tar.gz buildroot-b449ba80077d94e503521a53bc7e2613901dd1c7.zip |
xerces: fix buid with older cmake
Old version of cmake break cross-compilation when FindThreads is used
because of a try_run call. Add a workaround that avoids try_run.
cmake bug report: https://gitlab.kitware.com/cmake/cmake/issues/16920
Fixes:
- http://autobuild.buildroot.org/results/784918c58310474e8b4a0b42850a55ba35a1a19e
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/xerces/xerces.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/xerces/xerces.mk b/package/xerces/xerces.mk index 906e4b663c..c75a8b0d35 100644 --- a/package/xerces/xerces.mk +++ b/package/xerces/xerces.mk @@ -17,6 +17,11 @@ endef XERCES_POST_PATCH_HOOKS += XERCES_DISABLE_SAMPLES +# Before CMake 3.10, passing THREADS_PTHREAD_ARG=OFF was needed to +# disable a try_run() call in the FindThreads tests, which caused a +# build failure when cross-compiling. +XERCES_CONF_OPTS += -DTHREADS_PTHREAD_ARG=OFF + ifeq ($(BR2_PACKAGE_ICU),y) XERCES_DEPENDENCIES += icu endif |