From 6229a3bfd3b237b87ac9fe8bc9f091a808c2e300 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 17 Feb 2025 19:00:54 +0100 Subject: [PATCH] exclude integer sanitiser when debugging as it'll do more harm than good --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index e732017..a0d27d2 100644 --- a/makefile +++ b/makefile @@ -8,7 +8,7 @@ CFLAGS := $(shell pkg-config --cflags sdl2) -Wall -Wextra -Wpedantic -Wno-pointe LDFLAGS := $(shell pkg-config --libs sdl2) -lm ifeq ($(DEBUG),1) -CFLAGS += -DDEBUG -fsanitize=address,undefined,integer -g -Og +CFLAGS += -DDEBUG -fsanitize=address,undefined -g -Og PROF := dbg else REL_FLAGS += -O3