aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2022-10-13 02:02:08 +0200
committerThomas Voss <mail@thomasvoss.com> 2022-11-13 09:22:35 +0100
commit9773399ce8a1651e1ce803a46dd0ff4049a3eef6 (patch)
tree5b858be3e597521407adf5900e62b5c312e7628a
parentfb614814a6218a7edefdb8b637a8c35aade092e1 (diff)
Add more compile flags
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1ad2154..1bd9017 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,9 @@
.POSIX:
-CFLAGS = -std=c11 -O3 -pipe -Wall -Wextra -Werror -pedantic
+CFLAGS = \
+ -Wall -Wextra -Wpedantic -Werror \
+ -O3 -march=native -mtune=native -fomit-frame-pointer \
+ -std=c11 -pipe
LDFLAGS = -llux
PREFIX = /usr