commit 488e77db95b7acdcd5040b7d684e2b8d070458f4
parent e36c11d452bf256007efcd482511c8a494771314
Author: Markus Hunner <26381538+markhun@users.noreply.github.com>
Date: Sat, 30 Dec 2023 14:48:03 +0100
Makefile: Add unroll-loops cflag
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -1,7 +1,7 @@
# Makefile settings
CC = cc
RM = rm -f
-CFLAGS =-Wall -O3 -DNDEBUG -march=native -fwhole-program
+CFLAGS =-Wall -O3 -DNDEBUG -funroll-loops -march=native -fwhole-program
# CFLAGS =-Wall -ggdb -O0 -fno-omit-frame-pointer
LD = cc
LDFLAGS =-g