From 012c9a28470fbf9b36fa6df21e02597f08c02553 Mon Sep 17 00:00:00 2001 From: David Schneider Date: Tue, 7 May 2024 15:14:31 +0200 Subject: [PATCH] libc/picolibc: Support Picolibc for toolchains without bundled Picolibc Allow Picolibc to get build from module, if the toolchain does not include a bundled picolibc. This should always be possible, except for native applications and if libcpp is required. Signed-off-by: David Schneider --- lib/libc/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/libc/Kconfig b/lib/libc/Kconfig index dc65b683118..1dcc3dc729a 100644 --- a/lib/libc/Kconfig +++ b/lib/libc/Kconfig @@ -43,7 +43,6 @@ config NEWLIB_LIBC_SUPPORTED config PICOLIBC_SUPPORTED bool depends on !NATIVE_APPLICATION - depends on ("$(TOOLCHAIN_HAS_PICOLIBC)" = "y") || (NATIVE_LIBRARY) depends on !REQUIRES_FULL_LIBCPP || ("$(TOOLCHAIN_HAS_PICOLIBC)" = "y") default y select FULL_LIBC_SUPPORTED