bool "Toolchain Options" if DEVEL
depends NEED_TOOLCHAIN
-config EABI_SUPPORT
- bool
- depends arm||armeb
- prompt "Enable EABI support" if TOOLCHAINOPTS
- default n if TARGET_gemini
- default n if TARGET_cns21xx
- default y
- help
- Enable ARM EABI support
-
menuconfig EXTRA_TARGET_ARCH
bool
prompt "Enable an extra toolchain target architecture" if TOOLCHAINOPTS
config USE_UCLIBC
bool
- default y if !TOOLCHAINOPTS
+ default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
+
+config USE_EXTERNAL_LIBC
+ bool
+ default y if EXTERNAL_TOOLCHAIN || NATIVE_TOOLCHAIN
source "toolchain/gcc/Config.version"
config TARGET_SUFFIX
string
- default "gnueabi" if (USE_EGLIBC || USE_GLIBC) && EABI_SUPPORT
- default "gnu" if (USE_EGLIBC || USE_GLIBC) && !EABI_SUPPORT
- default "uclibcgnueabi" if USE_UCLIBC && EABI_SUPPORT
- default "uclibc" if USE_UCLIBC && !EABI_SUPPORT
-
+ default "gnueabi" if (USE_EGLIBC || USE_GLIBC) && (arm || armeb)
+ default "gnu" if (USE_EGLIBC || USE_GLIBC) && !(arm || armeb)
+ default "uclibcgnueabi" if USE_UCLIBC && (arm || armeb)
+ default "uclibc" if USE_UCLIBC && !(arm || armeb)