From fdb0c375be54b3eb0e104480cde41f0626f85384 Mon Sep 17 00:00:00 2001 From: Ben Winston Date: Tue, 11 Nov 2025 14:24:42 -0500 Subject: debug build (thanks asan!) --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a7fb15f..e54b51b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ -.PHONY: build +.PHONY: build debug build: - cc -g later.c -Wall -Werror -o later + cc later.c -Wall -Werror -o later + +debug: + cc later.c -g -fsanitize=address -Wall -Werror -o later -- cgit v1.2.3