From 72e665908aa96f1040e39ab13984ce879f33af9c Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Tue, 27 Aug 2019 14:58:30 -0700 Subject: [PATCH] Added flag for CRASH_HANDLER=0 in case it is explicitly needed --- makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/makefile b/makefile index fda6a32..c9f1108 100644 --- a/makefile +++ b/makefile @@ -371,6 +371,10 @@ ifeq ($(FSWATCH_DISABLE),1) CFLAGS += -D_NOFSWATCHER endif +ifeq ($(CRASH_HANDLER),0) +CFLAGS += -D_NOILIBSTACKDEBUG +endif + GCCTEST := $(shell $(CC) meshcore/dummy.c -o /dev/null -no-pie > /dev/null 2>&1 ; echo $$? ) ifeq ($(GCCTEST),0) LDFLAGS += -no-pie