about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--utils/argv_fuzzing/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/argv_fuzzing/Makefile b/utils/argv_fuzzing/Makefile
index 1bc6b223..7e706180 100644
--- a/utils/argv_fuzzing/Makefile
+++ b/utils/argv_fuzzing/Makefile
@@ -55,10 +55,10 @@ install: argvfuzz32.so argvfuzz64.so
 	if [ -f argvfuzz64.so ]; then set -e; install -m 755 argvfuzz64.so $(DESTDIR)$(HELPER_PATH)/; fi
 
 argv_fuzz_persistent_demo: argv_fuzz_persistent_demo.c
-	CC=afl-clang-fast $(CC) -o $@ $^
+	afl-clang-fast -fsanitize=address -g -o $@ $^
 
 argv_fuzz_demo: argv_fuzz_demo.c
-	CC=afl-clang-fast $(CC) -o $@ $^
+	afl-clang-fast -fsanitize=address -g -o $@ $^
 
 demo: argv_fuzz_persistent_demo argv_fuzz_demo