OpenMP support in Xcode 6 (clang 3.5)

后端 未结 1 880
孤城傲影
孤城傲影 2020-12-11 07:55

xcode 6 is based on clang 3.5; on osx 10.9.5 running clang++ --version from the command line reports

 Apple LLVM version 6.0 (clang-600.0.51) (b         


        
相关标签:
1条回答
  • 2020-12-11 08:04

    Clang still does not fully support OpenMP, actually it supports only Parsing/Sema analysis + some basic coidegen for 'omp parallel' and 'omp simd' directives. You can try to activate it by adding -Xclang -fopenmp=libiomp5 options.

    0 讨论(0)
提交回复
热议问题