diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-11-06 20:49:07 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-11-06 20:49:07 +0100 |
| commit | c6eb810036c5ad06b4e1bee272b2100972f7ce6d (patch) | |
| tree | a199be4f893b6aa0f33dace8b4f07feb876e5be5 | |
| parent | 474a521811059d52bc3dba72128307ecb9a1c187 (diff) | |
| download | allocbench-c6eb810036c5ad06b4e1bee272b2100972f7ce6d.tar.gz allocbench-c6eb810036c5ad06b4e1bee272b2100972f7ce6d.zip | |
add -fomit-frame-pointer to global OPTFLAGS
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
