From 1f5fbe231a821936f6f054fa78f7ca688d733d22 Mon Sep 17 00:00:00 2001 From: Ilya Tagunov Date: Wed, 13 Nov 2024 16:11:25 +0000 Subject: [PATCH] kconfig: assume the host libc provides POSIX reentrant functions This change is needed to avoid including Zephyr-specific implementations of POSIX reentrant functions while building natively. One can safely assume that the host libc indeed provides its own implementations of the said functions. Signed-off-by: Ilya Tagunov --- Kconfig.zephyr | 1 + 1 file changed, 1 insertion(+) diff --git a/Kconfig.zephyr b/Kconfig.zephyr index 51ef697f9c5..5ae12736fdf 100644 --- a/Kconfig.zephyr +++ b/Kconfig.zephyr @@ -448,6 +448,7 @@ config CODING_GUIDELINE_CHECK config NATIVE_LIBC bool select FULL_LIBC_SUPPORTED + select TC_PROVIDES_POSIX_C_LANG_SUPPORT_R help Zephyr will use the host system C library.