From 00e75fee0cc349f39d3db872627bff51c088ab75 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Mon, 30 Apr 2018 14:46:47 +0200 Subject: [PATCH] make: Disable DEVELOPER by default We had quite a few users running into issues because the `--dev-xyz` options and `dev-xyz` RPC calls were available. Before a release we should make sure that the default compilation flags are safe. Signed-off-by: Christian Decker --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 724873922..9c90d0df3 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ VALGRIND_TEST_ARGS = --track-origins=yes --leak-check=full --show-reachable=yes endif # By default, we are in DEVELOPER mode, use DEVELOPER= on cmdline to override. -DEVELOPER := 1 +DEVELOPER := 0 ifeq ($(DEVELOPER),1) DEV_CFLAGS=-DDEVELOPER=1 -DCCAN_TAL_DEBUG=1 -DCCAN_TAKE_DEBUG=1