From 4d1bc0e24efa3e0093dd620bb30a7312e7a8a90d Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 28 Jan 2022 19:51:00 +0100 Subject: [PATCH] Don't depend on gcc_s --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e3cd131..6254138 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,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++ -lgcc_s + LDLIBS += -lstdc++ SOURCES += new.cc OBJECTS += new.o