avoid -shared-libgcc due to old Clang versions

This commit is contained in:
Daniel Micay 2019-08-18 04:53:51 -04:00
parent 125efe99db
commit 58b56f10ea
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ OBJECTS := $(SOURCES:.c=.o)
ifeq ($(CONFIG_CXX_ALLOCATOR),true)
# make sure LTO is compatible in case CC and CXX don't match (such as clang and g++)
CXX := $(CC)
LDLIBS += -lstdc++ -shared-libgcc
LDLIBS += -lstdc++ -lgcc_s
SOURCES += new.cc
OBJECTS += new.o