Skip to content

Commit 5f7367c

Browse files
committed
Update build script for Rust 1.83
1 parent e1b3825 commit 5f7367c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

version.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ impl Version {
3535
// the rustc version, we assume this is the current version.
3636
// It is no problem if this is older than the actual latest stable.
3737
// LLVM version is assumed to be the minimum external LLVM version:
38-
// https://github.com/rust-lang/rust/blob/1.82.0/src/bootstrap/src/core/build_steps/llvm.rs#L586
39-
pub(crate) const LATEST: Self = Self::stable(82, 17);
38+
// https://github.com/rust-lang/rust/blob/1.83.0/src/bootstrap/src/core/build_steps/llvm.rs#L602
39+
pub(crate) const LATEST: Self = Self::stable(83, 18);
4040

4141
pub(crate) const fn stable(rustc_minor: u32, llvm_major: u32) -> Self {
4242
Self { minor: rustc_minor, nightly: false, commit_date: Date::UNKNOWN, llvm: llvm_major }

0 commit comments

Comments
 (0)