Files
SDK_SG200x_V2/buildroot-2021.05/arch/Config.in.csky
carbon 390654aa5c add buildroot-2021.05
commit 69f79f2a2ee1417e19c1ead2c9226e11753c06cb
Author: Peter Korsgaard <peter@korsgaard.com>
Date:   Sun Jun 6 23:21:08 2021 +0200

    Update for 2021.05

    Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2024-05-31 19:11:52 +08:00

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; -*-