diff options
author | QuellynSnead <quellyn@lanl.gov> | 2022-04-23 05:01:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-23 07:01:13 -0400 |
commit | 6162ea95b0e7e7986c929462c4fbbef9b0829d42 (patch) | |
tree | 499c74e5d9d12cf9720b17a196fb498636495c7b | |
parent | 44b409d69669354fa9e743cc83f9c81a7deca212 (diff) | |
download | spack-6162ea95b0e7e7986c929462c4fbbef9b0829d42.tar.gz spack-6162ea95b0e7e7986c929462c4fbbef9b0829d42.tar.bz2 spack-6162ea95b0e7e7986c929462c4fbbef9b0829d42.tar.xz spack-6162ea95b0e7e7986c929462c4fbbef9b0829d42.zip |
trilinos: limit secas patch range for cce (#30205)
The cray_secas.patch no longer appears to be necessary
with cce 13.x. Limit its application to cce 12.14.1 - 12.99.99.
-rw-r--r-- | var/spack/repos/builtin/packages/trilinos/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/trilinos/package.py b/var/spack/repos/builtin/packages/trilinos/package.py index c57d444217..1e9778063e 100644 --- a/var/spack/repos/builtin/packages/trilinos/package.py +++ b/var/spack/repos/builtin/packages/trilinos/package.py @@ -393,7 +393,7 @@ class Trilinos(CMakePackage, CudaPackage, ROCmPackage): patch('xlf_tpetra.patch', when='@12.12.1 %' + _compiler) patch('fix_clang_errors_12_18_1.patch', when='@12.18.1%clang') patch('cray_secas_12_12_1.patch', when='@12.12.1%cce') - patch('cray_secas.patch', when='@12.14.1:%cce') + patch('cray_secas.patch', when='@12.14.1:12%cce') # workaround an NVCC bug with c++14 (https://github.com/trilinos/Trilinos/issues/6954) # avoid calling deprecated functions with CUDA-11 |