diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2022-04-11 03:22:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-11 02:22:34 -0600 |
commit | 7dc569ceeb04f2e347b1a1211a9f304c8e5d40fb (patch) | |
tree | 216ee153cf219d2e03f751e75e18bcb2e23b9709 /var | |
parent | 7475eba798649c2ebbfbbfd9395b5ac5f83e4461 (diff) | |
download | spack-7dc569ceeb04f2e347b1a1211a9f304c8e5d40fb.tar.gz spack-7dc569ceeb04f2e347b1a1211a9f304c8e5d40fb.tar.bz2 spack-7dc569ceeb04f2e347b1a1211a9f304c8e5d40fb.tar.xz spack-7dc569ceeb04f2e347b1a1211a9f304c8e5d40fb.zip |
intel-oneapi-compilers package: add rpath for lib/ directory (#29931)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/intel-oneapi-compilers/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/intel-oneapi-compilers/package.py b/var/spack/repos/builtin/packages/intel-oneapi-compilers/package.py index 44d4fc0a9b..b707365255 100644 --- a/var/spack/repos/builtin/packages/intel-oneapi-compilers/package.py +++ b/var/spack/repos/builtin/packages/intel-oneapi-compilers/package.py @@ -118,7 +118,8 @@ class IntelOneapiCompilers(IntelOneApiPackage): # set rpath so 'spack compiler add' can check version strings # without setting LD_LIBRARY_PATH rpath = ':'.join(self._ld_library_path()) - patch_dirs = [join_path('compiler', 'lib', 'intel64_lin'), + patch_dirs = [join_path('lib'), + join_path('compiler', 'lib', 'intel64_lin'), join_path('compiler', 'lib', 'intel64'), 'bin'] for pd in patch_dirs: |