Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update quickinstall instructions for macOS #3130

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update quickinstall.rst
The path specified for clang++ was incorrect. The result was cmake command fails. Per this stack overflow answer (https://stackoverflow.com/a/53889826) these are the correct flags.
  • Loading branch information
sohhae authored Sep 8, 2024
commit 7f8f416bfb5e172d14b1c3300c8d762280277ac2
5 changes: 4 additions & 1 deletion docs/source/quickinstall.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,10 @@ proceeding:

.. code-block:: sh

export CXX=/opt/homebrew/opt/llvm/bin/clang++
export CC=/usr/local/opt/llvm/bin/clang
export CXX=/usr/local/opt/llvm/bin/clang++
export LDFLAGS="-L/usr/local/opt/llvm/lib"
export CPPFLAGS="-I/usr/local/opt/llvm/include"

After the packages have been installed, follow the instructions to build from
source below.
Expand Down