From 8396f16dd2d26aece025e4a939d81340c4860ba9 Mon Sep 17 00:00:00 2001 From: Dave Cottlehuber Date: Tue, 19 Nov 2019 16:45:06 +0000 Subject: [PATCH] drop -Werror from DEBUG builds Appease compilers. Thanks @glimberg for the diff. Closes #1086 --- make-bsd.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-bsd.mk b/make-bsd.mk index 8c7a6ad2e..62a6d73e6 100644 --- a/make-bsd.mk +++ b/make-bsd.mk @@ -13,7 +13,7 @@ ifeq ($(ZT_SANITIZE),1) endif # "make debug" is a shortcut for this ifeq ($(ZT_DEBUG),1) - CFLAGS+=-Wall -Werror -g -pthread $(INCLUDES) $(DEFS) + CFLAGS+=-Wall -g -pthread $(INCLUDES) $(DEFS) LDFLAGS+= STRIP=echo ZT_TRACE=1