Browse Source

toolchain/gcc: fix build on arm with clang as host gcc replacement

Signed-off-by: Felix Fietkau <[email protected]>

SVN-Revision: 40772
Felix Fietkau 11 years ago
parent
commit
479c25641a
1 changed files with 4 additions and 0 deletions
  1. 4 0
      toolchain/gcc/common.mk

+ 4 - 0
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)" \