1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-23 03:33:35 +00:00

Updated makefile, so deadlock detection is enabled by default

This commit is contained in:
Bryan Roe
2019-09-19 16:36:28 -07:00
parent 365fe2d36f
commit dcdbe39a42

View File

@@ -126,7 +126,7 @@ LDFLAGS ?= -L. -lpthread -ldl -lutil -lm
CEXTRA = -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -fstack-protector -fno-strict-aliasing CEXTRA = -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -fstack-protector -fno-strict-aliasing
LDEXTRA = LDEXTRA =
WatchDog = 6000000
SKIPFLAGS = 0 SKIPFLAGS = 0
ifeq ($(AID), 7) ifeq ($(AID), 7)
SKIPFLAGS = 1 SKIPFLAGS = 1
@@ -328,7 +328,7 @@ ifeq ($(WEBRTCDEBUG),1)
CFLAGS += -D_WEBRTCDEBUG CFLAGS += -D_WEBRTCDEBUG
endif endif
ifneq ($(WatchDog),) ifneq ($(WatchDog),0)
CWATCHDOG := -DILibChain_WATCHDOG_TIMEOUT=$(WatchDog) CWATCHDOG := -DILibChain_WATCHDOG_TIMEOUT=$(WatchDog)
endif endif