diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-06-06 12:20:40 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-06-06 12:20:40 +0200 |
commit | 044193ab578404f93bf81d9e399759eeb870cafc (patch) | |
tree | 61081e7181a62a781bc0f7732955faa89102d440 | |
parent | 07ff1d2d6efb36332622762a9de8c7237fd25d5c (diff) | |
download | kit-044193ab578404f93bf81d9e399759eeb870cafc.zip |
[build] Disable sanitizers
-rwxr-xr-x | build.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ #if 0 SRC=${0##*/} BIN=${SRC%.*} -gcc -fsanitize=undefined,address,leak -o $BIN.tmp $SRC && ./$BIN.tmp $@ && rm $BIN.tmp +gcc -o $BIN.tmp $SRC && ./$BIN.tmp $@ && rm $BIN.tmp exit 0 #endif |