diff options
author | Felix Fietkau <nbd@nbd.name> | 2019-10-10 13:42:56 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2019-10-10 13:43:04 +0200 |
commit | 46a129194de0f9e2f71b6526634569e1ec802504 (patch) | |
tree | aacd1db66a1fd58b4ad08513f6d51d411a4609cb /include | |
parent | f690b6f472cd82fbe12d2b1da43098c9af36d0fc (diff) | |
download | upstream-46a129194de0f9e2f71b6526634569e1ec802504.tar.gz upstream-46a129194de0f9e2f71b6526634569e1ec802504.tar.bz2 upstream-46a129194de0f9e2f71b6526634569e1ec802504.zip |
build: adjust gcc/g++ version checks for newer apple compilers
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'include')
-rw-r--r-- | include/prereq-build.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 40df89575d..0f2a35c93b 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -37,7 +37,7 @@ $(eval $(call SetupHostCommand,gcc, \ gcc7 --version | grep gcc, \ gcc8 --version | grep gcc, \ gcc9 --version | grep gcc, \ - gcc --version | grep Apple.LLVM )) + gcc --version | grep -E 'Apple.(LLVM|clang)' )) $(eval $(call TestHostCommand,working-gcc, \ \nPlease reinstall the GNU C Compiler (4.8 or later) - \ @@ -56,7 +56,7 @@ $(eval $(call SetupHostCommand,g++, \ g++7 --version | grep g++, \ g++8 --version | grep g++, \ g++9 --version | grep g++, \ - g++ --version | grep Apple.LLVM )) + g++ --version | grep -E 'Apple.(LLVM|clang)' )) $(eval $(call TestHostCommand,working-g++, \ \nPlease reinstall the GNU C++ Compiler (4.8 or later) - \ |