diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-29 23:19:19 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-29 23:19:19 +0000 |
commit | 88df28aab181d3660c8544bf16ec8784e3a7f050 (patch) | |
tree | 260f62a83567f41618c7ac1a8fd38e14d57d1115 | |
parent | 926c8dfc7b40f816d40ab9c68914c981a552e964 (diff) | |
download | master-31e0f0ae-88df28aab181d3660c8544bf16ec8784e3a7f050.tar.gz master-31e0f0ae-88df28aab181d3660c8544bf16ec8784e3a7f050.tar.bz2 master-31e0f0ae-88df28aab181d3660c8544bf16ec8784e3a7f050.zip |
toolchain: fix default toolchain selection for mips64 added in r47355
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48554
-rw-r--r-- | toolchain/Config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index 1eb99e362a..d1de8f37be 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -257,10 +257,11 @@ 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 - default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && (arc || mips64 || mips64el) + default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && (arc) bool config USE_MUSL |