prereq-build: add clang support

The Apple g++ check is really clang in disguise. Furthermore, testing on
Linux hosts reveals that clang can sufficiently replace gcc.

Minimum version of clang is 12 because of ccache.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/17259
Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
This commit is contained in:
Rosen Penev
2026-06-16 10:56:46 +02:00
committed by Jonas Jelonek
parent fa846e7e64
commit a62ffbf3ac
+4 -2
View File
@@ -35,7 +35,8 @@ $(eval $(call SetupHostCommand,gcc, \
Please install the GNU C Compiler (gcc) 10 or later, \
$(CC) -dumpversion | grep -E '^(1[0-9]|[2-9][0-9])\.?', \
gcc -dumpversion | grep -E '^(1[0-9]|[2-9][0-9])\.?', \
gcc --version | grep -E 'Apple.(LLVM|clang)' ))
clang -dumpversion | grep -E '^(1[2-9]|[2-9][0-9])\.', \
clang-12 -dumpversion | grep -E '^(1[2-9]|[2-9][0-9])\.' ))
$(eval $(call TestHostCommand,working-gcc, \
Please reinstall the GNU C Compiler (10 or later) - \
@@ -47,7 +48,8 @@ $(eval $(call SetupHostCommand,g++, \
Please install the GNU C++ Compiler (g++) 10 or later, \
$(CXX) -dumpversion | grep -E '^(1[0-9]|[2-9][0-9])\.?', \
g++ -dumpversion | grep -E '^(1[0-9]|[2-9][0-9])\.?', \
g++ --version | grep -E 'Apple.(LLVM|clang)' ))
clang++ -dumpversion | grep -E '^(1[2-9]|[2-9][0-9])\.', \
clang++-12 -dumpversion | grep -E '^(1[2-9]|[2-9][0-9])\.' ))
$(eval $(call TestHostCommand,working-g++, \
Please reinstall the GNU C++ Compiler (10 or later) - \