mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
cmake: Remove telling the Intel compiler to link OpenMP.
This also removes a duplicated branch since the Intel compiler is already handled at the same time as GCC and Clang, so it doesn't need its own block as well.
This commit is contained in:
parent
d908ebec4c
commit
85b96dc877
|
@ -276,15 +276,7 @@ endif()
|
|||
# FIXME: Support ARM "-mfpu=vfp -mfloat-abi=hard"
|
||||
if ((TARGET_ARCHITECTURE STREQUAL "x86_64") OR (TARGET_ARCHITECTURE STREQUAL "i686"))
|
||||
if ((CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR (CMAKE_CXX_COMPILER_ID MATCHES "Intel"))
|
||||
if (CMAKE_CXX_COMPILER_ID MATCHES "Intel")
|
||||
# Intel's compiler requires linking with libiomp5
|
||||
list(APPEND Z3_DEPENDENT_LIBS "iomp5")
|
||||
endif()
|
||||
set(SSE_FLAGS "-mfpmath=sse" "-msse" "-msse2")
|
||||
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Intel")
|
||||
set(SSE_FLAGS "-mfpmath=sse" "-msse" "-msse2")
|
||||
# Intel's compiler requires linking with libiomp5
|
||||
list(APPEND Z3_DEPENDENT_LIBS "iomp5")
|
||||
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
||||
set(SSE_FLAGS "/arch:SSE2")
|
||||
else()
|
||||
|
|
Loading…
Reference in a new issue