diff options
author | Alec Scott <hi@alecbcs.com> | 2024-05-14 08:14:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 08:14:34 -0700 |
commit | 410e6a59b787dae0f4ff2d8bbdae7ecadd00f428 (patch) | |
tree | b8d2251131410d0b1c8b4c54eec7c2d44f4e27cb /var | |
parent | bd2b2fb75a31b49db740ded8374812201ba54902 (diff) | |
download | spack-410e6a59b787dae0f4ff2d8bbdae7ecadd00f428.tar.gz spack-410e6a59b787dae0f4ff2d8bbdae7ecadd00f428.tar.bz2 spack-410e6a59b787dae0f4ff2d8bbdae7ecadd00f428.tar.xz spack-410e6a59b787dae0f4ff2d8bbdae7ecadd00f428.zip |
rust: fix v1.78.0 instructions (#44127)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/rust/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/rust/package.py b/var/spack/repos/builtin/packages/rust/package.py index b9f8da825f..9676d8a033 100644 --- a/var/spack/repos/builtin/packages/rust/package.py +++ b/var/spack/repos/builtin/packages/rust/package.py @@ -75,12 +75,14 @@ class Rust(Package): depends_on("rust-bootstrap@nightly", type="build", when="@nightly") # Stable version dependencies + depends_on("rust-bootstrap", type="build") depends_on("rust-bootstrap@1.59:1.60", type="build", when="@1.60") depends_on("rust-bootstrap@1.64:1.65", type="build", when="@1.65") depends_on("rust-bootstrap@1.69:1.70", type="build", when="@1.70") depends_on("rust-bootstrap@1.72:1.73", type="build", when="@1.73") depends_on("rust-bootstrap@1.73:1.74", type="build", when="@1.74") depends_on("rust-bootstrap@1.74:1.75", type="build", when="@1.75") + depends_on("rust-bootstrap@1.77:1.78", type="build", when="@1.78") # src/llvm-project/llvm/cmake/modules/CheckCompilerVersion.cmake conflicts("%gcc@:7.3", when="@1.73:", msg="Host GCC version must be at least 7.4") |