From f332ce12d6c581fe9dd854d6fc1425b20f7f66e9 Mon Sep 17 00:00:00 2001 From: Torgeir Rusten Date: Thu, 9 Jul 2020 03:14:14 -0400 Subject: 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. --- Modules/InstallRequiredSystemLibraries.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12