summaryrefslogtreecommitdiff
path: root/Makefile.linux
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-09 17:20:40 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-09 17:20:40 -0400
commit95a23dc7ec9a2ce55cab337b78b662a30ec2b986 (patch)
tree215b13db489ecc9cf9d406f922477cab6ed42aa5 /Makefile.linux
parent7c3a446499d799efe6ff7c299e9a5e2c7c217893 (diff)
downloadinfinitytier-95a23dc7ec9a2ce55cab337b78b662a30ec2b986.tar.gz
infinitytier-95a23dc7ec9a2ce55cab337b78b662a30ec2b986.zip
Fix for another wonderful C++ threading race condition.
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 9cdc5943..dca4048f 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 $(DEFS)
+STRIP=echo
CXXFLAGS=$(CFLAGS) -fno-rtti