diff mbox series

[OpenWrt-Devel] toolchain: Remove powerpc64 libc restriction

Message ID 20190718012548.17573-1-rosenp@gmail.com
State Superseded
Headers show
Series [OpenWrt-Devel] toolchain: Remove powerpc64 libc restriction | expand

Commit Message

Rosen Penev July 18, 2019, 1:25 a.m. UTC
Starting with version 1.1.15, musl supports powerpc64.

There are no known users of powerpc64 yet.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
 toolchain/Config.in | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/toolchain/Config.in b/toolchain/Config.in
index 95087b7078..9ca711e29a 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