From cd698a3921332d08478af82bfe053cfaa461afc7 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sat, 4 May 2024 22:01:05 +0100 Subject: [PATCH] Add debug flag to compile script --- compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile b/compile index 9eb8e1d..6983f6f 100755 --- a/compile +++ b/compile @@ -1,7 +1,7 @@ #!/bin/bash CC=clang -CFLAGS="-g -Wall -Werror -pedantic -fsanitize=address -fsanitize=undefined" +CFLAGS="-g -Wall -Werror -pedantic -fsanitize=address -fsanitize=undefined -DDEBUG" INCLUDES="\ -I$(find ./src -type d | xargs -I{} echo -n "-I{} ") \ $(find intern/wizapp/src -type d | xargs -I{} echo -n "-I{} ") \