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 | 6e26fed85fcc6dfc6946d1f530c137c8a322d15f (patch) | |
tree | 7e859c89514746a252f20a3c9f2e556df3b98a15 /toolchain | |
parent | 283fbdf2339b4743ff4cf14fe4218716bd05d6bc (diff) | |
download | master-187ad058-6e26fed85fcc6dfc6946d1f530c137c8a322d15f.tar.gz master-187ad058-6e26fed85fcc6dfc6946d1f530c137c8a322d15f.tar.bz2 master-187ad058-6e26fed85fcc6dfc6946d1f530c137c8a322d15f.zip |
[toolchain]: simplify TARGET_SUFFIX selection
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26033 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-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 |