mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-18 09:50:35 -05:00
DetermineCompiler: Fix copy-paste error in Intel Compiler detection
Fixes: #21561
Fixes: a90d2a9eed (IntelLLVM: Add support for Intel LLVM-based compilers, 2020-11-02)
This commit is contained in:
@@ -135,7 +135,7 @@ else()
|
|||||||
# They pre-date our support for the GNU-like variant targeting the
|
# They pre-date our support for the GNU-like variant targeting the
|
||||||
# MSVC ABI so we do not consider that here.
|
# MSVC ABI so we do not consider that here.
|
||||||
if(CMAKE_C_COMPILER_ID STREQUAL "Clang"
|
if(CMAKE_C_COMPILER_ID STREQUAL "Clang"
|
||||||
OR "x${CMAKE_${lang}_COMPILER_ID" STREQUAL "xIntelLLVM")
|
OR "x${CMAKE_C_COMPILER_ID}" STREQUAL "xIntelLLVM")
|
||||||
if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC")
|
if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC")
|
||||||
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "MSVC")
|
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "MSVC")
|
||||||
else()
|
else()
|
||||||
|
|||||||
Reference in New Issue
Block a user