From 622a4391a0d3605586591c0475ef34ba55b1f7fa Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sat, 15 Feb 2025 10:49:23 +0000 Subject: [PATCH] Update compile script --- compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile b/compile index a717db4..e9281ae 100755 --- a/compile +++ b/compile @@ -34,7 +34,7 @@ mkdir -p $BUILD_DIR if [[ $BUILD_TYPE == "release" ]]; then CFLAGS+=" -O3" else - CFLAGS+=" -g -fsanitize=address -fsanitize=undefined" + CFLAGS+=" -g -fsanitize=address,undefined" fi OUT="$BUILD_DIR/libwapp.so"