We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1976b1e commit c194d04Copy full SHA for c194d04
cmake/VcMacros.cmake
@@ -47,7 +47,7 @@ macro(vc_determine_compiler)
47
set(Vc_COMPILER_IS_CLANG false)
48
set(Vc_COMPILER_IS_MSVC false)
49
set(Vc_COMPILER_IS_GCC false)
50
- if(CMAKE_CXX_COMPILER MATCHES "/(icpc|icc)$")
+ if(CMAKE_CXX_COMPILER MATCHES "/(icpc|icc|icpcx|icx)$")
51
set(Vc_COMPILER_IS_INTEL true)
52
exec_program(${CMAKE_CXX_COMPILER} ARGS -dumpversion OUTPUT_VARIABLE Vc_ICC_VERSION)
53
message(STATUS "Detected Compiler: Intel ${Vc_ICC_VERSION}")
0 commit comments