diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2011-03-11 11:33:03 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2011-03-11 11:33:03 +0000 |
commit | d4afc36c843e479be138c4d4bf6ec82ba7211044 (patch) | |
tree | a27681c2a43e576a2467a3b57eb7664e942952be /toolchain/Config.in | |
parent | 53805b9c7de4fccf9d05481dab4bf97170181c77 (diff) | |
download | upstream-d4afc36c843e479be138c4d4bf6ec82ba7211044.tar.gz upstream-d4afc36c843e479be138c4d4bf6ec82ba7211044.tar.bz2 upstream-d4afc36c843e479be138c4d4bf6ec82ba7211044.zip |
simplify TARGET_SUFFIX selection
SVN-Revision: 26033
Diffstat (limited to 'toolchain/Config.in')
-rw-r--r-- | toolchain/Config.in | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index 540ae067cb..ef11c9cbae 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -195,15 +195,10 @@ config LIBC_VERSION default GLIBC_VERSION if USE_GLIBC default UCLIBC_VERSION if USE_UCLIBC -config EABI_SUPPORT - bool - depends arm||armeb - default y - 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 + default "gnu" if (USE_EGLIBC || USE_GLIBC) && !arm + default "uclibcgnueabi" if USE_UCLIBC && arm + default "uclibc" if USE_UCLIBC && !arm |