diff options
author | Thomas Voss <mail@thomasvoss.com> | 2022-11-17 12:39:52 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2022-11-17 12:39:52 +0100 |
commit | 504b4d2c166158e75672edfff88899d84ab34400 (patch) | |
tree | bb44a76becc986b1e30accd65015a70bf3e29de3 /src/Tupfile | |
parent | 343c23ce9c7aab291721d671fe5504e7bdbfd3c2 (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.
Diffstat (limited to 'src/Tupfile')
-rw-r--r-- | src/Tupfile | 3 |
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 |