From: notaz Date: Mon, 17 Mar 2025 00:17:37 +0000 (+0200) Subject: default to O3 for autovectorization X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15284c51af5b14c1e6e28c3d2366c10b9c0d9e5d;p=pcsx_rearmed.git default to O3 for autovectorization --- diff --git a/Makefile b/Makefile index ef5e12e7..46b57e4c 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ ifneq ($(DEBUG)$(DEBUG_SYMS), 00) CFLAGS += -ggdb endif ifneq ($(DEBUG), 1) -CFLAGS += -O2 +CFLAGS += -O3 ifneq ($(ASSERTS), 1) CFLAGS += -DNDEBUG endif