summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-09-13 20:37:33 +0300
committereug-vs <eugene@eug-vs.xyz>2022-09-13 20:37:33 +0300
commit61c2b2687d8a6fad31ad49b881eac8a0b07f371e (patch)
tree8b679771ea4d90416d6fb3921ea3fdbbdde00bb8
parent8cdd60bca12974870f7ec8ea82c175b181cd1132 (diff)
downloadc-chess-master.tar.gz
chore: add debug compilation flagsHEADmaster
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 563db5e..8730842 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC=gcc
-CFLAGS=-g -Ofast
+CFLAGS=-g -Ofast -fsanitize=address -static-libasan
SRC=src
OBJ=obj
SOURCES=$(wildcard $(SRC)/*.c)