diff options
author | albestro <9337627+albestro@users.noreply.github.com> | 2021-02-05 18:55:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 17:55:39 +0000 |
commit | 02b64c89033b71be54fa7b4179157e9b4d92e2a7 (patch) | |
tree | 02fda543c06fbe6aa01428f951d729e6012f44ee | |
parent | 67667c96db5deaed676cc676860c6fc485c2588a (diff) | |
download | spack-02b64c89033b71be54fa7b4179157e9b4d92e2a7.tar.gz spack-02b64c89033b71be54fa7b4179157e9b4d92e2a7.tar.bz2 spack-02b64c89033b71be54fa7b4179157e9b4d92e2a7.tar.xz spack-02b64c89033b71be54fa7b4179157e9b4d92e2a7.zip |
let intel consider cray-mpich as mpich (#21512)
-rw-r--r-- | lib/spack/spack/build_systems/intel.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/build_systems/intel.py b/lib/spack/spack/build_systems/intel.py index 7537f999ef..18628b8910 100644 --- a/lib/spack/spack/build_systems/intel.py +++ b/lib/spack/spack/build_systems/intel.py @@ -815,6 +815,7 @@ class IntelPackage(PackageBase): # Was supported only up to 2015. blacs_lib = 'libmkl_blacs' elif ('^mpich@2:' in spec_root or + '^cray-mpich' in spec_root or '^mvapich2' in spec_root or '^intel-mpi' in spec_root or '^intel-parallel-studio' in spec_root): |