From: Rosen Penev Date: Sat, 12 Dec 2020 03:18:33 +0000 (-0800) Subject: toolchain: default to glibc for ARC X-Git-Tag: v21.02.0-rc1~763 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=95f1002acab574c24ad78f4453f091bf5a6731c7;p=openwrt%2Fstaging%2Fhauke.git toolchain: default to glibc for ARC glibc 2.32 gained support for the ARC architecture. This is preparation for removing uClibc-ng. Signed-off-by: Rosen Penev --- diff --git a/toolchain/Config.in b/toolchain/Config.in index cb557d4ad3..29de30d7e9 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -237,7 +237,7 @@ comment "C Library" choice prompt "C Library implementation" if TOOLCHAINOPTS - default LIBC_USE_UCLIBC if arc + default LIBC_USE_GLIBC if arc default LIBC_USE_MUSL help Select the C library implementation. @@ -245,7 +245,6 @@ choice config LIBC_USE_GLIBC bool "Use glibc" select USE_GLIBC - depends on !arc config LIBC_USE_UCLIBC select USE_UCLIBC