Skip to content

Commit

Permalink
support/scripts/gen-bootlin-toolchains: adjust dependencies of i686 t…
Browse files Browse the repository at this point in the history
…oolchains

The Bootlin i686 toolchain was already made available only on BR2_i386
with !BR2_x86_i486 && !BR2_x86_i586 && !BR2_x86_1000. However, this
was not sufficient as a few other architecture variants of BR2_i386
are "lower" than i686, and they need to be excluded as well.

Allows to fix:

  http://autobuild.buildroot.net/results/56ac1a8fa5b34a9ca10eef98ae9fb090b8c762c4/

Signed-off-by: Thomas Petazzoni <[email protected]>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
  • Loading branch information
tpetazzoni authored and arnout committed Jun 14, 2022
1 parent b079f58 commit 26dee54
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion support/scripts/gen-bootlin-toolchains
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,12 @@ arches = {
'conditions': ['BR2_i386',
'!BR2_x86_i486',
'!BR2_x86_i586',
'!BR2_x86_x1000'],
'!BR2_x86_x1000',
'!BR2_x86_pentium_mmx',
'!BR2_x86_geode',
'!BR2_x86_c3',
'!BR2_x86_winchip_c6',
'!BR2_x86_winchip2'],
'test_options': ['BR2_i386',
'BR2_x86_i686'],
'prefix': 'i686',
Expand Down

0 comments on commit 26dee54

Please sign in to comment.