From f9baf2ec55805df7c3f344a65f20daf41f30890c 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__