From 4a20982777fe47bf450a81eae12e26f7d8bf618c Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 13 Dec 2025 13:35:45 +0100 Subject: [PATCH] build(make): adding the debug flag -g --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 236f01d..ba5f71c 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ ASFLAGS += -g -F dwarf CC ?= clang RM = rm -rf CFLAGS = -Werror -Wextra -Wall -CFLAGS += -Wno-unused-result +CFLAGS += -Wno-unused-result -g TEST_FILE = test/main.c INC_DIR = includes LDFLAGS = -L./build/ -lasm -no-pie