How can I get OpenMP to run on Mac OSX 10.11, so that I can execute scripts via terminal?
I have installed OpenMP: brew install clang-omp
brew install clang-omp
After install gcc:
brew install gcc --without-multilib
and export PATH:
export PATH=/usr/local/bin:$PATH
You may need to export CC, which works for me:
export CC=/usr/local/bin/gcc
This maybe gcc-7, or whatever.