From 5bfb50bad5aef989df389bc247d879f75126dbf5 Mon Sep 17 00:00:00 2001 From: ahmedsamyh Date: Wed, 26 Feb 2025 22:27:06 +0500 Subject: [PATCH] [Makefile] use Address Sanitization (ASAN) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c3c4e45..5935962 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=gcc -CFLAGS=-Wall -Wextra -ggdb -I./include +CFLAGS=-Wall -Wextra -ggdb -I./include -fsanitize=address LDFLAGS=-L./lib LIBS= -- 2.39.5