a5023c5204
On SPARC, BR2_GCC_TARGET_TUNE was only used for one specific case, the BR2_sparc_v8. There is actually no reason to not use BR2_GCC_TARGET_CPU instead for this, as all values supported for -mtune are also supported for -mcpu. Therefore, the only BR2_GCC_TARGET_TUNE case is moved as a BR2_GCC_TARGET_CPU case. [Peter: fixup merge conflict after 'sparc: Add leon3 cpu type and remove sparc{s,h}fleon{,v8}] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
26 lines
421 B
Plaintext
26 lines
421 B
Plaintext
choice
|
|
prompt "Target Architecture Variant"
|
|
depends on BR2_sparc
|
|
default BR2_sparc_v8
|
|
help
|
|
Specific CPU variant to use
|
|
|
|
config BR2_sparc_v8
|
|
bool "v8"
|
|
config BR2_sparc_leon3
|
|
bool "leon3"
|
|
endchoice
|
|
|
|
config BR2_ARCH
|
|
default "sparc" if BR2_sparc
|
|
|
|
config BR2_ENDIAN
|
|
default "BIG"
|
|
|
|
config BR2_ARCH_HAS_ATOMICS
|
|
default y
|
|
|
|
config BR2_GCC_TARGET_CPU
|
|
default "leon3" if BR2_sparc_leon3
|
|
default "v8" if BR2_sparc_v8
|