From 2f605559625f38c281a24792a6e76ad4ef17ddd8 Mon Sep 17 00:00:00 2001 From: charlescookey Date: Wed, 4 Oct 2023 20:33:45 +0100 Subject: [PATCH] gcc and g++ check fails , so adding this line fixed it for me --- include/prereq-build.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/prereq-build.mk b/include/prereq-build.mk index edd63e9ee682..bd746b76ace5 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -37,6 +37,7 @@ $(eval $(call SetupHostCommand,gcc, \ gcc7 --version | grep gcc, \ gcc8 --version | grep gcc, \ gcc9 --version | grep gcc, \ + gcc --version | grep gcc, \ gcc --version | grep Apple.LLVM )) $(eval $(call TestHostCommand,working-gcc, \ @@ -56,6 +57,7 @@ $(eval $(call SetupHostCommand,g++, \ g++7 --version | grep g++, \ g++8 --version | grep g++, \ g++9 --version | grep g++, \ + g++ --version | grep g++, \ g++ --version | grep Apple.LLVM )) $(eval $(call TestHostCommand,working-g++, \