Skip to content

Rollup of 8 pull requests #133219

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

Merged
merged 30 commits into from
Nov 20, 2024
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4a5bcbb
Add vec_deque::Iter::as_slices and friends
Apr 14, 2024
37ea202
ci: use free runner in dist-i686-msvc
marcoieni Nov 18, 2024
09c2684
Add Visitor::visit_fn_decl
maxcabrajac Nov 18, 2024
e65deb5
Add Visitor::visit_qself
maxcabrajac Nov 18, 2024
f6340f1
Add MutVisitor::visit_fn_ret_ty
maxcabrajac Nov 18, 2024
7bffa31
Mention std::fs::remove_dir_all in std::fs::remove_dir
n0toose Nov 18, 2024
df29f9b
Improve `fake_ident_or_unknown_prefix`.
nnethercote Nov 19, 2024
2c7c369
Improve `TokenKind` comments.
nnethercote Nov 19, 2024
e9a0c3c
Remove `TokenKind::InvalidPrefix`.
nnethercote Nov 19, 2024
38f0c09
Default-enable `llvm_tools_enabled` when no `config.toml` is present
jieyouxu Nov 19, 2024
fcfb782
Register change info
jieyouxu Nov 19, 2024
4b5c883
Explicitly disable llvm tools for cranelift
jieyouxu Nov 19, 2024
616013f
Correct the tier listing of `wasm32-wasip2`
alexcrichton Nov 19, 2024
7ac4c04
Add std::thread::add_spawn_hook.
m-ou-se May 22, 2024
ef9055f
Use add_spawn_hook for libtest's output capturing.
m-ou-se May 22, 2024
947354f
Update thread spawn hooks.
m-ou-se Oct 24, 2024
f2bf9e1
Add thread Builder::no_hooks().
m-ou-se Oct 24, 2024
5a80b48
Use Send + Sync for spawn hooks.
m-ou-se Oct 24, 2024
24fec0d
Add tracking issue.
m-ou-se Nov 12, 2024
38b9a44
Fix tracking issue.
m-ou-se Nov 19, 2024
b96f023
Address review comments.
m-ou-se Nov 19, 2024
691796b
Update doc comments for spawn hook.
m-ou-se Nov 19, 2024
001f98a
Rollup merge of #123947 - zopsicle:vec_deque-Iter-as_slices, r=Amanieu
matthiaskrgr Nov 19, 2024
6c127f3
Rollup merge of #125405 - m-ou-se:thread-add-spawn-hook, r=WaffleLapkin
matthiaskrgr Nov 19, 2024
c74e5a8
Rollup merge of #133175 - MarcoIeni:dist-i686-msvc-free, r=Kobzol
matthiaskrgr Nov 19, 2024
d5dca43
Rollup merge of #133183 - n0toose:improve-remove-dir-docs, r=joboet
matthiaskrgr Nov 19, 2024
022bb9c
Rollup merge of #133188 - maxcabrajac:walk_no_visit, r=petrochenkov
matthiaskrgr Nov 19, 2024
841243f
Rollup merge of #133201 - nnethercote:rm-TokenKind-InvalidPrefix, r=c…
matthiaskrgr Nov 19, 2024
49aec06
Rollup merge of #133207 - jieyouxu:macos-objcopy, r=Kobzol,bjorn3
matthiaskrgr Nov 19, 2024
2467654
Rollup merge of #133213 - alexcrichton:fix-tier-listing, r=jieyouxu
matthiaskrgr Nov 19, 2024
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
Prev Previous commit
Next Next commit
Register change info
  • Loading branch information
jieyouxu committed Nov 19, 2024
commit fcfb782a7582fc5f2264c2bcb67e6ffe6ea4a0e2
5 changes: 5 additions & 0 deletions src/bootstrap/src/utils/change_tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,4 +300,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
severity: ChangeSeverity::Info,
summary: "`download-rustc='if-unchanged'` is now a default option for library profile.",
},
ChangeInfo {
change_id: 133207,
severity: ChangeSeverity::Info,
summary: "`rust.llvm-tools` is now enabled by default when no `config.toml` is provided.",
},
];