From 1bfa7046a590c2d95e6715f4cccbccd41411f668 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 13 May 2022 00:00:58 +0200 Subject: [PATCH] Build with -Os instead of -O0 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5072855..c532006 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ INCLUDES := source #------------------------------------------------------------------------------- # options for code generation #------------------------------------------------------------------------------- -CFLAGS := -Wall -Wextra -O0 -ffunction-sections\ +CFLAGS := -Wall -Wextra -Os -ffunction-sections\ $(MACHDEP) CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__