diff options
author | Olli Lupton <oliver.lupton@epfl.ch> | 2021-10-25 18:05:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 09:05:21 -0700 |
commit | 06c983d38f599cc00a5888c9b31f6c560f313668 (patch) | |
tree | a17ee189ef1919d10e3ee4e94324e2210696cd82 /lib | |
parent | b0752bf1b31a3b603757705cf3b643d11d278506 (diff) | |
download | spack-06c983d38f599cc00a5888c9b31f6c560f313668.tar.gz spack-06c983d38f599cc00a5888c9b31f6c560f313668.tar.bz2 spack-06c983d38f599cc00a5888c9b31f6c560f313668.tar.xz spack-06c983d38f599cc00a5888c9b31f6c560f313668.zip |
cuda: add 11.4.1, 11.4.2, 11.5.0. (#26892)
* cuda: add 11.4.1, 11.4.2, 11.5.0.
Note that the curses dependency from cuda-gdb was dropped in 11.4.0.
* Update clang/gcc constraints.
* Address review, assume clang 12 is OK from 11.4.1 onwards.
* superlu-dist@7.1.0 conflicts with cuda@11.5.0.
* Update var/spack/repos/builtin/packages/superlu-dist/package.py
Co-authored-by: Harmen Stoppels <harmenstoppels@gmail.com>
Co-authored-by: Harmen Stoppels <harmenstoppels@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/build_systems/cuda.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/cuda.py b/lib/spack/spack/build_systems/cuda.py index 5003387f89..634cfad637 100644 --- a/lib/spack/spack/build_systems/cuda.py +++ b/lib/spack/spack/build_systems/cuda.py @@ -104,7 +104,10 @@ class CudaPackage(PackageBase): # This implies that the last one in the list has to be updated at # each release of a new cuda minor version. conflicts('%gcc@10:', when='+cuda ^cuda@:11.0') - conflicts('%gcc@11:', when='+cuda ^cuda@:11.4') + conflicts('%gcc@11:', when='+cuda ^cuda@:11.4.0') + conflicts('%gcc@12:', when='+cuda ^cuda@:11.5.0') + conflicts('%clang@12:', when='+cuda ^cuda@:11.4.0') + conflicts('%clang@13:', when='+cuda ^cuda@:11.5.0') # https://gist.github.com/ax3l/9489132#gistcomment-3860114 conflicts('%gcc@10', when='+cuda ^cuda@:11.4.0') |