summaryrefslogtreecommitdiff
path: root/Makefile.linux
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-09-19 15:17:11 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-09-19 15:17:11 -0400
commit795f41c331a8ba15fbeb6f89d2c3349ceeda8b58 (patch)
tree8bcec5551b8a71f80792859aa4e719639083c76b /Makefile.linux
parentd8d71df30164d13cd325b566292683f7da8cca7f (diff)
downloadinfinitytier-795f41c331a8ba15fbeb6f89d2c3349ceeda8b58.tar.gz
infinitytier-795f41c331a8ba15fbeb6f89d2c3349ceeda8b58.zip
Change Linux default build back to debug, and fix startup message. Oh, and new crypto just kinda works. Awesome.
Diffstat (limited to 'Makefile.linux')
-rw-r--r--Makefile.linux8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.linux b/Makefile.linux
index 1f27194a..353b8721 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 $(DEFS)
-#STRIP=echo
+CFLAGS=-Wall -g -pthread $(INCLUDES) -DZT_TRACE $(DEFS)
+STRIP=echo
CXXFLAGS=$(CFLAGS) -fno-rtti