From: Yorkie Liu Date: Tue, 19 Nov 2019 05:41:10 +0000 (+0800) Subject: toolchain/gcc: correct the check expr for newer clang X-Git-Tag: v19.07.0~50 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=a7d880e830cf786941c14f5fd410a7e918ffcb5d;ds=sidebyside toolchain/gcc: correct the check expr for newer clang This fixes gcc build error within clang 11.0, it tweaks the version string from LLVM to clang. Signed-off-by: Yorkie Liu (cherry picked from commit 65a561fd0919eafff2363ae8324db64be2a57f77) --- diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index f7390c159e..e2dfcea6cb 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -85,7 +85,7 @@ endif GCC_CONFIGURE:= \ SHELL="$(BASH)" \ - $(if $(shell gcc --version 2>&1 | grep LLVM), \ + $(if $(shell gcc --version 2>&1 | grep -E "Apple.(LLVM|clang)"), \ CFLAGS="-O2 -fbracket-depth=512 -pipe" \ CXXFLAGS="-O2 -fbracket-depth=512 -pipe" \ ) \