From a9b20b5553661a64cb7b8e55f18383257e20a3ce Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sun, 29 Jul 2018 11:02:06 -0700 Subject: [PATCH] Exosphere: Fix CFLAGs for latest devkitA64 --- exosphere/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/exosphere/Makefile b/exosphere/Makefile index 079ae7bd4..7f0340003 100644 --- a/exosphere/Makefile +++ b/exosphere/Makefile @@ -33,12 +33,14 @@ CFLAGS := \ -ffunction-sections \ -fdata-sections \ -fomit-frame-pointer \ + -fno-asynchronous-unwind-tables \ + -fno-unwind-tables \ -std=gnu11 \ -Werror \ -Wall \ $(ARCH) $(DEFINES) -CFLAGS += $(INCLUDE) +CFLAGS += $(INCLUDE) CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11