diff options
author | pauleonix <paul.grosse-bley@ziti.uni-heidelberg.de> | 2024-09-02 08:46:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-02 08:46:03 +0200 |
commit | 6b649ccf4fe4f088391ac6a7ee9c056c878b2d39 (patch) | |
tree | 8fee341a40e664f2437c88ae208dcd418ded7e52 /lib | |
parent | d463d4566dc3c465708538f6eb255d21d0bb9e62 (diff) | |
download | spack-6b649ccf4fe4f088391ac6a7ee9c056c878b2d39.tar.gz spack-6b649ccf4fe4f088391ac6a7ee9c056c878b2d39.tar.bz2 spack-6b649ccf4fe4f088391ac6a7ee9c056c878b2d39.tar.xz spack-6b649ccf4fe4f088391ac6a7ee9c056c878b2d39.zip |
cuda: add v12.6.1 (#46143)
Update build system conflict between CUDA 12.6 and Clang 18
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/build_systems/cuda.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/cuda.py b/lib/spack/spack/build_systems/cuda.py index 6c14e23f1c..20f7ede139 100644 --- a/lib/spack/spack/build_systems/cuda.py +++ b/lib/spack/spack/build_systems/cuda.py @@ -145,7 +145,8 @@ class CudaPackage(PackageBase): conflicts("%clang@15:", when="+cuda ^cuda@:12.0") conflicts("%clang@16:", when="+cuda ^cuda@:12.1") conflicts("%clang@17:", when="+cuda ^cuda@:12.3") - conflicts("%clang@18:", when="+cuda ^cuda@:12.6") + conflicts("%clang@18:", when="+cuda ^cuda@:12.5") + conflicts("%clang@19:", when="+cuda ^cuda@:12.6") # https://gist.github.com/ax3l/9489132#gistcomment-3860114 conflicts("%gcc@10", when="+cuda ^cuda@:11.4.0") |