From f4fab6faae574275e263f1f0eaeeb53f7ff2c68e Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 29 Apr 2021 01:04:26 -0700 Subject: [PATCH] exo: fix for newer binutils --- config/templates/exosphere.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/templates/exosphere.mk b/config/templates/exosphere.mk index d597c390..6cfa8aaf 100644 --- a/config/templates/exosphere.mk +++ b/config/templates/exosphere.mk @@ -26,7 +26,7 @@ CXXFLAGS := $(CFLAGS) $(ATMOSPHERE_CXXFLAGS) -fno-use-cxa-atexit ASFLAGS := $(ATMOSPHERE_ASFLAGS) $(SETTINGS) endif -export LDFLAGS = -specs=$(TOPDIR)/$(notdir $(TOPDIR)).specs -fno-asynchronous-unwind-tables -fno-unwind-tables -fno-exceptions -fno-rtti -fno-use-cxa-atexit -nostdlib -nostartfiles -g $(SETTINGS) -Wl,-Map,$(notdir $*.map) -Wl,-z,relro,-z,now +export LDFLAGS = -specs=$(TOPDIR)/$(notdir $(TOPDIR)).specs -nostdlib -nostartfiles -fno-asynchronous-unwind-tables -fno-unwind-tables -fno-exceptions -fno-rtti -fno-use-cxa-atexit -nostdlib -nostartfiles -g $(SETTINGS) -Wl,-Map,$(notdir $*.map) -Wl,-z,relro,-z,now export CXXWRAPS := -Wl,--wrap,__cxa_pure_virtual \ -Wl,--wrap,__cxa_throw \