From c6eb810036c5ad06b4e1bee272b2100972f7ce6d Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 6 Nov 2019 20:49:07 +0100 Subject: add -fomit-frame-pointer to global OPTFLAGS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9f0f1cb..0da203b 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ export CXX = g++ export WARNFLAGS = -Wall -Wextra export COMMONFLAGS = -fno-builtin -fPIC -DPIC -pthread -export OPTFLAGS = -O3 -DNDEBUG +export OPTFLAGS = -O3 -DNDEBUG -fomit-frame-pointer export CFLAGS = -I. $(OPTFLAGS) $(WARNFLAGS) $(COMMONFLAGS) export CXXFLAGS = -std=c++11 $(CFLAGS) -fno-exceptions -- cgit v1.2.3