From 9feb67d69d56e514360a73a5edd6736286c9f10d Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 9 Feb 2018 21:24:55 +0100 Subject: [PATCH] Using -O2 instead of -Os to be compatible with the WiiUPluginSystem --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0ea09bc..7302bea 100644 --- a/Makefile +++ b/Makefile @@ -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)