menuconfig EXTRA_TARGET_ARCH
bool
prompt "Enable an extra toolchain target architecture" if TOOLCHAINOPTS
+ depends !sparc
default y if powerpc64
default n
help
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)