aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2022-11-17 12:39:52 +0100
committerThomas Voss <mail@thomasvoss.com> 2022-11-17 12:39:52 +0100
commit504b4d2c166158e75672edfff88899d84ab34400 (patch)
treebb44a76becc986b1e30accd65015a70bf3e29de3
parent343c23ce9c7aab291721d671fe5504e7bdbfd3c2 (diff)
Remove redundant compiler flag
The -fomit-frame-pointer optimization is already enabled at -O1 and we are compiling with -O3, so this is not something we need to manually specify.
-rw-r--r--src/Tupfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Tupfile b/src/Tupfile
index 8cc54a0..519aa03 100644
--- a/src/Tupfile
+++ b/src/Tupfile
@@ -1,7 +1,6 @@
import CFLAGS=
CFLAGS += -Wall -Wextra -Wpedantic -Werror
-CFLAGS += -march=native -mtune=native
-CFLAGS += -fomit-frame-pointer -flto -O3
+CFLAGS += -march=native -mtune=native -flto -O3
CFLAGS += -pipe
CFLAGS += -D_GNU_SOURCE