simplify TARGET_SUFFIX selection

SVN-Revision: 26033
lede-17.01
Imre Kaloz 2011-03-11 11:33:03 +00:00
parent 53805b9c7d
commit d4afc36c84
1 changed files with 4 additions and 9 deletions

View File

@ -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