From 63160110240a7a8a4e6253cf910556cdb32ca9d6 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Sun, 12 Oct 2014 11:42:49 -0700 Subject: Make crypto and compression build optimized in debug, and also try disabling peers.persist -- might ship this way as it seems more trouble than its worth. --- make-linux.mk | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'make-linux.mk') diff --git a/make-linux.mk b/make-linux.mk index 5de1fbb5..5ea3a35e 100644 --- a/make-linux.mk +++ b/make-linux.mk @@ -38,10 +38,13 @@ endif # "make debug" is a shortcut for this ifeq ($(ZT_DEBUG),1) - CFLAGS=-Wall -g -pthread $(INCLUDES) -DZT_TRACE -DZT_LOG_STDOUT $(DEFS) +# DEFS+=-DZT_TRACE -DZT_LOG_STDOUT + CFLAGS=-Wall -g -pthread $(INCLUDES) $(DEFS) LDFLAGS= STRIP=echo - DEFS+=-DZT_TRACE -DZT_LOG_STDOUT + # The following line enables optimization for the crypto code, since + # C25519 in particular is almost UNUSABLE in heavy testing without it. +ext/lz4/lz4.o node/Salsa20.o node/SHA512.o node/C25519.o node/Poly1305.o: CFLAGS = -Wall -O2 -ftree-vectorize -pthread $(INCLUDES) $(DEFS) else CFLAGS=-Wall -O3 -fPIE -fvisibility=hidden -fstack-protector -pthread $(INCLUDES) -DNDEBUG $(DEFS) LDFLAGS=-pie -Wl,-z,relro,-z,now -- cgit v1.2.3