From 9f814a130b40c455144c0c2f946ea9faebeeba34 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Thu, 19 Sep 2024 15:14:28 +0200 Subject: Compile with -O3 -march=native (does not seem to have a notable effect) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c2f73f7..139bb69 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ ifdef numa endif mbw: mbw.c - gcc -Wall -Wextra -pedantic -O2 ${EXTRA_CFLAGS} -o mbw mbw.c ${EXTRA_LIBS} + gcc -Wall -Wextra -pedantic -O3 -march=native ${EXTRA_CFLAGS} -o mbw mbw.c ${EXTRA_LIBS} .PHONY: clean clean: -- cgit v1.2.3