diff options
author | vanhauser-thc <vh@thc.org> | 2022-01-17 20:31:08 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-01-17 20:31:08 +0100 |
commit | 861bd5e04b5030b3fc345c1022c46e92eb52a312 (patch) | |
tree | a81b2bffec5e0fe0ed91f20c8a4d3396b1858671 | |
parent | c5117b42cab9f47448a7f3cfe3edae6708d32528 (diff) | |
download | afl++-861bd5e04b5030b3fc345c1022c46e92eb52a312.tar.gz |
update macos path info
-rw-r--r-- | docs/INSTALL.md | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 2c1eaeb9..3c96a4fd 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -96,11 +96,16 @@ 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++, gmake and coreutils, e.g.: +freshly installed clang, clang++, llvm-config, gmake and coreutils, e.g.: ```shell -export -PATH="/usr/local/Cellar/llvm/13.0.0_2/bin/:/usr/local/opt/coreutils/libexec/gnubin:/usr/local/bin:$PATH" +# Depending on your MacOS system + brew version it is either +export PATH="/opt/homebrew/opt/llvm/bin:$PATH" +# or +export PATH="/usr/local/opt/llvm/bin:$PATH" +# you can check with "brew info llvm" + +export PATH="/usr/local/opt/coreutils/libexec/gnubin:/usr/local/bin:$PATH" export CC=clang export CXX=clang++ gmake |