From 9a081bfb04c1f1f75968e63d3fea3ca5e528d4ee Mon Sep 17 00:00:00 2001 From: Maschell Date: Wed, 29 Apr 2026 08:34:15 +0200 Subject: [PATCH] Compile with O2 as we are not limited by binary sizes anymore --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f6389ec..8bec9a8 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ INCLUDES := source #------------------------------------------------------------------------------- # options for code generation #------------------------------------------------------------------------------- -CFLAGS := -Wall -Wextra -Werror -Os -ffunction-sections -fdata-sections\ +CFLAGS := -Wall -Wextra -Werror -O2 -ffunction-sections -fdata-sections\ $(MACHDEP) CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__