summaryrefslogtreecommitdiff
path: root/Modules/InstallRequiredSystemLibraries.cmake
diff options
context:
space:
mode:
authorTorgeir Rusten <torgeir.rusten@dnvgl.com>2020-07-09 03:14:14 -0400
committerBrad King <brad.king@kitware.com>2020-07-09 06:29:40 -0400
commitf332ce12d6c581fe9dd854d6fc1425b20f7f66e9 (patch)
treee955d2d1c1a1cdcd804ea7d7885cf89efba9c90c /Modules/InstallRequiredSystemLibraries.cmake
parent1e26c84b96c0ec6887de2cf5e14061ccb83bdbfe (diff)
downloadcmake-f332ce12d6c581fe9dd854d6fc1425b20f7f66e9.tar.gz
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.
Diffstat (limited to 'Modules/InstallRequiredSystemLibraries.cmake')
-rw-r--r--Modules/InstallRequiredSystemLibraries.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake
index 04687b9ead..caca6977ba 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)