Using -O2 instead of -Os to be compatible with the WiiUPluginSystem

This commit is contained in:
Maschell 2018-02-09 21:24:55 +01:00
parent f598fab483
commit 9feb67d69d

View File

@ -32,7 +32,7 @@ LIB := lib
#---------------------------------------------------------------------------------
# options for code generation
#---------------------------------------------------------------------------------
CFLAGS = -g -Os -Wall -D__wiiu__ -D_GNU_SOURCE $(MACHDEP) $(INCLUDE)
CFLAGS = -g -O2 -Wall -D__wiiu__ -D_GNU_SOURCE $(MACHDEP) $(INCLUDE)
CXXFLAGS = $(CFLAGS)
ifeq ($(DO_LOGGING), 1)