From ded90298ee6d3ee8de66b98e9f4bc2369f549bab Mon Sep 17 00:00:00 2001 From: kilroy <> Date: Tue, 25 Nov 2025 21:28:40 -0500 Subject: [PATCH] Removed address sanitisation; Edit .gitignore --- .gitignore | 3 ++- Makefile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 07ed706..4e9c87a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -build/* \ No newline at end of file +build/ +bin/ \ No newline at end of file diff --git a/Makefile b/Makefile index d456418..1cbd60c 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ TESTS_DIR := tests OBJS := $(patsubst %.c,%.o, $(wildcard $(SRC_DIR)/*.c) $(wildcard $(LIB_DIR)/**/*.c)) CC := clang -CFLAGS := -std=c99 -Wall -Wextra -Wpedantic -fsanitize=address +CFLAGS := -std=c99 -Wall -Wextra -Wpedantic ifeq ($(debug), 1) CFLAGS := $(CFLAGS) -g -O0