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-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=3a1d1ff152d6b482e5e14fcdbb0211f08b1f4fe4 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 af971ba78e..5dfbc488cd 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)" \