Avoid hardcoding /usr/local as the prefix where Homebrew is installed.

Carlo Cabrera 2022-01-12 16:13:08 +08:00
parent 68631a7f06
commit 02895744da

@ -246,7 +246,7 @@ exec /opt/homebrew/bin/ccls --init='{"clang":{"extraArgs":[
To build from source:
```sh
brew info llvm
cmake -H. -BRelease -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/usr/local/Cellar/llvm/<Your Version>/lib/cmake
cmake -H. -BRelease -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(brew --prefix llvm)/lib/cmake"
cmake --build Release
```