diff mbox series

[OpenWrt-Devel] toolchain: Simplify libc selection

Message ID 20191008222434.2022-1-rosenp@gmail.com
State Accepted
Delegated to: John Crispin
Headers show
Series [OpenWrt-Devel] toolchain: Simplify libc selection | expand

Commit Message

Rosen Penev Oct. 8, 2019, 10:24 p.m. UTC
uClibc-ng is only needed for ARC. Simplify the conditions.

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 faff3c8fbb..762f4e10d7 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -250,8 +250,7 @@  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