diff options
author | vanhauser-thc <vh@thc.org> | 2023-01-04 15:18:14 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-01-04 15:18:14 +0100 |
commit | 081c480e36fa6af63f8211e70fa109b56fa5131d (patch) | |
tree | 31762ad93c5fb8ca177295ce0877cd50e23cb5aa | |
parent | 8d9620eca29ec1dd6e191cf942341b53e6141db5 (diff) | |
download | afl++-081c480e36fa6af63f8211e70fa109b56fa5131d.tar.gz |
fix
-rw-r--r-- | utils/argv_fuzzing/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/argv_fuzzing/Makefile b/utils/argv_fuzzing/Makefile index 3a4ce084..9d1fc969 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-clang-fast -fsanitize=address -g -o $@ $^ + ../../afl-cc -fsanitize=address -g -o $@ $^ argv_fuzz_demo: argv_fuzz_demo.c - afl-clang-fast -fsanitize=address -g -o $@ $^ + ../../afl-cc -fsanitize=address -g -o $@ $^ demo: argv_fuzz_persistent_demo argv_fuzz_demo |