Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 10 pull requests #98066

Merged
merged 25 commits into from
Jun 13, 2022
Merged
Changes from 2 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
27af8e4
Normalize consts' tys when relating with adt_const_params
compiler-errors Jun 3, 2022
d8f0765
Remove doc
JohnTitor Jun 8, 2022
153f01e
Remove the `infer_static_outlives_requirements` feature
JohnTitor Jun 8, 2022
40913c6
Remove related tests
JohnTitor Jun 8, 2022
e5245ef
interpret: unify offset_from check with offset check
RalfJung Jun 10, 2022
2f923c4
Make type_changing_struct_update no longer incomplete
compiler-errors Jun 11, 2022
77d6176
remove unnecessary `to_string` and `String::new`
TaKO8Ki Jun 13, 2022
fd1290a
remove unnecessary `to_string` and `String::new` for `tool_only_span_…
TaKO8Ki Jun 13, 2022
ddd18a5
del unrelated comment
dust1 Jun 13, 2022
55b3c44
remove use Cell in variance-object-types.rs
dust1 Jun 13, 2022
acda886
Document an edge case of `str::split_once`
imbolc Jun 13, 2022
c15fed5
Update variance-object-types.stderr
dust1 Jun 13, 2022
c4b43d8
Add some more regression tests for #67945
JohnTitor Jun 13, 2022
af8c1e3
fix error message for download-ci-llvm
pietroalbini Jun 13, 2022
3305b66
Update miri
oli-obk Jun 13, 2022
e13eeed
Rollup merge of #97709 - compiler-errors:normalize-const-param-ty, r=…
matthiaskrgr Jun 13, 2022
89249b1
Rollup merge of #97875 - JohnTitor:rm-infer-static-outlives-requireme…
matthiaskrgr Jun 13, 2022
426922b
Rollup merge of #97960 - RalfJung:offset-from, r=oli-obk
matthiaskrgr Jun 13, 2022
f758b4f
Rollup merge of #97999 - compiler-errors:type_changin_struct_update_i…
matthiaskrgr Jun 13, 2022
9d27f2e
Rollup merge of #98043 - TaKO8Ki:remove-unnecessary-to-string, r=davi…
matthiaskrgr Jun 13, 2022
94443f2
Rollup merge of #98044 - dust1:master, r=Dylan-DPC
matthiaskrgr Jun 13, 2022
62eb97a
Rollup merge of #98049 - imbolc:patch-3, r=Dylan-DPC
matthiaskrgr Jun 13, 2022
3f17cd7
Rollup merge of #98050 - JohnTitor:issue-67945, r=compiler-errors
matthiaskrgr Jun 13, 2022
68cb0a7
Rollup merge of #98054 - ferrocene:pa-fix-llvm-download-spaces, r=jyn514
matthiaskrgr Jun 13, 2022
af1f614
Rollup merge of #98057 - oli-obk:miri_ui_test, r=oli-obk
matthiaskrgr Jun 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/bootstrap/native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,13 @@ fn download_ci_llvm(builder: &Builder<'_>, llvm_sha: &str) {
let filename = format!("rust-dev-nightly-{}.tar.xz", builder.build.build.triple);
let tarball = rustc_cache.join(&filename);
if !tarball.exists() {
let help_on_error = "error: failed to download llvm from ci\n
\nhelp: old builds get deleted after a certain time
\nhelp: if trying to compile an old commit of rustc, disable `download-ci-llvm` in config.toml:
\n
\n[llvm]
\ndownload-ci-llvm = false
\n
let help_on_error = "error: failed to download llvm from ci

help: old builds get deleted after a certain time
help: if trying to compile an old commit of rustc, disable `download-ci-llvm` in config.toml:

[llvm]
download-ci-llvm = false
";
builder.download_component(base, &format!("{}/{}", url, filename), &tarball, help_on_error);
}
Expand Down