7428ffe337
Cores older than v9 don't seem to have atomics so remove it. Fixes a test build of pulseaudio for example. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
381 B
Plaintext
23 lines
381 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_GCC_TARGET_CPU
|
|
default "leon3" if BR2_sparc_leon3
|
|
default "v8" if BR2_sparc_v8
|