From 504b4d2c166158e75672edfff88899d84ab34400 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 17 Nov 2022 12:39:52 +0100 Subject: 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. --- src/Tupfile | 3 +-- 1 file changed, 1 insertion(+), 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 -- cgit v1.2.3