From ab53da081f18a1362337a799136135912a454f60 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 82c7fd79ad0dddf..6008e4915aaebf4 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_APPLICATION + default PICOLIBC default NEWLIB_LIBC if REQUIRES_FULL_LIBC - default PICOLIBC if REQUIRES_FULL_LIBC default MINIMAL_LIBC config MINIMAL_LIBC