From 15284c51af5b14c1e6e28c3d2366c10b9c0d9e5d Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 17 Mar 2025 02:17:37 +0200 Subject: [PATCH] default to O3 for autovectorization --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5