We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e9c40 commit 0700e52Copy full SHA for 0700e52
fuzzing/README.md
@@ -1,12 +1,14 @@
1
# Fuzzing BehaviorTree.CPP
2
3
-You can build the existing harnesses either for libfuzzer or AFL++:
+You can build the existing harnesses either for libfuzzer or AFL++.
4
+Building the fuzzers requires `clang` (libfuzzer) or an installed version
5
+of [AFL++](https://github.com/AFLplusplus/AFLplusplus).
6
7
## libfuzzer
8
9
```bash
10
mkdir build_libfuzzer && cd build_libfuzzer
-cmake -DENABLE_FUZZING ..
11
+cmake -DENABLE_FUZZING=ON ..
12
```
13
14
## AFL++
@@ -15,5 +17,5 @@ cmake -DENABLE_FUZZING ..
15
17
export CC=afl-clang-fast
16
18
export CXX=afl-clang-fast++
19
mkdir build_afl && cd build_afl
-cmake -DENABLE_FUZZING -DUSE_AFLPLUSPLUS ..
20
+cmake -DENABLE_FUZZING=ON -DUSE_AFLPLUSPLUS=ON ..
21
0 commit comments