about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2023-01-12 09:56:35 +0100
committervanhauser-thc <vh@thc.org>2023-01-12 09:56:40 +0100
commitc3d7612c97db8f6629aff2348d043286f8436227 (patch)
tree4e7d19bfc37a2cbb6fb48c13f3506f636012ea86
parente2acba57bf22734bd8234a61ff34dae4ca933378 (diff)
downloadafl++-c3d7612c97db8f6629aff2348d043286f8436227.tar.gz
fix macos ci
-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 9d1fc969..6786467a 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
-	../../afl-cc -fsanitize=address -g -o $@ $^
+	../../afl-cc -g -o $@ $^
 
 argv_fuzz_demo: argv_fuzz_demo.c
-	../../afl-cc -fsanitize=address -g -o $@ $^
+	../../afl-cc -g -o $@ $^
 
 demo: argv_fuzz_persistent_demo argv_fuzz_demo