Skip to content

Rustc pull update #2461

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 29 commits into from
Jun 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7eded77
Auto merge of #136942 - Kobzol:stage0-sccache, r=jieyouxu
bors Jun 3, 2025
e54dd40
Auto merge of #141229 - tgross35:builtins-josh-subtree, r=Kobzol
bors Jun 3, 2025
cda721a
document `skip-std-check-if-no-download-rustc` in rustc-dev-guide
onur-ozkan Jun 4, 2025
7cc927f
Auto merge of #140466 - amandasystems:move-to-preprocessing-step, r=lcnr
bors Jun 5, 2025
65b423b
Rollup merge of #140638 - RalfJung:unsafe-pinned-shared-aliased, r=wo…
matthiaskrgr Jun 5, 2025
7f12261
Rollup merge of #141777 - Kobzol:dist-linux-alt-no-pgo-bolt, r=marcoieni
matthiaskrgr Jun 5, 2025
7bce560
Rollup merge of #141938 - ZuseZ4:offload-updates, r=Kobzol
matthiaskrgr Jun 5, 2025
1791bfb
Rollup merge of #141962 - BoxyUwU:rdg-push, r=jieyouxu
matthiaskrgr Jun 5, 2025
662e759
Rollup merge of #141965 - Kivooeo:test-reform, r=jieyouxu
matthiaskrgr Jun 5, 2025
0c371e2
Rollup merge of #141970 - onur-ozkan:skip-stage1-std, r=Kobzol
matthiaskrgr Jun 5, 2025
6a80b8e
Auto merge of #142070 - matthiaskrgr:rollup-e7lxtuo, r=matthiaskrgr
bors Jun 5, 2025
9a6f10d
Rollup merge of #141709 - aDotInTheVoid:split-for-docs, r=GuillaumeGomez
matthiaskrgr Jun 5, 2025
359984f
Rollup merge of #142032 - matthewjasper:frontmatter-lexing, r=fee1-dead
matthiaskrgr Jun 5, 2025
2f3d5a3
Auto merge of #142081 - matthiaskrgr:rollup-secpezz, r=matthiaskrgr
bors Jun 5, 2025
36cc2ce
Auto merge of #138677 - shepmaster:consistent-elided-lifetime-syntax,…
bors Jun 5, 2025
4b740a3
Auto merge of #140872 - bjorn3:elf_use_used_linker, r=nikic
bors Jun 5, 2025
41985fb
Auto merge of #141272 - Shourya742:2025-05-18-modularize-config-modul…
bors Jun 6, 2025
48c62c3
Auto merge of #141681 - compiler-errors:fast-path-stalled, r=lcnr
bors Jun 6, 2025
af3b7ff
Auto merge of #141774 - oli-obk:naked-fn-queries, r=petrochenkov
bors Jun 6, 2025
2f34718
Auto merge of #141800 - workingjubilee:build-std-with-less-leaf-point…
bors Jun 6, 2025
c4c3ee0
Auto merge of #141910 - Kobzol:new-bors-try-branch-name-doc, r=marcoieni
bors Jun 7, 2025
ff0ba0b
Auto merge of #141917 - petrochenkov:nobinroot, r=jieyouxu
bors Jun 7, 2025
b4abd5b
Auto merge of #141964 - sayantn:update-stdarch, r=Amanieu
bors Jun 7, 2025
3f1e0c2
Auto merge of #141950 - oli-obk:big-body-owner-loop, r=compiler-errors
bors Jun 7, 2025
ce4eeb8
Auto merge of #142074 - oli-obk:its-finally-gone, r=petrochenkov
bors Jun 8, 2025
1ed8934
Auto merge of #142085 - compiler-errors:perf-self-obl, r=lcnr
bors Jun 8, 2025
85315be
Auto merge of #142095 - joshtriplett:optimize-veccache, r=SparrowLii
bors Jun 8, 2025
1aa9e75
Preparing for merge from rustc
invalid-email-address Jun 9, 2025
4cc3df2
Merge from rustc
invalid-email-address Jun 9, 2025
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
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c68032fd4c442d275f4daa571ba19c076106b490
c31cccb7b5cc098b1a8c1794ed38d7fdbec0ccb0
8 changes: 8 additions & 0 deletions src/building/suggested.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ always overrides the inner ones.

## Configuring `rust-analyzer` for `rustc`

### Checking the "library" tree

Checking the "library" tree requires a stage1 compiler, which can be a heavy process on some computers.
For this reason, bootstrap has a flag called `--skip-std-check-if-no-download-rustc` that skips checking the
"library" tree if `rust.download-rustc` isn't available. If you want to avoid putting a heavy load on your computer
with `rust-analyzer`, you can add the `--skip-std-check-if-no-download-rustc` flag to your `./x check` command in
the `rust-analyzer` configuration.

### Project-local rust-analyzer setup

`rust-analyzer` can help you check and format your code whenever you save a
Expand Down