Installation
To install the most recent stable release run:
or to install the latest version run: For developers, to pull in all the required packages, run:To test the installation is working fine run:
Common installation issues
Apple Clang does not support -fopenmp
Apple Clang does not support -fopenmp
out of the box,
but a simple brew install [gcc|llvm]
resolves this issue by installing
a nice new compiler which does support the flag.
If you are required to use the
native Apple Clang compiler, then doing brew reinstall libomp
should circumvent the issue.
GCC on Mac complains about missing definitions and unknown types from stdio.h
Trying to use modern versions of GCC (e.g. 14.2)
on Mac complains about missing standard
library functions, types, and definitions from stdio.h
,
such as:
error: unknown type name 'FILE'
There is an incompatability between CMake, Mac, XCode, and GCC, which is documented here with a MWE. A solution to this is to
before calling CMake. Note that newer versions of the SDK, such as 15, still exhibit this issue. (Perhaps put this in your~/.bashrc
, ~/.zshrc
, or similar.)