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.
This commit is contained in:
Torgeir Rusten 2020-07-09 03:14:14 -04:00 committed by Brad King
parent 1e26c84b96
commit f332ce12d6

View File

@ -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)