Browse Source

Merge pull request #1087 from skunkwerks/dev

drop -Werror from DEBUG builds
pull/1/head
Grant Limberg 6 years ago committed by GitHub
parent
commit
91d679af15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      make-bsd.mk

2
make-bsd.mk

@ -13,7 +13,7 @@ ifeq ($(ZT_SANITIZE),1)
endif endif
# "make debug" is a shortcut for this # "make debug" is a shortcut for this
ifeq ($(ZT_DEBUG),1) ifeq ($(ZT_DEBUG),1)
CFLAGS+=-Wall -Werror -g -pthread $(INCLUDES) $(DEFS) CFLAGS+=-Wall -g -pthread $(INCLUDES) $(DEFS)
LDFLAGS+= LDFLAGS+=
STRIP=echo STRIP=echo
ZT_TRACE=1 ZT_TRACE=1

Loading…
Cancel
Save