We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
for the code to compile on MacOS you should:
First, install the macOS command line tools:
$ xcode-select --install
Install the LLVM OpenMP library.
$ brew install libomp llvm
Set the following environment variables:
$ export CC=/usr/bin/clang $ export CXX=/usr/bin/clang++ $ export CPPFLAGS="$CPPFLAGS -Xpreprocessor -fopenmp" $ export CFLAGS="$CFLAGS -I/opt/homebrew/opt/libomp/include" $ export CXXFLAGS="$CXXFLAGS -I/opt/homebrew/opt/libomp/include" $ export LDFLAGS="$LDFLAGS -Wl,-rpath,/opt/homebrew/opt/llvm/lib -L/opt/homebrew/opt/llvm/lib -lomp"
Feel free to add this to the readme. Thank you
The text was updated successfully, but these errors were encountered:
Thank you! Worked perfectly on my M1 MBP (still on Ventura).
Sorry, something went wrong.
No branches or pull requests
for the code to compile on MacOS you should:
First, install the macOS command line tools:
Install the LLVM OpenMP library.
Set the following environment variables:
Feel free to add this to the readme. Thank you
The text was updated successfully, but these errors were encountered: