about summary refs log tree commit diff
path: root/examples
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2020-09-05 13:18:28 +0200
committervanhauser-thc <vh@thc.org>2020-09-05 13:18:28 +0200
commite30b2c6af6e369844c92c00a20ebdd53473a747c (patch)
treecc546af9c1fc321e32d5473f679e1c6a144cb62d /examples
parent4b3ad5f037ee9a36aa057bf55a69acca1f573922 (diff)
downloadafl++-e30b2c6af6e369844c92c00a20ebdd53473a747c.tar.gz
final changes for pre-3.0
Diffstat (limited to 'examples')
-rw-r--r--examples/README.md2
-rw-r--r--examples/aflpp_driver/aflpp_driver.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/README.md b/examples/README.md
index d28aadbe..46a92c6e 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -47,7 +47,7 @@ Here's a quick overview of the stuff you can find in this directory:
 
 Note that the minimize_corpus.sh tool has graduated from the examples/
 directory and is now available as ../afl-cmin. The LLVM mode has likewise
-graduated to ../llvm_mode/*.
+graduated to ../instrumentation/*.
 
 Most of the tools in this directory are meant chiefly as examples that need to
 be tweaked for your specific needs. They come with some basic documentation,
diff --git a/examples/aflpp_driver/aflpp_driver.c b/examples/aflpp_driver/aflpp_driver.c
index ff5446e9..82e55fc4 100644
--- a/examples/aflpp_driver/aflpp_driver.c
+++ b/examples/aflpp_driver/aflpp_driver.c
@@ -27,7 +27,7 @@ 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/llvm_mode/afl-llvm-rt.o.c
+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
 # Run AFL: