[PATCH v2 02/11] kbuild: introduce CONFIG_ARCH_HAS_NOLIBC
From: Thomas Weißschuh
Date: Mon Apr 07 2025 - 03:46:12 EST
Nolibc does not support all architectures.
Add a kconfig option, so users can know where it is available.
The new option is maintained inside tools/include/nolibc/ as only that
directory is responsible for nolibc's availability.
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@xxxxxxxxxxxxx>
---
init/Kconfig | 2 ++
tools/include/nolibc/Kconfig.nolibc | 13 +++++++++++++
2 files changed, 15 insertions(+)
diff --git a/init/Kconfig b/init/Kconfig
index dd2ea3b9a799205daa4c1f0c694a9027e344c690..661079a71f30d8d7894d51726686801f8a25b50b 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -92,6 +92,8 @@ config CC_CAN_LINK_STATIC
default $(success,$(srctree)/scripts/cc-can-link.sh $(CC) $(CLANG_FLAGS) $(USERCFLAGS) $(USERLDFLAGS) $(m64-flag) -static) if 64BIT
default $(success,$(srctree)/scripts/cc-can-link.sh $(CC) $(CLANG_FLAGS) $(USERCFLAGS) $(USERLDFLAGS) $(m32-flag) -static)
+source "tools/include/nolibc/Kconfig.nolibc"
+
# Fixed in GCC 14, 13.3, 12.4 and 11.5
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113921
config GCC_ASM_GOTO_OUTPUT_BROKEN
diff --git a/tools/include/nolibc/Kconfig.nolibc b/tools/include/nolibc/Kconfig.nolibc
new file mode 100644
index 0000000000000000000000000000000000000000..60408f02d0da3275c70f550b98a9e60c1558238f
--- /dev/null
+++ b/tools/include/nolibc/Kconfig.nolibc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: GPL-2.0
+
+config ARCH_HAS_NOLIBC
+ bool
+ default y if X86
+ default y if ARM
+ default y if ARM64
+ default y if PPC
+ default y if MIPS
+ default y if LOONGARCH
+ default y if RISCV
+ default y if S390
+ default y if UML_X86
--
2.49.0