diff options
author | Attila Krasznahorkay <Attila.Krasznahorkay@cern.ch> | 2022-03-09 13:15:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-03-09 17:53:37 (GMT) |
commit | 3e84a06b3aa2715dd61537db624d6371813c0a1b (patch) | |
tree | 8a3026e802d3b6b38afe7b003aced8607bb7beb4 /Modules/InstallRequiredSystemLibraries.cmake | |
parent | 71268ca9345297b8ad5c0178515ca220423baeec (diff) | |
download | CMake-3e84a06b3aa2715dd61537db624d6371813c0a1b.zip CMake-3e84a06b3aa2715dd61537db624d6371813c0a1b.tar.gz CMake-3e84a06b3aa2715dd61537db624d6371813c0a1b.tar.bz2 |
IRSL: Add paths for Intel oneAPI compilers on Linux
They are stored in a slightly different place with oneAPI than they
used to be in PSXE.
A similar change was made for Windows by commit 956160bb9a (IRSL: Fix
search for Windows redist files with Intel Classic compiler, 2021-09-23,
v3.22.0-rc1~88^2), which left a comment about the locations relative to
the Classic and oneAPI compilers.
Fixes: #23310
Diffstat (limited to 'Modules/InstallRequiredSystemLibraries.cmake')
-rw-r--r-- | Modules/InstallRequiredSystemLibraries.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake index 689cab5..d5e5fd2 100644 --- a/Modules/InstallRequiredSystemLibraries.cmake +++ b/Modules/InstallRequiredSystemLibraries.cmake @@ -96,6 +96,7 @@ foreach(LANG IN ITEMS C CXX Fortran) else() set(_Intel_possible_redistdirs "${_Intel_basedir}/../lib/${_Intel_archdir}" + "${_Intel_basedir}/../compiler/lib/${_Intel_archdir}_lin" "${_Intel_basedir}/../../compiler/lib/${_Intel_archdir}_lin" ) endif() |