[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250629170732.16817-3-w@1wt.eu>
Date: Sun, 29 Jun 2025 19:07:32 +0200
From: Willy Tarreau <w@....eu>
To: Thomas Weißschuh <thomas.weissschuh@...utronix.de>
Cc: linux-kernel@...r.kernel.org, Arnd Bergmann <arnd@...db.de>,
Willy Tarreau <w@....eu>
Subject: [RFC PATCH v2 2/2] tools/nolibc: add a new "install_all_archs" target
This installs all supported archs together, both from nolibc and kernel
headers. The arch-specific asm/ subdirs are renamed to asm-arch-$arch,
and asm/ is rebuilt from all these files in order to include the right
one depending on the build architecture. This is done by reusing a
template file (asm-template.h) for each file found under asm-arch-*,
and including the right sub-dir depending on the current arch.
This allows to use a single unified sysroot for all archs, and to only
change the compiler or the target architecture. This way, a complete
sysroot is much easier to use (a single directory is needed) and much
smaller.
Signed-off-by: Willy Tarreau <w@....eu>
---
tools/include/nolibc/Makefile | 24 ++++++++++++++++++++++++
tools/include/nolibc/asm-template.h | 25 +++++++++++++++++++++++++
2 files changed, 49 insertions(+)
create mode 100644 tools/include/nolibc/asm-template.h
diff --git a/tools/include/nolibc/Makefile b/tools/include/nolibc/Makefile
index d5be3d213c885..c47559a066f35 100644
--- a/tools/include/nolibc/Makefile
+++ b/tools/include/nolibc/Makefile
@@ -86,6 +86,7 @@ help:
@echo " headers prepare a multi-arch sysroot in \$${OUTPUT}sysroot"
@echo " headers_standalone like \"headers\", and also install kernel headers"
@echo " help this help"
+ @echo " install_all_archs install a multi-arch sysroot + kernel headers in \$${OUTPUT}sysroot"
@echo ""
@echo "These targets may also be called from tools as \"make nolibc_<target>\"."
@echo ""
@@ -105,6 +106,29 @@ headers_standalone: headers
$(Q)$(MAKE) -C $(srctree) headers
$(Q)$(MAKE) -C $(srctree) headers_install INSTALL_HDR_PATH=$(OUTPUT)sysroot
+install_all_archs: headers
+ @# install common headers for any arch, take them all. This will clear everything.
+ $(Q)$(MAKE) -C $(srctree) ARCH=x86 mrproper
+ $(Q)$(MAKE) -C $(srctree) ARCH=x86 headers_install no-export-headers= INSTALL_HDR_PATH="$(OUTPUT)sysroot"
+ @# remove the contents of the unused asm dir which we will rebuild from the arch ones
+ $(Q)rm -rf "$(OUTPUT)sysroot/include/asm"
+ $(Q)mkdir -p "$(OUTPUT)sysroot/include/asm"
+ @# Now install headers for all archs
+ $(Q)for arch in $(nolibc_supported_archs); do \
+ echo "# installing $$arch"; \
+ if ! [ -d $(OUTPUT)sysroot/include/asm-arch-$$arch ]; then \
+ $(MAKE) -C $(srctree) ARCH=$$arch mrproper; \
+ $(MAKE) -C $(srctree) ARCH=$$arch headers_install no-export-headers= \
+ INSTALL_HDR_PATH="$(OUTPUT)sysroot/include/$$arch" >/dev/null; \
+ mv "$(OUTPUT)sysroot/include/$$arch/include/asm" "$(OUTPUT)sysroot/include/asm-arch-$$arch"; \
+ rm -rf "$(OUTPUT)sysroot/include/$$arch"; \
+ fi;\
+ done; \
+ mkdir -p "$(OUTPUT)sysroot/include/asm"; \
+ for file in $$(find "$(OUTPUT)sysroot/include/"asm-arch-* -maxdepth 1 -name '*.h' -printf '%P\n'); do \
+ sed -e "s!_ASMFILE_!$$file!" asm-template.h > "$(OUTPUT)sysroot/include/asm/$$file"; \
+ done
+
# GCC uses "s390", clang "systemz"
CLANG_CROSS_FLAGS := $(subst --target=s390-linux,--target=systemz-linux,$(CLANG_CROSS_FLAGS))
diff --git a/tools/include/nolibc/asm-template.h b/tools/include/nolibc/asm-template.h
new file mode 100644
index 0000000000000..84930c4761d16
--- /dev/null
+++ b/tools/include/nolibc/asm-template.h
@@ -0,0 +1,25 @@
+/* SPDX-License-Identifier: LGPL-2.1 OR MIT */
+
+#if defined(__x86_64__) || defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__)
+#include "../asm-arch-x86/_ASMFILE_"
+#elif defined(__ARM_EABI__)
+#include "../asm-arch-arm/_ASMFILE_"
+#elif defined(__aarch64__)
+#include "../asm-arch-arm64/_ASMFILE_"
+#elif defined(__mips__)
+#include "../asm-arch-mips/_ASMFILE_"
+#elif defined(__powerpc__)
+#include "../asm-arch-powerpc/_ASMFILE_"
+#elif defined(__riscv)
+#include "../asm-arch-riscv/_ASMFILE_"
+#elif defined(__s390x__) || defined(__s390__)
+#include "../asm-arch-s390/_ASMFILE_"
+#elif defined(__loongarch__)
+#include "../asm-arch-loongarch/_ASMFILE_"
+#elif defined(__sparc__)
+#include "../asm-arch-sparc/_ASMFILE_"
+#elif defined(__m68k__)
+#include "../asm-arch-m68k/_ASMFILE_"
+#else
+#error Unsupported Architecture
+#endif
--
2.17.5
Powered by blists - more mailing lists