mirror of
https://github.com/Kitware/CMake.git
synced 2026-08-05 07:10:26 +00:00
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:
committed by
Brad King
parent
1e26c84b96
commit
f332ce12d6
@@ -69,7 +69,7 @@ foreach(LANG IN ITEMS C CXX Fortran)
|
|||||||
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||||
set(_Intel_archdir intel64)
|
set(_Intel_archdir intel64)
|
||||||
else()
|
else()
|
||||||
set(_Intel_archdir x86)
|
set(_Intel_archdir ia32)
|
||||||
endif()
|
endif()
|
||||||
set(_Intel_compiler_ver ${CMAKE_${LANG}_COMPILER_VERSION})
|
set(_Intel_compiler_ver ${CMAKE_${LANG}_COMPILER_VERSION})
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
|
|||||||
Reference in New Issue
Block a user