From 8aed9f046724a31429795714db88ca8c4df57de0 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 18 Sep 2022 12:15:00 +0200 Subject: [PATCH] Turn on compiler optimization --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2da3941..2e4a6ae 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ INCLUDES := src #------------------------------------------------------------------------------- # options for code generation #------------------------------------------------------------------------------- -CFLAGS := -Wall -O0 -ffunction-sections \ +CFLAGS := -Wall -Os -ffunction-sections \ $(MACHDEP) CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__ -D__WUPS__