[toolchain]: simplify TARGET_SUFFIX selection
[openwrt/svn-archive/archive.git] / toolchain / Config.in
index 3ff48048c5b1bb50e6f7bf795fc819c6805bfa55..ef11c9cbae19a618f30eaa81559cdc93ab9564b8 100644 (file)
@@ -86,11 +86,6 @@ 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
@@ -202,8 +197,8 @@ config LIBC_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
+       default "gnu"             if (USE_EGLIBC || USE_GLIBC) && !arm
+       default "uclibcgnueabi"   if USE_UCLIBC && arm
+       default "uclibc"          if USE_UCLIBC && !arm