diff options
author | vanhauser-thc <vh@thc.org> | 2024-02-03 10:51:55 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-02-03 10:55:13 +0100 |
commit | a9292626a6a94b22f8b9123ff4ee160466c9b6fd (patch) | |
tree | 57fcad2ecd163436835173001dfe4e9a6f2276fe | |
parent | 1e7485dcee1f19d8eb78562d62c30f2aae5a101d (diff) | |
download | afl++-a9292626a6a94b22f8b9123ff4ee160466c9b6fd.tar.gz |
nits
-rw-r--r-- | docs/INSTALL.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 1379df0a..84bbe3ea 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -114,10 +114,10 @@ freshly installed clang, clang++, llvm-config, gmake and coreutils, e.g.: # 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" +export PATH="/usr/local/opt/llvm/bin:/usr/local/opt/coreutils/libexec/gnubin:$PATH" # you can check with "brew info llvm" -export PATH="/usr/local/opt/coreutils/libexec/gnubin:/usr/local/bin:$PATH" +export PATH="/usr/local/bin:$PATH" export CC=clang export CXX=clang++ gmake |