From: Felix Fietkau Date: Thu, 15 May 2014 20:11:54 +0000 (+0000) Subject: toolchain/gcc: fix build on arm with clang as host gcc replacement X-Git-Tag: reboot~7254 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=479c25641a1370bbb02cbc4fab20c30259aca67f;p=openwrt%2Fstaging%2Fblogic.git toolchain/gcc: fix build on arm with clang as host gcc replacement Signed-off-by: Felix Fietkau SVN-Revision: 40772 --- diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index af971ba78e31..5dfbc488cd46 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -95,6 +95,10 @@ endif GCC_CONFIGURE:= \ SHELL="$(BASH)" \ + $(if $(shell gcc --version 2>&1 | grep LLVM), \ + CFLAGS="-O2 -fbracket-depth=512 -pipe" \ + CXXFLAGS="-O2 -fbracket-depth=512 -pipe" \ + ) \ $(HOST_SOURCE_DIR)/configure \ --with-bugurl=$(BUGURL) \ --with-pkgversion="$(PKGVERSION)" \