From 60928a55fc15475b529539671e1f6d7321b6f6af Mon Sep 17 00:00:00 2001 From: Chris Friedt Date: Tue, 24 Dec 2024 12:29:48 -0500 Subject: [PATCH] posix: options: remove default setting of toolchain option Do not set TC_PROVIDES_POSIX_C_LANG_SUPPORT_R as the default in lib/posix/options/Kconfig.c_lang_r . TC_PROVIDES options are only intended to be set by C libraries that implement parts of the POSIX standard. Signed-off-by: Chris Friedt --- lib/posix/options/Kconfig.c_lang_r | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/posix/options/Kconfig.c_lang_r b/lib/posix/options/Kconfig.c_lang_r index 89058d5d79d54a..b2f1ae3ea4aaaa 100644 --- a/lib/posix/options/Kconfig.c_lang_r +++ b/lib/posix/options/Kconfig.c_lang_r @@ -9,7 +9,6 @@ config POSIX_C_LANG_SUPPORT_R select COMMON_LIBC_CTIME_R if ! TC_PROVIDES_POSIX_C_LANG_SUPPORT_R select COMMON_LIBC_GMTIME_R if ! TC_PROVIDES_POSIX_C_LANG_SUPPORT_R select COMMON_LIBC_LOCALTIME_R_UTC if ! TC_PROVIDES_POSIX_C_LANG_SUPPORT_R - default y if TC_PROVIDES_POSIX_C_LANG_SUPPORT_R help Select 'y' here and Zephyr will provide an implementation of the POSIX_C_LANG_SUPPORT_R Option Group, consisting of asctime_r(), ctime_r(), gmtime_r(), localtime_r(), rand_r(),