diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-07-17 18:57:40 -0700 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-08-05 23:22:26 +0200 |
commit | aa4f68ac9199fe20168dfd305cf5140f919bf0b3 (patch) | |
tree | 3cb735a26ec7f84608c321581fc4195c12ec88f1 /toolchain | |
parent | 427ff0cd261f3ec653ab07ad768a8a0627ec7faf (diff) | |
download | upstream-aa4f68ac9199fe20168dfd305cf5140f919bf0b3.tar.gz upstream-aa4f68ac9199fe20168dfd305cf5140f919bf0b3.tar.bz2 upstream-aa4f68ac9199fe20168dfd305cf5140f919bf0b3.zip |
toolchain: Remove powerpc64 libc restriction
Starting with version 1.1.15, musl supports powerpc64.
There are no known users of powerpc64 yet.
This is effectively a revert of 0de93311e1575ab6f8e9e90b5023b6fb2cedcf1f
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/Config.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index 95087b7078..faff3c8fbb 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -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. @@ -257,7 +256,7 @@ choice config LIBC_USE_MUSL select USE_MUSL bool "Use musl" - depends on !(arc || powerpc64) + depends on !arc endchoice @@ -275,7 +274,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 +281,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 |