FindOpenMP: Add Clang support

This commit is contained in:
Chris Pavlina 2015-12-10 10:40:27 -05:00 committed by Brad King
parent fc6c5074e8
commit 1549927d7d
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,4 @@
FindOpenMP-clang
----------------
* The :module:`FindOpenMP` module learned to support Clang.

View File

@ -50,6 +50,8 @@ function(_OPENMP_FLAG_CANDIDATES LANG)
" "
#GNU
"-fopenmp"
#Clang
"-fopenmp=libomp"
#Microsoft Visual Studio
"/openmp"
#Intel windows
@ -67,6 +69,7 @@ function(_OPENMP_FLAG_CANDIDATES LANG)
)
set(OMP_FLAG_GNU "-fopenmp")
set(OMP_FLAG_Clang "-fopenmp=libomp")
set(OMP_FLAG_HP "+Oopenmp")
if(WIN32)
set(OMP_FLAG_Intel "-Qopenmp")