diff options
author | van Hauser <vh@thc.org> | 2020-12-26 21:33:54 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-12-26 21:33:54 +0100 |
commit | fe0dca9d96283c363d726025d67ee49aa7da883e (patch) | |
tree | 3fb2ed5cd816e540878ca6cb72650b74f50ff98e /utils/aflpp_driver/aflpp_driver.c | |
parent | 4af0065f4a7518f7df8f8b49c40127e2e674a760 (diff) | |
download | afl++-fe0dca9d96283c363d726025d67ee49aa7da883e.tar.gz |
fixed a few forgotten old afl-llvm-rt references
Diffstat (limited to 'utils/aflpp_driver/aflpp_driver.c')
-rw-r--r-- | utils/aflpp_driver/aflpp_driver.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/aflpp_driver/aflpp_driver.c b/utils/aflpp_driver/aflpp_driver.c index 017aa72b..c6f5a76c 100644 --- a/utils/aflpp_driver/aflpp_driver.c +++ b/utils/aflpp_driver/aflpp_driver.c @@ -26,10 +26,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { EOF # Build your target with -fsanitize-coverage=trace-pc-guard using fresh clang. clang -g -fsanitize-coverage=trace-pc-guard test_fuzzer.cc -c -# Build afl-llvm-rt.o.c from the AFL distribution. -clang -c -w $AFL_HOME/instrumentation/afl-llvm-rt.o.c -# Build this file, link it with afl-llvm-rt.o.o and the target code. -clang++ afl_driver.cpp test_fuzzer.o afl-llvm-rt.o.o +# Build afl-compiler-rt.o.c from the AFL distribution. +clang -c -w $AFL_HOME/instrumentation/afl-compiler-rt.o.c +# Build this file, link it with afl-compiler-rt.o.o and the target code. +clang++ afl_driver.cpp test_fuzzer.o afl-compiler-rt.o.o # Run AFL: rm -rf IN OUT; mkdir IN OUT; echo z > IN/z; $AFL_HOME/afl-fuzz -i IN -o OUT ./a.out |