From 376ada809ac2babcee5d6042d9ca54304effbe11 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 22 Apr 2022 22:45:44 +0200 Subject: [PATCH] Use -Os instead of -O2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 48176c2..02cd1d6 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ INCLUDES := source #------------------------------------------------------------------------------- # options for code generation #------------------------------------------------------------------------------- -CFLAGS := -Wall -O2 -ffunction-sections\ +CFLAGS := -Wall -Os -ffunction-sections\ $(MACHDEP) CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__