diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-02-26 10:56:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-02-26 10:56:02 +0000 |
commit | baf28c19950d62a50da7a9ef9a9241a42bc1f2b6 (patch) | |
tree | 051ff07b983063d1b4f265b23cee4f657232ad36 | |
parent | f308827220efa4422dc9c0ac4d13bae7205b5be1 (diff) | |
download | master-187ad058-baf28c19950d62a50da7a9ef9a9241a42bc1f2b6.tar.gz master-187ad058-baf28c19950d62a50da7a9ef9a9241a42bc1f2b6.tar.bz2 master-187ad058-baf28c19950d62a50da7a9ef9a9241a42bc1f2b6.zip |
toolchain: use musl instead of glibc by default for mips64
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48804 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | toolchain/Config.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index d1de8f37be..49c3461a1b 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -188,6 +188,7 @@ menuconfig EXTRA_TARGET_ARCH bool "n64" config MIPS64_ABI_N32 + depends on !LIBC_USE_MUSL bool "n32" config MIPS64_ABI_O32 @@ -210,7 +211,6 @@ comment "C Library" choice prompt "C Library implementation" if TOOLCHAINOPTS - default LIBC_USE_GLIBC if mips64 || mips64el default LIBC_USE_UCLIBC if arc default LIBC_USE_MUSL help @@ -230,7 +230,7 @@ choice config LIBC_USE_MUSL select USE_MUSL bool "Use musl" - depends on !(arc || mips64 || mips64el) + depends on !(arc) endchoice @@ -257,7 +257,6 @@ config INSIGHT Enable if you want to build insight-gdb. config USE_GLIBC - default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && (mips64 || mips64el) bool config USE_UCLIBC @@ -265,7 +264,7 @@ config USE_UCLIBC bool config USE_MUSL - default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && !(arc || mips64 || mips64el) + default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && !(arc) bool config USE_EXTERNAL_LIBC |