aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-21 21:07:59 +0800
committerMistivia <i@mistivia.com>2025-06-21 21:07:59 +0800
commit26b750de09456324d1c098da5eb426089ead5264 (patch)
treead77e72a6bd0ef8903775baf6d4a1fa2bb78cf00 /Makefile
parent1cf7adef90777698d1f17363a5f82c997d5f1c34 (diff)
fix uninit binding crash
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5871061..0ac435b 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ ifeq ($(mode), debug)
-g \
-fsanitize=address
else
- cflags = $(includes) -flto -O2
+ cflags = $(includes) -g -flto -O2
endif
src = $(shell find src/ -name '*.c' -not -name 'main.c')