All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH: buildroot-test 1/2] autobuild-run: do not build boost package with logging option enabled.
@ 2015-04-09 20:21 Romain Naour
  2015-04-09 20:21 ` [Buildroot] [PATCH: buildroot-test 2/2] " Romain Naour
  2015-04-09 21:32 ` [Buildroot] [PATCH: buildroot-test 1/2] " Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Romain Naour @ 2015-04-09 20:21 UTC (permalink / raw)
  To: buildroot

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

Fixes:
http://autobuild.buildroot.net/results/664/6642dc9c569b2820a9d0e273fc2fb1d5a635ba0a/build-end.log

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

diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index 0e12080..35f38ce 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -443,6 +443,10 @@ def fixup_config(**kwargs):
     if 'BR2_PACKAGE_WESTON=y\n' in configlines and \
        'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/mipsel-ctng-linux-uclibc.tar.xz"\n' in configlines:
         return False
+    # This xtensa uClibc toolchain fails to build boost package with logging option enabled
+    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
 
     with open(os.path.join(outputdir, ".config"), "w+") as configf:
         configf.writelines(configlines)
-- 
1.9.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH: buildroot-test 2/2] autobuild-run: do not build boost package with logging option enabled.
  2015-04-09 20:21 [Buildroot] [PATCH: buildroot-test 1/2] autobuild-run: do not build boost package with logging option enabled Romain Naour
@ 2015-04-09 20:21 ` Romain Naour
  2015-04-09 21:32 ` [Buildroot] [PATCH: buildroot-test 1/2] " Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Romain Naour @ 2015-04-09 20:21 UTC (permalink / raw)
  To: buildroot

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@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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH: buildroot-test 1/2] autobuild-run: do not build boost package with logging option enabled.
  2015-04-09 20:21 [Buildroot] [PATCH: buildroot-test 1/2] autobuild-run: do not build boost package with logging option enabled Romain Naour
  2015-04-09 20:21 ` [Buildroot] [PATCH: buildroot-test 2/2] " Romain Naour
@ 2015-04-09 21:32 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-04-09 21:32 UTC (permalink / raw)
  To: buildroot

Dear Romain Naour,

On Thu,  9 Apr 2015 22:21:32 +0200, Romain Naour wrote:
> pthread_spin_* functions are not implemented in the uClibc used by this toolchain.
> 
> Fixes:
> http://autobuild.buildroot.net/results/664/6642dc9c569b2820a9d0e273fc2fb1d5a635ba0a/build-end.log
> 
> Signed-off-by: Romain Naour <romain.naour@openwide.fr>

Xtensa and ARC are not using NPTL, so by choosing my NPTL dependency
proposal, we don't need those patches.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-04-09 21:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-09 20:21 [Buildroot] [PATCH: buildroot-test 1/2] autobuild-run: do not build boost package with logging option enabled Romain Naour
2015-04-09 20:21 ` [Buildroot] [PATCH: buildroot-test 2/2] " Romain Naour
2015-04-09 21:32 ` [Buildroot] [PATCH: buildroot-test 1/2] " Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.