about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-10-14 12:54:59 +0200
committervan Hauser <vh@thc.org>2020-10-14 12:54:59 +0200
commit5ee63a6e6267e448342ccb28cc8d3c0d34ffc1cd (patch)
tree27b7f43e0fb0ec373307a41d988b25495496e50b
parentee206da3897fd2d9f72206c3c5ea0e3fab109001 (diff)
downloadafl++-5ee63a6e6267e448342ccb28cc8d3c0d34ffc1cd.tar.gz
fix link
-rw-r--r--README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 4cad6b47..77696080 100644
--- a/README.md
+++ b/README.md
@@ -232,14 +232,14 @@ anything below 9 is not recommended.
 ```
 +--------------------------------+
 | clang/clang++ 11+ is available | --> use afl-clang-lto and afl-clang-lto++
-+--------------------------------+     see [llvm/README.lto.md](llvm/README.lto.md)
++--------------------------------+     see [llvm_mode/README.lto.md](llvm_mode/README.lto.md)
     |
     | if not, or if the target fails with afl-clang-lto/++
     |
     v
 +---------------------------------+
 | clang/clang++ 3.3+ is available | --> use afl-clang-fast and afl-clang-fast++
-+---------------------------------+     see [llvm/README.md](llvm/README.md)
++---------------------------------+     see [llvm_mode/README.md](llvm_mode/README.md)
     |
     | if not, or if the target fails with afl-clang-fast/++
     |
@@ -257,8 +257,8 @@ anything below 9 is not recommended.
 
 Clickable README links for the chosen compiler:
 
-  * [afl-clang-lto](llvm/README.lto.md)
-  * [afl-clang-fast](llvm/README.md)
+  * [afl-clang-lto](llvm_mode/README.lto.md)
+  * [afl-clang-fast](llvm_mode/README.md)
   * [afl-gcc-fast](gcc_plugin/README.md)
   * afl-gcc has no README as it has no features
 
@@ -272,7 +272,7 @@ afl-clang-lto:
    and large input corpus. This technique is called laf-intel or COMPCOV.
    To use this set the following environment variable before compiling the
    target: `export AFL_LLVM_LAF_ALL=1`
-   You can read more about this in [llvm/README.laf-intel.md](llvm/README.laf-intel.md)
+   You can read more about this in [llvm_mode/README.laf-intel.md](llvm_mode/README.laf-intel.md)
  * A different technique (and usually a better than laf-intel) is to
    instrument the target so that any compare values in the target are sent to
    afl++ which then tries to put these values into the fuzzing data at different
@@ -350,7 +350,7 @@ For `configure` build systems this is usually done by:
 
 Note that if you are using the (better) afl-clang-lto compiler you also have to
 set AR to llvm-ar[-VERSION] and RANLIB to llvm-ranlib[-VERSION] - as it is
-described in [llvm/README.lto.md](llvm/README.lto.md)
+described in [llvm_mode/README.lto.md](llvm_mode/README.lto.md)
 
 ##### cmake
 
@@ -362,7 +362,7 @@ or `-DCMAKE_C_COMPILER=... DCMAKE_CPP_COMPILER=...` instead.
 
 Note that if you are using the (better) afl-clang-lto compiler you also have to
 set AR to llvm-ar[-VERSION] and RANLIB to llvm-ranlib[-VERSION] - as it is
-described in [llvm/README.lto.md](llvm/README.lto.md)
+described in [llvm_mode/README.lto.md](llvm_mode/README.lto.md)
 
 ##### other build systems or if configure/cmake didn't work