From 27a848758326a0bfd0cc3f4341c227c027507353 Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Mon, 26 Dec 2022 18:05:26 +0200 Subject: [PATCH] compile with address sanitizer --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b2bc867..176dc2b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC?=gcc -CFLAGS+=-Werror -Wall -Wextra -std=c99 -ggdb +CFLAGS+=-Werror -Wall -Wextra -std=c99 -ggdb -fsanitize=address jitterbug: wire.c server.c main.c $(CC) $(CFLAGS) -o $@ $^