support/scripts/gen-bootlin-toolchains: improve dependencies of ARM toolchains
The current description of the Bootlin ARM toolchains allows them to be selected for ARM big endian configurations, which obviously doesn't work as these Bootlin ARM toolchains are little endian only. We fix this by adding BR2_arm in the list of conditions for those toolchains. Will allow to fix: http://autobuild.buildroot.net/results/7befbb686bb972016ba4e742976dcdb3fed1be11/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
f55b660f9b
commit
f2be0bb278
@ -41,22 +41,22 @@ arches = {
|
|||||||
'prefix': 'arc',
|
'prefix': 'arc',
|
||||||
},
|
},
|
||||||
'armv5-eabi': {
|
'armv5-eabi': {
|
||||||
'conditions': ['BR2_ARM_CPU_ARMV5', 'BR2_ARM_EABI'],
|
'conditions': ['BR2_arm', 'BR2_ARM_CPU_ARMV5', 'BR2_ARM_EABI'],
|
||||||
'test_options': ['BR2_arm', 'BR2_arm926t', 'BR2_ARM_EABI'],
|
'test_options': ['BR2_arm', 'BR2_arm926t', 'BR2_ARM_EABI'],
|
||||||
'prefix': 'arm',
|
'prefix': 'arm',
|
||||||
},
|
},
|
||||||
'armv6-eabihf': {
|
'armv6-eabihf': {
|
||||||
'conditions': ['BR2_ARM_CPU_ARMV6', 'BR2_ARM_EABIHF'],
|
'conditions': ['BR2_arm', 'BR2_ARM_CPU_ARMV6', 'BR2_ARM_EABIHF'],
|
||||||
'test_options': ['BR2_arm', 'BR2_arm1176jzf_s', 'BR2_ARM_EABIHF'],
|
'test_options': ['BR2_arm', 'BR2_arm1176jzf_s', 'BR2_ARM_EABIHF'],
|
||||||
'prefix': 'arm',
|
'prefix': 'arm',
|
||||||
},
|
},
|
||||||
'armv7-eabihf': {
|
'armv7-eabihf': {
|
||||||
'conditions': ['BR2_ARM_CPU_ARMV7A', 'BR2_ARM_EABIHF'],
|
'conditions': ['BR2_arm', 'BR2_ARM_CPU_ARMV7A', 'BR2_ARM_EABIHF'],
|
||||||
'test_options': ['BR2_arm', 'BR2_cortex_a8', 'BR2_ARM_EABIHF'],
|
'test_options': ['BR2_arm', 'BR2_cortex_a8', 'BR2_ARM_EABIHF'],
|
||||||
'prefix': 'arm',
|
'prefix': 'arm',
|
||||||
},
|
},
|
||||||
'armv7m': {
|
'armv7m': {
|
||||||
'conditions': ['BR2_ARM_CPU_ARMV7M'],
|
'conditions': ['BR2_arm', 'BR2_ARM_CPU_ARMV7M'],
|
||||||
'test_options': ['BR2_arm', 'BR2_cortex_m4'],
|
'test_options': ['BR2_arm', 'BR2_cortex_m4'],
|
||||||
'prefix': 'arm',
|
'prefix': 'arm',
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user