software/common.mak: Remove GCC_PATH introduced by #1279 since create lots of warning with regular toolchains.
This commit is contained in:
parent
481857ad0a
commit
eab58ff0e9
|
@ -14,7 +14,6 @@ CX_normal := $(CCACHE) clang++ -target $(TRIPLE) -integrated-as
|
|||
else
|
||||
CC_normal := $(CCACHE) $(TARGET_PREFIX)gcc -std=gnu99
|
||||
CX_normal := $(CCACHE) $(TARGET_PREFIX)g++
|
||||
GCC_PATH := $(patsubst %/libgcc.a,%,$(shell $(CC) -print-libgcc-file-name))
|
||||
endif
|
||||
AR_normal := $(TARGET_PREFIX)gcc-ar
|
||||
LD_normal := $(TARGET_PREFIX)ld
|
||||
|
@ -56,9 +55,6 @@ INCLUDES = -I$(PICOLIBC_DIRECTORY)/newlib/libc/tinystdio \
|
|||
-I$(BUILDINC_DIRECTORY)/../libc \
|
||||
-I$(CPU_DIRECTORY)
|
||||
COMMONFLAGS = $(DEPFLAGS) -Os $(CPUFLAGS) -g3 -fomit-frame-pointer -Wall -fno-builtin -fno-stack-protector $(INCLUDES)
|
||||
ifneq (,$(GCC_PATH))
|
||||
COMMONFLAGS += -nostdinc -I$(GCC_PATH)/include -I$(GCC_PATH)/include-fixed
|
||||
endif
|
||||
ifneq ($(CPUFAMILY), arm)
|
||||
COMMONFLAGS += -fexceptions
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue