[Buildroot] [PATCH: buildroot-test 2/2] autobuild-run: do not build boost package with logging option enabled.

Romain Naour romain.naour at openwide.fr
Thu Apr 9 20:21:33 UTC 2015


pthread_spin_* functions are not implemented in the uClibc used by this toolchain.

Fixes:
http://autobuild.buildroot.net/results/ba5/ba5836e9a77e1b48e24ace46ca1611c22524261d

Signed-off-by: Romain Naour <romain.naour at openwide.fr>
---
 scripts/autobuild-run | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index 35f38ce..f2f239f 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -447,6 +447,11 @@ def fixup_config(**kwargs):
     if 'BR2_PACKAGE_BOOST_LOG=y\n' in configlines and \
        'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-xtensa-full-2015.02.tar.bz2"\n' in configlines:
         return False
+    # This arc uClibc toolchain fails to build boost package with logging option enabled
+    if 'BR2_PACKAGE_BOOST_LOG=y\n' in configlines and \
+       'BR2_UCLIBC_VERSION_ARC_GIT=y\n' in configlines and \
+       'BR2_UCLIBC_VERSION_STRING="arc-2014.12"\n' in configlines:
+        return False
 
     with open(os.path.join(outputdir, ".config"), "w+") as configf:
         configf.writelines(configlines)
-- 
1.9.3



More information about the buildroot mailing list