Christoph
Christoph

Reputation: 2970

Does Macport's clang 3.7 have OpenMP support?

Here it says that clang supports OpenMP since a few months: http://blog.llvm.org/2015/05/openmp-support_22.html

Thus I installed clang-3.7 @3.7-r239386 on Mac OS X with Macports, which should correspond to the dev version of clang.

But it looks like it doesn't support OpenMP:

$ port contents clang-3.7 | grep omp.h  # nothing found

Does someone know why that clang doesn't support OpenMP and if it will soon?

Upvotes: 4

Views: 2105

Answers (2)

eborisch
eborisch

Reputation: 676

There is a libomp port now. See the notes (port notes libomp) for usage requirements.

Upvotes: 2

Jeremy Huddleston Sequoia
Jeremy Huddleston Sequoia

Reputation: 23651

Yes, you will also need to install the openmp library and use the compiler as instructed in the blog you linked.

Upvotes: 1

Related Questions