* [Buildroot] [PATCH] autobuild-run: Do not build civetweb with a known non-working external MIPS toolchain
@ 2014-12-08 12:34 Vicente Olivert Riera
2014-12-08 12:46 ` Thomas Petazzoni
0 siblings, 1 reply; 4+ messages in thread
From: Vicente Olivert Riera @ 2014-12-08 12:34 UTC (permalink / raw)
To: buildroot
This MIPS uClibc toolchain doesn't have the needed fix in order to build
the civetweb package statically for uClibc. It fails with messages like
these ones:
libdl.c:(.text+0x1840): undefined reference to `TLS_DTPREL_VALUE'
libdl.c:(.text+0x1884): undefined reference to `TLS_TPREL_VALUE'
This is due to certain missing fixes in uClibc, as built by Crosstool-NG.
Related:
http://lists.uclibc.org/pipermail/uclibc/2013-April/047708.html
http://git.buildroot.net/buildroot/commit/?id=c0b4c45780e4ffe23101a407e7c4cde22e27815a
Fixes:
http://autobuild.buildroot.net/results/9b5/9b5a5f5e1c4331d6ba44a12f66f74d950ee69ada/
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
scripts/autobuild-run | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index 993c578..4ac0c7b 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -310,6 +310,10 @@ def fixup_config(instance, sysinfo):
if 'BR2_PACKAGE_CIVETWEB=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 MIPS uClibc toolchain fails to build the civetweb package
+ if 'BR2_PACKAGE_CIVETWEB=y\n' in configlines and \
+ 'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-mipsel-o32-full-2014.08.tar.bz2"\n' in configlines:
+ return False
# This MIPS ctng toolchain fails to build the python3 package
if 'BR2_PACKAGE_PYTHON3=y\n' in configlines and \
'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/mips64el-ctng_n64-linux-gnu.tar.xz"\n' in configlines:
--
1.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] autobuild-run: Do not build civetweb with a known non-working external MIPS toolchain
2014-12-08 12:34 [Buildroot] [PATCH] autobuild-run: Do not build civetweb with a known non-working external MIPS toolchain Vicente Olivert Riera
@ 2014-12-08 12:46 ` Thomas Petazzoni
2014-12-08 13:27 ` Vicente Olivert Riera
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2014-12-08 12:46 UTC (permalink / raw)
To: buildroot
Dear Vicente Olivert Riera,
On Mon, 8 Dec 2014 12:34:55 +0000, Vicente Olivert Riera wrote:
> + # This MIPS uClibc toolchain fails to build the civetweb package
> + if 'BR2_PACKAGE_CIVETWEB=y\n' in configlines and \
> + 'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-mipsel-o32-full-2014.08.tar.bz2"\n' in configlines:
> + return False
I have just updated the BR toolchains used by the autobuilders, so the
version is now 2014.11 and not 2014.08.
Maybe some other exceptions in the autobuild-run script need to be
updated as well.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] autobuild-run: Do not build civetweb with a known non-working external MIPS toolchain
2014-12-08 12:46 ` Thomas Petazzoni
@ 2014-12-08 13:27 ` Vicente Olivert Riera
2014-12-08 15:26 ` Vicente Olivert Riera
0 siblings, 1 reply; 4+ messages in thread
From: Vicente Olivert Riera @ 2014-12-08 13:27 UTC (permalink / raw)
To: buildroot
On 12/08/2014 12:46 PM, Thomas Petazzoni wrote:
> Dear Vicente Olivert Riera,
>
> On Mon, 8 Dec 2014 12:34:55 +0000, Vicente Olivert Riera wrote:
>
>> + # This MIPS uClibc toolchain fails to build the civetweb package
>> + if 'BR2_PACKAGE_CIVETWEB=y\n' in configlines and \
>> + 'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-mipsel-o32-full-2014.08.tar.bz2"\n' in configlines:
>> + return False
>
> I have just updated the BR toolchains used by the autobuilders, so the
> version is now 2014.11 and not 2014.08.
>
> Maybe some other exceptions in the autobuild-run script need to be
> updated as well.
Ok, I will check all the MIPS exceptions with the new toolchains to
check if they are still needed. Thanks.
Cheers,
--
Vicente Olivert Riera
Graduate Software Engineer, MIPS Platforms
Imagination Technologies Limited
t: +44 (0)113 2429814
www.imgtec.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] autobuild-run: Do not build civetweb with a known non-working external MIPS toolchain
2014-12-08 13:27 ` Vicente Olivert Riera
@ 2014-12-08 15:26 ` Vicente Olivert Riera
0 siblings, 0 replies; 4+ messages in thread
From: Vicente Olivert Riera @ 2014-12-08 15:26 UTC (permalink / raw)
To: buildroot
Dear Thomas Petazzoni,
On 12/08/2014 01:27 PM, Vicente Olivert Riera wrote:
> On 12/08/2014 12:46 PM, Thomas Petazzoni wrote:
>> Dear Vicente Olivert Riera,
>>
>> On Mon, 8 Dec 2014 12:34:55 +0000, Vicente Olivert Riera wrote:
>>
>>> + # This MIPS uClibc toolchain fails to build the civetweb package
>>> + if 'BR2_PACKAGE_CIVETWEB=y\n' in configlines and \
>>> + 'BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-mipsel-o32-full-2014.08.tar.bz2"\n' in configlines:
>>> + return False
>>
>> I have just updated the BR toolchains used by the autobuilders, so the
>> version is now 2014.11 and not 2014.08.
>>
>> Maybe some other exceptions in the autobuild-run script need to be
>> updated as well.
>
> Ok, I will check all the MIPS exceptions with the new toolchains to
> check if they are still needed. Thanks.
>
> Cheers,
>
I have successfully built conntrack-tools, rt-test and civetweb packages
using the new br-mipsel-o32-full-2014.11 toolchain. I will send a patch
to remove those exceptions from the autobuild-run script.
Cheers,
--
Vicente Olivert Riera
Graduate Software Engineer, MIPS Platforms
Imagination Technologies Limited
t: +44 (0)113 2429814
www.imgtec.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-12-08 15:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-08 12:34 [Buildroot] [PATCH] autobuild-run: Do not build civetweb with a known non-working external MIPS toolchain Vicente Olivert Riera
2014-12-08 12:46 ` Thomas Petazzoni
2014-12-08 13:27 ` Vicente Olivert Riera
2014-12-08 15:26 ` Vicente Olivert Riera
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox