1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

Exosphere: Fix CFLAGs for latest devkitA64

This commit is contained in:
Michael Scire 2018-07-29 11:02:06 -07:00
parent a3d53fbb2c
commit a9b20b5553

View file

@ -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