* [Buildroot] [autobuild-run: 1/2] autobuild-run: update cs nios2 toolchain comment about PR19405.
@ 2017-05-06 13:49 Romain Naour
2017-05-06 13:49 ` [Buildroot] [autobuild-run: 2/2] autobuild-run: Add an exception for CS nios2 2016.05 with qt package (gui) Romain Naour
2017-05-06 13:59 ` [Buildroot] [autobuild-run: 1/2] autobuild-run: update cs nios2 toolchain comment about PR19405 Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Romain Naour @ 2017-05-06 13:49 UTC (permalink / raw)
To: buildroot
The toolchain was updated to 2017.02 but the PR19405 issue is still
present.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
scripts/autobuild-run | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index 20e0033..ed3ddd2 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -495,11 +495,11 @@ 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
- # The cs nios2 2016.05 toolchain is affected by binutils PR19405
+ # The cs nios2 2017.02 toolchain is affected by binutils PR19405
if 'BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII=y\n' in configlines and \
'BR2_PACKAGE_BOOST=y\n' in configlines:
return False
- # The cs nios2 2016.05 toolchain is affected by binutils PR19405
+ # The cs nios2 2017.02 toolchain is affected by binutils PR19405
if 'BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII=y\n' in configlines and \
'BR2_PACKAGE_QT5BASE_GUI=y\n' in configlines:
return False
--
2.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* [Buildroot] [autobuild-run: 2/2] autobuild-run: Add an exception for CS nios2 2016.05 with qt package (gui)
2017-05-06 13:49 [Buildroot] [autobuild-run: 1/2] autobuild-run: update cs nios2 toolchain comment about PR19405 Romain Naour
@ 2017-05-06 13:49 ` Romain Naour
2017-05-06 13:59 ` [Buildroot] [autobuild-run: 1/2] autobuild-run: update cs nios2 toolchain comment about PR19405 Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Romain Naour @ 2017-05-06 13:49 UTC (permalink / raw)
To: buildroot
This toolchain is affected by binutils PR19405 so use an autobuilder
exception like for boost and qt5base (gui). This allow to remove all
toolchain dependencies on the GUI option of qt package and it's reverse
dependencies.
https://sourceware.org/bugzilla/show_bug.cgi?id=19405
Fixes:
http://autobuild.buildroot.net/results/ee562524c5b12191e584ceae89006c5a5103e700
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
scripts/autobuild-run | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index ed3ddd2..5dcbe5f 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -503,6 +503,10 @@ def fixup_config(**kwargs):
if 'BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII=y\n' in configlines and \
'BR2_PACKAGE_QT5BASE_GUI=y\n' in configlines:
return False
+ # The cs nios2 2017.02 toolchain is affected by binutils PR19405
+ if 'BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII=y\n' in configlines and \
+ 'BR2_PACKAGE_QT_GUI_MODULE=y\n' in configlines:
+ return False
with open(os.path.join(outputdir, ".config"), "w+") as configf:
configf.writelines(configlines)
--
2.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* [Buildroot] [autobuild-run: 1/2] autobuild-run: update cs nios2 toolchain comment about PR19405.
2017-05-06 13:49 [Buildroot] [autobuild-run: 1/2] autobuild-run: update cs nios2 toolchain comment about PR19405 Romain Naour
2017-05-06 13:49 ` [Buildroot] [autobuild-run: 2/2] autobuild-run: Add an exception for CS nios2 2016.05 with qt package (gui) Romain Naour
@ 2017-05-06 13:59 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2017-05-06 13:59 UTC (permalink / raw)
To: buildroot
Hello,
On Sat, 6 May 2017 15:49:48 +0200, Romain Naour wrote:
> The toolchain was updated to 2017.02 but the PR19405 issue is still
> present.
>
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
> scripts/autobuild-run | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Both applied to buildroot-test, thanks!
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:[~2017-05-06 13:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-06 13:49 [Buildroot] [autobuild-run: 1/2] autobuild-run: update cs nios2 toolchain comment about PR19405 Romain Naour
2017-05-06 13:49 ` [Buildroot] [autobuild-run: 2/2] autobuild-run: Add an exception for CS nios2 2016.05 with qt package (gui) Romain Naour
2017-05-06 13:59 ` [Buildroot] [autobuild-run: 1/2] autobuild-run: update cs nios2 toolchain comment about PR19405 Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox