aboutsummaryrefslogtreecommitdiff
path: root/0001-chore-add-debug-symbols-and-memory-leak-detection.patch
diff options
context:
space:
mode:
authordacctal <donotcontactmevia@email.invalid>2026-06-29 03:19:33 +0000
committerdacctal <donotcontactmevia@email.invalid>2026-06-29 03:19:33 +0000
commitd85350854dca4c6495cb78c89ff4934c7a908509 (patch)
tree2b8cbd9db60f81b0ab538be447d318017e064ff1 /0001-chore-add-debug-symbols-and-memory-leak-detection.patch
parent5f153abb7345aa4ddc574621d6842e07f80a559c (diff)
FCC: banned.h
Diffstat (limited to '0001-chore-add-debug-symbols-and-memory-leak-detection.patch')
-rw-r--r--0001-chore-add-debug-symbols-and-memory-leak-detection.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/0001-chore-add-debug-symbols-and-memory-leak-detection.patch b/0001-chore-add-debug-symbols-and-memory-leak-detection.patch
deleted file mode 100644
index 787e29a..0000000
--- a/0001-chore-add-debug-symbols-and-memory-leak-detection.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 7969c9218ccb947f564122582c5bbd65558c32c1 Mon Sep 17 00:00:00 2001
-From: aintea <aintea@protonmail.com>
-Date: Mon, 29 Jun 2026 01:16:05 +0300
-Subject: [PATCH] chore: add debug symbols and memory leak detection
-
----
- Makefile | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/Makefile b/Makefile
-index 021491e..51f5ef0 100644
---- a/Makefile
-+++ b/Makefile
-@@ -27,7 +27,11 @@ CFLAGS += $(shell pkg-config --cflags luajit) -I./include -Wno-format-truncatio
- default: pkgit
-
- pkgit: $(OBJS)
-- ${CC} -o $@ $^ $(shell pkg-config --libs luajit)
-+ ${CC} -o $@ $^ $(shell pkg-config --libs luajit) $(LDFLAGS)
-+
-+debug: CFLAGS += -fsanitize=address -g3
-+debug: LDFLAGS += -fsanitize=address
-+debug: pkgit
-
- $(OBJDIR):
- @mkdir -p $(OBJDIR)
---
-2.54.0
-