diff options
Diffstat (limited to 'docs/INSTALL.md')
-rw-r--r-- | docs/INSTALL.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 98fb024a..05ec6693 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -30,7 +30,7 @@ sudo apt-get install -y gcc-$(gcc --version|head -n1|sed 's/\..*//'|sed 's/.* // sudo apt-get install -y ninja-build # for QEMU mode git clone https://github.com/AFLplusplus/AFLplusplus cd AFLplusplus -make -i distrib +make distrib sudo make install ``` @@ -39,13 +39,13 @@ sudo make install It is recommended to install the newest available gcc, clang and llvm-dev possible in your distribution! -Note that `make -i distrib` also builds FRIDA mode, QEMU mode, unicorn_mode, and +Note that `make distrib` also builds FRIDA mode, QEMU mode, unicorn_mode, and more. If you just want plain AFL++, then do `make all`. If you want some assisting tooling compiled but are not interested in binary-only targets, then instead choose: ```shell -make -i source-only +make source-only ``` These build targets exist: @@ -72,7 +72,7 @@ you can also build statically linked versions of the AFL++ binaries by passing the `STATIC=1` argument to make: ```shell -make -i STATIC=1 +make STATIC=1 ``` These build options exist: @@ -90,7 +90,7 @@ These build options exist: * LLVM_CONFIG - if your distro doesn't use the standard name for llvm-config (e.g., Debian) -e.g.: `make -i ASAN_BUILD=1` +e.g.: `make ASAN_BUILD=1` ## MacOS X on x86 and arm64 (M1) @@ -116,11 +116,11 @@ export PATH="/usr/local/opt/llvm/bin:$PATH" export PATH="/usr/local/opt/coreutils/libexec/gnubin:/usr/local/bin:$PATH" export CC=clang export CXX=clang++ -gmake -i +gmake cd frida_mode -gmake -i +gmake cd .. -sudo gmake -i install +sudo gmake install ``` `afl-gcc` will fail unless you have GCC installed, but that is using outdated |