diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2018-07-03 12:51:41 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2018-07-03 12:51:41 -0700 |
| commit | 73e4286fbfce8ce017304f693a1190521ad4a8f9 (patch) | |
| tree | d1323abad493995dae88db5cb5658ad451d7754e /make-linux.mk | |
| parent | 4e6151ebd97cbc145d6997f377b3db28d51c6bfc (diff) | |
| download | infinitytier-73e4286fbfce8ce017304f693a1190521ad4a8f9.tar.gz infinitytier-73e4286fbfce8ce017304f693a1190521ad4a8f9.zip | |
Fix two controller bugs: filesystem bug and another possible infinite recursion bug.
Diffstat (limited to 'make-linux.mk')
| -rw-r--r-- | make-linux.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-linux.mk b/make-linux.mk index 56096da8..24e054dc 100644 --- a/make-linux.mk +++ b/make-linux.mk @@ -55,8 +55,8 @@ ifeq ($(ZT_SANITIZE),1) SANFLAGS+=-fsanitize=address -DASAN_OPTIONS=symbolize=1 endif ifeq ($(ZT_DEBUG),1) - override CFLAGS+=-Wall -Wno-deprecated -Werror -g -pthread $(INCLUDES) $(DEFS) - override CXXFLAGS+=-Wall -Wno-deprecated -Werror -g -std=c++11 -pthread $(INCLUDES) $(DEFS) + override CFLAGS+=-Wall -Wno-deprecated -g -pthread $(INCLUDES) $(DEFS) + override CXXFLAGS+=-Wall -Wno-deprecated -g -std=c++11 -pthread $(INCLUDES) $(DEFS) ZT_TRACE=1 STRIP?=echo # The following line enables optimization for the crypto code, since |
