aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2023-05-06 14:32:29 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2023-05-06 14:32:29 +0200
commit8cf0d9d94b91d036d44fa02ebe5f6acea594a6d8 (patch)
tree98b6a84ad54b2f9b8d51bfc6db465f65d2b9cdb2 /Makefile
parent6cbd6f165ce3f063c5f940e38dd9a2132106a9ee (diff)
downloadnissy-classic-8cf0d9d94b91d036d44fa02ebe5f6acea594a6d8.tar.gz
nissy-classic-8cf0d9d94b91d036d44fa02ebe5f6acea594a6d8.zip
Added sanitizers for debug compile, fixed memory leak
Diffstat (limited to '')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index eb81fe9..fa40765 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,9 @@ CPPFLAGS = -DVERSION=\"${VERSION}\"
9CFLAGS = -std=c99 -pthread -pedantic -Wall -Wextra \ 9CFLAGS = -std=c99 -pthread -pedantic -Wall -Wextra \
10 -Wno-unused-parameter -O3 ${CPPFLAGS} 10 -Wno-unused-parameter -O3 ${CPPFLAGS}
11DBGFLAGS = -std=c99 -pthread -pedantic -Wall -Wextra \ 11DBGFLAGS = -std=c99 -pthread -pedantic -Wall -Wextra \
12 -Wno-unused-parameter -g ${CPPFLAGS} 12 -Wno-unused-parameter -Wno-unused-function \
13 -fsanitize=address -fsanitize=undefined \
14 -g3 ${CPPFLAGS}
13 15
14CC = cc 16CC = cc
15 17

Generated with cgit - Back to sebastiano.tronto.net