ramips: further improve support for Xiaomi MiWiFi Nano
[oweals/openwrt.git] / toolchain / Config.in
index 95087b7078bbe22a838a51ef841cb2d00e5c96bc..762f4e10d7d82ab2c5075f08ca865f4af5f3361b 100644 (file)
@@ -238,7 +238,6 @@ comment "C Library"
 choice
        prompt "C Library implementation" if TOOLCHAINOPTS
        default LIBC_USE_UCLIBC if arc
-       default LIBC_USE_GLIBC if powerpc64
        default LIBC_USE_MUSL
        help
          Select the C library implementation.
@@ -251,13 +250,12 @@ choice
        config LIBC_USE_UCLIBC
                select USE_UCLIBC
                bool "Use uClibc"
-               depends on !(aarch64 || aarch64_be || powerpc64)
-               depends on BROKEN || !(arm || armeb || i386 || x86_64 || mips || mipsel || mips64 || mips64el || powerpc)
+               depends on BROKEN || arc
 
        config LIBC_USE_MUSL
                select USE_MUSL
                bool "Use musl"
-               depends on !(arc || powerpc64)
+               depends on !arc
 
 endchoice
 
@@ -275,7 +273,6 @@ config GDB
          Enable if you want to build the gdb.
 
 config USE_GLIBC
-       default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && (powerpc64)
        bool
 
 config USE_UCLIBC
@@ -283,7 +280,7 @@ config USE_UCLIBC
        bool
 
 config USE_MUSL
-       default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && !(arc || powerpc64)
+       default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && !(arc)
        bool
 
 config SSP_SUPPORT