From 04258a2317559ad0d89dc2c1c08c0f7ecb69d9f1 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 26 Jan 2023 12:40:40 +0100 Subject: [PATCH] Compile with O3 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cf9f4fb..87b23ae 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ INCLUDES := src #------------------------------------------------------------------------------- # options for code generation #------------------------------------------------------------------------------- -CFLAGS := -Wall -O2 -ffunction-sections \ +CFLAGS := -Wall -O3 -ffunction-sections \ $(MACHDEP) CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__ -D__WUPS__