diff options
author | van Hauser <vh@thc.org> | 2024-08-06 14:01:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-06 14:01:49 +0200 |
commit | 614c5127caf3250af6f20ad29bb8cb96b8444408 (patch) | |
tree | 8a9efeb6536603b94db15c197f4e4e6c9cdee993 | |
parent | 76b26ac2c6fc43e32cd0dfd4f666bd842fbdd3aa (diff) | |
parent | 5bb894f1ee2a3e6089dc119ea07e97124c65d1d1 (diff) | |
download | afl++-614c5127caf3250af6f20ad29bb8cb96b8444408.tar.gz |
Merge pull request #2179 from fish98/revise_docs
Update local building docs with missing dependencies
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | docs/INSTALL.md | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 9ac577d3..bc06ef2d 100644 --- a/.gitignore +++ b/.gitignore @@ -112,3 +112,5 @@ utils/replay_record/persistent_demo_replay_compat utils/replay_record/persistent_demo_replay_argparse utils/plot_ui/afl-plot-ui vuln_prog +argv_fuzz_demo +argv_fuzz_persistent_demo \ No newline at end of file diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 3089aab2..cea1ae6b 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -30,6 +30,9 @@ sudo apt-get install -y build-essential python3-dev automake cmake git flex biso sudo apt-get install -y lld-14 llvm-14 llvm-14-dev clang-14 || sudo apt-get install -y lld llvm llvm-dev clang sudo apt-get install -y gcc-$(gcc --version|head -n1|sed 's/\..*//'|sed 's/.* //')-plugin-dev libstdc++-$(gcc --version|head -n1|sed 's/\..*//'|sed 's/.* //')-dev sudo apt-get install -y ninja-build # for QEMU mode +sudo apt-get install -y cpio libcapstone-dev # for Nyx mode +sudo apt-get install -y wget curl # for Frida mode +sudo apt-get install python3-pip # for Unicorn mode git clone https://github.com/AFLplusplus/AFLplusplus cd AFLplusplus make distrib |