From cff76278fd251a3f95804d3d408c8d707f1e3c8b Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Tue, 10 Jan 2023 21:17:32 -0800 Subject: [PATCH] libc: Default to picolibc where supported This switches the default C library to picolibc for all targets which support it. Signed-off-by: Keith Packard --- lib/libc/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/Kconfig b/lib/libc/Kconfig index 13e590b23b51d8..cf026ec32a8a13 100644 --- a/lib/libc/Kconfig +++ b/lib/libc/Kconfig @@ -55,8 +55,8 @@ menu "C Library" choice LIBC_IMPLEMENTATION prompt "C Library Implementation" default EXTERNAL_LIBC if NATIVE_BUILD + default PICOLIBC default NEWLIB_LIBC if REQUIRES_FULL_LIBC - default PICOLIBC if REQUIRES_FULL_LIBC default MINIMAL_LIBC config MINIMAL_LIBC