diff options
author | Brad King <brad.king@kitware.com> | 2015-12-21 14:30:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-12-21 14:34:16 (GMT) |
commit | d9bf5206d007507fff3e1a89b8f49d7960a209c8 (patch) | |
tree | 68caed75127cfe99df1261a081ce5c955362fb21 /Modules | |
parent | fd7180f0c0c2554c31afda235469df986a109fe4 (diff) | |
download | CMake-d9bf5206d007507fff3e1a89b8f49d7960a209c8.zip CMake-d9bf5206d007507fff3e1a89b8f49d7960a209c8.tar.gz CMake-d9bf5206d007507fff3e1a89b8f49d7960a209c8.tar.bz2 |
CMakeDetermineCompilerId: Fix VS Itanium platform name (#15889)
VS expects the platform to be just `Itanium`, so drop the incorrect
special case mapping it to `ia64`. This platform name has been wrong
since the logic was added by commit v2.8.10~148^2~8 (VS: Detect the
compiler id and tool location, 2012-08-16).
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CMakeDetermineCompilerId.cmake | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/CMakeDetermineCompilerId.cmake b/Modules/CMakeDetermineCompilerId.cmake index 81c2509..5b3c7f2 100644 --- a/Modules/CMakeDetermineCompilerId.cmake +++ b/Modules/CMakeDetermineCompilerId.cmake @@ -182,9 +182,6 @@ Id flags: ${testflags} set(v 6) set(ext dsp) endif() - if("${id_platform}" STREQUAL "Itanium") - set(id_platform ia64) - endif() if(CMAKE_VS_PLATFORM_TOOLSET) if(CMAKE_VS_PLATFORM_NAME STREQUAL "Tegra-Android") set(id_toolset "<NdkToolchainVersion>${CMAKE_VS_PLATFORM_TOOLSET}</NdkToolchainVersion>") |