about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-12-22 01:25:32 +0100
committervanhauser-thc <vh@thc.org>2021-12-22 01:25:32 +0100
commitc76dc73c7abba17ace61f703199946fe4cee162f (patch)
tree249c0d360791e9bcb1711fed063803fdb751d6b8
parent964819d3fc336d45779723907aa7901a31c560a2 (diff)
downloadafl++-c76dc73c7abba17ace61f703199946fe4cee162f.tar.gz
better macos install docs
-rw-r--r--docs/INSTALL.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md
index 906d3f8e..85c5697a 100644
--- a/docs/INSTALL.md
+++ b/docs/INSTALL.md
@@ -93,20 +93,20 @@ depend mostly on user feedback.
 To build AFL, install llvm (and perhaps gcc) from brew and follow the general
 instructions for Linux. If possible, avoid Xcode at all cost.
 
-`brew install wget git make cmake llvm gdb`
+`brew install wget git make cmake llvm gdb coreutils`
 
 Be sure to setup `PATH` to point to the correct clang binaries and use the
-freshly installed clang, clang++ and gmake, e.g.:
+freshly installed clang, clang++, gmake and coreutils, e.g.:
 
 ```
-export PATH="/usr/local/Cellar/llvm/12.0.1/bin/:$PATH"
+export PATH="/usr/local/Cellar/llvm/12.0.1/bin/:/usr/local/opt/coreutils/libexec/gnubin:$PATH"
 export CC=clang
 export CXX=clang++
 gmake
 cd frida_mode
 gmake
 cd ..
-gmake install
+sudo gmake install
 ```
 
 `afl-gcc` will fail unless you have GCC installed, but that is using outdated