b8aad93817
As Guo explained, upstream gcc does not support abi-v1 (only abi-v2), but ck610 needs abi-v1 [0] [1] To simplify things, we make the whole C-SKY architecture require gcc-9 or later, and add a single exception in gcc to force the ck610 to use the C-SKY port. Note that this does not change the default gcc version to be used for C-SKY: the C-SKY port is still always the default one; the gcc-9 version is only proposed as an alternative (except for ck610, of course). [0] http://lists.busybox.net/pipermail/buildroot/2019-July/254386.html [1] package/Makefile.in#73 Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Guo Ren <guoren@kernel.org> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Romain Naour <romain.naour@gmail.com> Acked-by: Guo Ren <guoren@kernel.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
50 lines
965 B
Plaintext
50 lines
965 B
Plaintext
choice
|
|
prompt "Target Architecture Variant"
|
|
default BR2_ck610
|
|
help
|
|
Specific CPU variant to use
|
|
|
|
config BR2_ck610
|
|
# Not supported by upstream gcc <= 9, and handled as a special
|
|
# exception in package/gcc/Config.in.host
|
|
bool "ck610"
|
|
|
|
config BR2_ck807
|
|
bool "ck807"
|
|
|
|
config BR2_ck810
|
|
bool "ck810"
|
|
|
|
config BR2_ck860
|
|
bool "ck860"
|
|
|
|
endchoice
|
|
|
|
config BR2_CSKY_FPU
|
|
bool "Enable FPU coprocessor"
|
|
depends on BR2_ck810 || BR2_ck807 || BR2_ck860
|
|
help
|
|
You can say N here if your C-SKY CPU doesn't have a
|
|
Floating-Point Coprocessor or if you don't need FPU support
|
|
for your user-space programs.
|
|
|
|
config BR2_CSKY_VDSP
|
|
bool "Enable VDSP enhanced instructions Co-processor"
|
|
depends on BR2_CSKY_FPU
|
|
|
|
config BR2_GCC_TARGET_FLOAT_ABI
|
|
default "soft" if !BR2_CSKY_FPU
|
|
default "hard" if BR2_CSKY_FPU
|
|
|
|
config BR2_ARCH
|
|
default "csky"
|
|
|
|
config BR2_ENDIAN
|
|
default "LITTLE"
|
|
|
|
config BR2_READELF_ARCH_NAME
|
|
default "CSKY"
|
|
|
|
# vim: ft=kconfig
|
|
# -*- mode:kconfig; -*-
|