diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/config/Config.lb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb index 6abef504e4..5a82b41f17 100644 --- a/src/config/Config.lb +++ b/src/config/Config.lb @@ -6,7 +6,8 @@ uses ASSEMBLER_DEBUG makedefine CPP:= $(CC) -x assembler-with-cpp -DASSEMBLY -E makedefine LIBGCC_FILE_NAME := $(shell $(CC) -print-libgcc-file-name) -makedefine GCC_INC_DIR := $(shell LC_ALL=C $(CC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") +makedefine GCC ?= $(CC) +makedefine GCC_INC_DIR := $(shell LC_ALL=C $(GCC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") makedefine CPPFLAGS := -I$(TOP)/src/include -I$(TOP)/src/arch/$(ARCH)/include -I$(GCC_INC_DIR) $(CPUFLAGS) makedefine CFLAGS := $(CPU_OPT) $(DISTRO_CFLAGS) $(CPPFLAGS) -Os -nostdinc -nostdlib -fno-builtin -Wall |