mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
db5e6d6c14
On m68k, we are passing the exact same values of BR2_GCC_TARGET_ARCH and BR2_GCC_TARGET_TUNE, which is redundant. Therefore, this commit removes the usage of BR2_GCC_TARGET_TUNE on m68k. 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>
17 lines
363 B
Plaintext
17 lines
363 B
Plaintext
config BR2_ARCH
|
|
default "m68k" if BR2_m68k
|
|
|
|
config BR2_ENDIAN
|
|
default "BIG"
|
|
|
|
config BR2_ARCH_HAS_ATOMICS
|
|
default y
|
|
|
|
config BR2_GCC_TARGET_ARCH
|
|
default "68000" if BR2_m68k_68000
|
|
default "68010" if BR2_m68k_68010
|
|
default "68020" if BR2_m68k_68020
|
|
default "68030" if BR2_m68k_68030
|
|
default "68040" if BR2_m68k_68040
|
|
default "68060" if BR2_m68k_68060
|