diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-07 14:23:09 -0400 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-07 14:23:09 -0400 |
commit | 4be890c1711c4ffb862bb314ecc1d6729ab85bc0 (patch) | |
tree | f88be57c6db2de38d00b4b0602c50a8f0738ab33 | |
parent | e98fd3dba0ddce9c8b28400dae5d5220c038da43 (diff) | |
download | infinitytier-4be890c1711c4ffb862bb314ecc1d6729ab85bc0.tar.gz infinitytier-4be890c1711c4ffb862bb314ecc1d6729ab85bc0.zip |
Go back to release build.
-rw-r--r-- | Makefile.linux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.linux b/Makefile.linux index c014ce9c..9cdc5943 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -6,12 +6,12 @@ ARCH=$(shell uname -m) DEFS=-DZT_ARCH="$(ARCH)" -DZT_OSNAME="linux" -DZT_TRACE # Uncomment for a release optimized build -#CFLAGS=-Wall -O3 -fno-unroll-loops -fstack-protector -pthread $(INCLUDES) -DNDEBUG $(DEFS) -#STRIP=strip --strip-all +CFLAGS=-Wall -O3 -fno-unroll-loops -fstack-protector -pthread $(INCLUDES) -DNDEBUG $(DEFS) +STRIP=strip --strip-all # Uncomment for a debug build -CFLAGS=-Wall -g -pthread $(INCLUDES) -DZT_TRACE -DZT_LOG_STDOUT $(DEFS) -STRIP=echo +#CFLAGS=-Wall -g -pthread $(INCLUDES) -DZT_TRACE -DZT_LOG_STDOUT $(DEFS) +#STRIP=echo CXXFLAGS=$(CFLAGS) -fno-rtti |