diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-03-09 11:37:50 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-03-09 11:37:50 +0000 |
commit | e442f210240e5c6b7375c7d988a490d5a934b4a1 (patch) | |
tree | 58d6d18d9044f733dd63a1b35004ba1fa6473826 /toolchain | |
parent | fc61e669dd15a35d68669b4ad1f28ac84cae34ff (diff) | |
download | upstream-e442f210240e5c6b7375c7d988a490d5a934b4a1.tar.gz upstream-e442f210240e5c6b7375c7d988a490d5a934b4a1.tar.bz2 upstream-e442f210240e5c6b7375c7d988a490d5a934b4a1.zip |
fix target name mixup caused by r25928
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25969 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/Config.in | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index 61a54a3532..3ff48048c5 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -86,6 +86,11 @@ menuconfig TOOLCHAINOPTS bool "Toolchain Options" if DEVEL depends NEED_TOOLCHAIN +config EABI_SUPPORT + bool + depends arm||armeb + default y + menuconfig EXTRA_TARGET_ARCH bool prompt "Enable an extra toolchain target architecture" if TOOLCHAINOPTS @@ -197,5 +202,8 @@ config LIBC_VERSION config TARGET_SUFFIX string - default "gnueabi" if (USE_EGLIBC || USE_GLIBC) - default "uclibcgnueabi" if USE_UCLIBC + 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 + |