Skip to content

Commit a00e0b3

Browse files
authored
Rollup merge of #60315 - pietroalbini:fix-tools-version, r=Mark-Simulacrum
bootstrap: use correct version numbers for llvm-tools and lldb The current URLs for the `llvm-tools` and `lldb` components are a bit broken right now: ``` https://static.rust-lang.org/dist/2019-04-25/llvm-tools-1.34.1 (fc50f32 2019-04-24)-aarch64-unknown-linux-gnu.tar.gz ``` This PR uses proper version numbers for those. Tested a dist build locally and everything works. r? @Mark-Simulacrum
2 parents ded76d0 + c1a4588 commit a00e0b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1049,15 +1049,15 @@ impl Build {
10491049
}
10501050

10511051
fn llvm_tools_package_vers(&self) -> String {
1052-
self.package_vers(&self.rust_version())
1052+
self.package_vers(channel::CFG_RELEASE_NUM)
10531053
}
10541054

10551055
fn llvm_tools_vers(&self) -> String {
10561056
self.rust_version()
10571057
}
10581058

10591059
fn lldb_package_vers(&self) -> String {
1060-
self.package_vers(&self.rust_version())
1060+
self.package_vers(channel::CFG_RELEASE_NUM)
10611061
}
10621062

10631063
fn lldb_vers(&self) -> String {

0 commit comments

Comments
 (0)