diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Changelog.md | 6 | ||||
-rw-r--r-- | docs/INSTALL.md | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/docs/Changelog.md b/docs/Changelog.md index 7f539556..a420dcc2 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -8,6 +8,12 @@ Want to stay in the loop on major new features? Join our mailing list by sending a mail to <afl-users+subscribe@googlegroups.com>. +### Version ++4.01a (dev) + - fix */build_...sh scripts to work outside of git + - new custom_mutator: libafl with token fuzzing :) + (still needs README) + + ### Version ++4.00c (release) - complete documentation restructuring, made possible by Google Season of Docs :) thank you Jana! diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 2847ca2a..e2bc8420 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -19,7 +19,7 @@ is to build and install everything: ```shell sudo apt-get update -sudo apt-get install -y build-essential python3-dev automake git flex bison libglib2.0-dev libpixman-1-dev python3-setuptools +sudo apt-get install -y build-essential python3-dev automake cmake git flex bison libglib2.0-dev libpixman-1-dev python3-setuptools # try to install llvm 11 and install the distro default if that fails sudo apt-get install -y lld-11 llvm-11 llvm-11-dev clang-11 || 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 |