From fb938637ccf634660078e333cca8656484ce3478 Mon Sep 17 00:00:00 2001 From: Johannes Schriewer Date: Sat, 28 Jul 2018 20:38:41 +0200 Subject: [PATCH] Compile in DEBUG mode for now Note to self: Modify makefile to output two libs, one debug, one release --- Makefile.linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.linux b/Makefile.linux index 3c8599e..15eefab 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -3,7 +3,7 @@ OBJS=$(SRCS:%.c=%.o) TARGET=libmqtt.a -PLATFORM_FLAGS=-DMAX_BUFFER_SIZE=256 +PLATFORM_FLAGS=-DMAX_BUFFER_SIZE=256 -DDEBUG=1 AR=ar CC=clang