diff options
author | anon8675309 <adam@dc949.org> | 2020-02-29 05:42:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-29 14:42:19 +0100 |
commit | 45aa579f684cb780ab3a4b5b6041ab70f5609abd (patch) | |
tree | 13b2e1370ac2ede8693128d63e77e62603997d7f | |
parent | 9ddd7e0e3f6f9dc8b837e96b508db7fd1f9a1a19 (diff) | |
download | afl++-45aa579f684cb780ab3a4b5b6041ab70f5609abd.tar.gz |
Added missing dependency to the docu (#216)
* Added missing dependency to the documentation. Tested on Debian 10 * Added documentation for Debian users Co-authored-by: adamgrimm99 <55899195+adamgrimm99@users.noreply.github.com>
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md index 05511077..be221cd6 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ afl++ has many build options. The easiest is to build and install everything: ```shell -$ sudo apt install build-essential libtool-bin python3 automake bison libglib2.0-dev libpixman-1-dev clang +$ sudo apt install build-essential libtool-bin python3 automake bison libglib2.0-dev libpixman-1-dev clang python-setuptools $ make distrib $ sudo make install ``` @@ -153,6 +153,7 @@ These build options exist: * STATIC - compile AFL++ static * ASAN_BUILD - compiles with memory sanitizer for debug purposes * AFL_NO_X86 - if compiling on non-intel/amd platforms +* LLVM_CONFIG - if your distro doesn't use the standard name for llvm-config (e.g. Debian) e.g.: make ASAN_BUILD=1 |