summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTorgeir Rusten <torgeir.rusten@dnvgl.com>2020-07-09 07:14:14 (GMT)
committerBrad King <brad.king@kitware.com>2020-07-09 10:29:40 (GMT)
commitf332ce12d6c581fe9dd854d6fc1425b20f7f66e9 (patch)
treee955d2d1c1a1cdcd804ea7d7885cf89efba9c90c
parent1e26c84b96c0ec6887de2cf5e14061ccb83bdbfe (diff)
downloadCMake-f332ce12d6c581fe9dd854d6fc1425b20f7f66e9.zip
CMake-f332ce12d6c581fe9dd854d6fc1425b20f7f66e9.tar.gz
CMake-f332ce12d6c581fe9dd854d6fc1425b20f7f66e9.tar.bz2
IRSL: Fix path to Intel 32-bit redist libraries
The path to the 32 bit libraries in the Intel windows/redist folder use ia32. I don't remember if this has changed at some point, but ia32 has been used at least since Intel Fortran XE 2018.
-rw-r--r--Modules/InstallRequiredSystemLibraries.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake
index 04687b9..caca697 100644
--- a/Modules/InstallRequiredSystemLibraries.cmake
+++ b/Modules/InstallRequiredSystemLibraries.cmake
@@ -69,7 +69,7 @@ foreach(LANG IN ITEMS C CXX Fortran)
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(_Intel_archdir intel64)
else()
- set(_Intel_archdir x86)
+ set(_Intel_archdir ia32)
endif()
set(_Intel_compiler_ver ${CMAKE_${LANG}_COMPILER_VERSION})
if(WIN32)