aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-11-06 20:49:07 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-11-06 20:49:07 +0100
commitc6eb810036c5ad06b4e1bee272b2100972f7ce6d (patch)
treea199be4f893b6aa0f33dace8b4f07feb876e5be5
parent474a521811059d52bc3dba72128307ecb9a1c187 (diff)
downloadallocbench-c6eb810036c5ad06b4e1bee272b2100972f7ce6d.tar.gz
allocbench-c6eb810036c5ad06b4e1bee272b2100972f7ce6d.zip
add -fomit-frame-pointer to global OPTFLAGS
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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