[PATCH 1/3] tools/nolibc: split the architecture list into multiple lines

From: Thomas Weißschuh

Date: Wed Aug 19 2026 - 02:33:05 EST


The list is getting long, split it up for easier additions.

Signed-off-by: Thomas Weißschuh <linux@xxxxxxxxxxxxxx>
---
tools/include/nolibc/Makefile | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/tools/include/nolibc/Makefile b/tools/include/nolibc/Makefile
index 6d213d372bf8..b5897b3964f8 100644
--- a/tools/include/nolibc/Makefile
+++ b/tools/include/nolibc/Makefile
@@ -17,7 +17,22 @@ endif
# it defaults to this nolibc directory.
OUTPUT ?= $(CURDIR)/

-architectures := alpha arm arm64 loongarch m68k mips openrisc parisc powerpc riscv s390 sh sparc x86
+architectures := \
+ alpha \
+ arm \
+ arm64 \
+ loongarch \
+ m68k \
+ mips \
+ openrisc \
+ parisc \
+ powerpc \
+ riscv \
+ s390 \
+ sh \
+ sparc \
+ x86 \
+
arch_files := arch.h $(addsuffix .h, $(addprefix arch-, $(architectures)))
all_files := \
alloca.h \

--
2.55.0