diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-09-19 15:14:28 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-09-19 15:14:28 +0200 |
commit | 9f814a130b40c455144c0c2f946ea9faebeeba34 (patch) | |
tree | a48eac65ee779aacc654eac6b6a8811ccacca2fa /Makefile | |
parent | f7f9080717d4078a59bd8913970deb976756c2a2 (diff) |
Compile with -O3 -march=native (does not seem to have a notable effect)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |