summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRĂ©mi Lacroix <remi.lacroix@idris.fr>2023-09-07 06:58:19 +0200
committerGitHub <noreply@github.com>2023-09-07 00:58:19 -0400
commitb81aa42179907b451838e14c6a5b3a23fafb5d25 (patch)
tree75dea89db05839693f42d5fd6aa5dcdc0c88289e /lib
parentc59f68a33dd0f04f0c90ecedf677a5b7066646fb (diff)
downloadspack-b81aa42179907b451838e14c6a5b3a23fafb5d25.tar.gz
spack-b81aa42179907b451838e14c6a5b3a23fafb5d25.tar.bz2
spack-b81aa42179907b451838e14c6a5b3a23fafb5d25.tar.xz
spack-b81aa42179907b451838e14c6a5b3a23fafb5d25.zip
CUDA 10.1/10.2: Fix conflicts with PGI 19+. (#39747)
The condition probably did not get updated when the behavior of the version specifier changed.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/build_systems/cuda.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/cuda.py b/lib/spack/spack/build_systems/cuda.py
index fd7e2a0df3..4a07c8b2c4 100644
--- a/lib/spack/spack/build_systems/cuda.py
+++ b/lib/spack/spack/build_systems/cuda.py
@@ -154,7 +154,7 @@ class CudaPackage(PackageBase):
conflicts("%pgi@:15.3,15.5:", when="+cuda ^cuda@7.5 target=x86_64:")
conflicts("%pgi@:16.2,16.0:16.3", when="+cuda ^cuda@8 target=x86_64:")
conflicts("%pgi@:15,18:", when="+cuda ^cuda@9.0:9.1 target=x86_64:")
- conflicts("%pgi@:16,19:", when="+cuda ^cuda@9.2.88:10 target=x86_64:")
+ conflicts("%pgi@:16,19:", when="+cuda ^cuda@9.2.88:10.0 target=x86_64:")
conflicts("%pgi@:17,20:", when="+cuda ^cuda@10.1.105:10.2.89 target=x86_64:")
conflicts("%pgi@:17,21:", when="+cuda ^cuda@11.0.2:11.1.0 target=x86_64:")
conflicts("%clang@:3.4", when="+cuda ^cuda@:7.5 target=x86_64:")