浏览代码

drop -Werror from DEBUG builds

Appease compilers. Thanks @glimberg for the diff.
Closes #1086
Dave Cottlehuber 5 年之前
父节点
当前提交
8396f16dd2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      make-bsd.mk

+ 1 - 1
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