Skip to content

Rollup of 20 pull requests - #160190

Merged
rust-bors[bot] merged 60 commits into
rust-lang:mainfrom
jhpratt:rollup-5Fioy6q
Jul 30, 2026
Merged

Rollup of 20 pull requests#160190
rust-bors[bot] merged 60 commits into
rust-lang:mainfrom
jhpratt:rollup-5Fioy6q

Conversation

@jhpratt

@jhpratt jhpratt commented Jul 30, 2026

Copy link
Copy Markdown
Member

Successful merges:

r? @ghost

Create a similar rollup

mkroening and others added 30 commits July 1, 2026 11:18
This is also how it is done on other platforms.
This optimization was already partially in place, but not used.
Other platforms already do this.
Previously, we read all entries into a huge initialized buffer up front,
which does not work correctly since on Hermit 0.12, getdents64 behaves more
reasonable and does no longer fail on buffers which cannot hold all
entries. Additionally, for each new entry, we started searching for the
current position from the start instead of just saving the position
directly.

The new design uses a fixed-size uninitialized buffer that is read into
as necessary.

Co-authored-by: Martin Kröning <martin.kroening@eonerc.rwth-aachen.de>
While Hermit does not return these yet, it will do so in the future.
fix: give reason before the issue number
Currently a Rust CFI failure only inserts a ud2. However, for clang
we have the option for a helpful diagnostic message that explains the
violation and is especially helpful for fixing it. This message works
through hooking the UBSan runtime and calling into it with the
necessary information for a helpful error message. In clang, this is
enabled via -fno-sanitize-trap=cfi.

This change adds the same behavior to rustc's CFI. Instead of a
no-sanitize-trap flag, we added -Z cfi-mode={diag|trap}, with trap
as the default. The diag mode will print the following error message
for a violation:

```
tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs:1:1: runtime error: control flow integrity check for type fn(i32, i32) -> i32 failed during indirect function call
fn_ptr_type_mismatch.ecd806f409c5c1fc-cgu.0: note: fn_ptr_type_mismatch::add_one defined here
SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs:1:1
```
…span

`missing_items_err` has logic to figure out where in the impl to insert
suggestions. Factor that logic out into a function to support reusing
it.
`missing_items_err` has logic to compute a set of suggestions regarding
the missing items. Factor that logic out into a function to support
reusing it.
As with the suggestions for mandatory trait methods, provide suggestions
for `must_implement_one_of`, which include the signatures of the trait
methods. This makes it easy to copy-paste the signatures into the impl
block.

Invoke the same logic from `check_drop_xor_pin_drop`, to provide
suggestions with the signatures of `drop` and `pin_drop`.

Without this change:
```
error[E0046]: not all trait items implemented, missing one of: `read`, `read_buf`
 --> src/main.rs:3:1
  |
3 | impl std::io::Read for R {
  | ^^^^^^^^^^^^^^^^^^^^^^^^ missing one of `read`, `read_buf` in implementation

For more information about this error, try `rustc --explain E0046`.
```

With this change:
```
error[E0046]: not all trait items implemented, missing one of: `read`, `read_buf`
 --> src/main.rs:3:1
  |
3 | impl std::io::Read for R {
  | ^^^^^^^^^^^^^^^^^^^^^^^^ missing one of `read`, `read_buf` in implementation
  |
  = help: implement the missing item: `fn read(&mut self, _: &mut [u8]) -> Result<usize, std::io::Error> { todo!() }`
  = help: implement the missing item: `fn read_buf(&mut self, _: BorrowedCursor<'_, u8>) -> Result<(), std::io::Error> { todo!() }`

For more information about this error, try `rustc --explain E0046`.
```
CC [Wine bug 60084](https://bugs.winehq.org/show_bug.cgi?id=60084)
CC tokio-rs/mio#1980

Wine's `WSAStartup`/`WSACleanup` are currently not thread-safe (though
they probably should be, which is why I reported an upstream bug).

Before rust-lang#141809 (and Rust 1.90),
Rust used to call `WSAStartup` at most once. This PR restores that
behavior.

I believe that this is not a regression for real Windows, since the hot
path of a `Once` already having executed is well-optimized, it's just
one atomic load, like before.
… having a `OnceLock` around it for parallel import resolution
Deeply nested associated-type projections used to ICE with "type variables
should not be hashed" under incremental compilation; they now produce ordinary
trait-bound errors. Uses `//@ incremental` so the crash path is exercised.
rust-lang#158547 moved `std::io::BufWriter` to
`alloc::io::BufWriter`. That allows it to be used in `no-std` configurations,
and in particular on platforms where unwinding isn't supported.

However one of the doc tests uses `catch_unwind`, which fails on platforms
which cannot unwind. Fix this by copying the magic incantation from a similar
doctest in library/core/src/range.rs
@jhpratt

jhpratt commented Jul 30, 2026

Copy link
Copy Markdown
Member Author

No apparent cause.

@bors try jobs=dist-x86_64-msvc

@rust-bors

This comment has been minimized.

rust-bors Bot pushed a commit that referenced this pull request Jul 30, 2026
Rollup of 20 pull requests


try-job: dist-x86_64-msvc
@rust-log-analyzer

Copy link
Copy Markdown
Collaborator

The job x86_64-mingw-1 failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)

@jhpratt

jhpratt commented Jul 30, 2026

Copy link
Copy Markdown
Member Author

@bors retry (pending try run outcome)

@rust-bors rust-bors Bot added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jul 30, 2026
@rust-bors

rust-bors Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

☀️ Try build successful (CI)
Build commit: fed84c4 (fed84c4ecb8c218a732dd194902ac20db0053943)
Base parent: 1a833e1 (1a833e16546c2eb012758ddd499964fd8afee29e)

@rust-bors

This comment has been minimized.

@rust-bors rust-bors Bot added merged-by-bors This PR was explicitly merged by bors. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jul 30, 2026
@rust-bors

rust-bors Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

☀️ Test successful - CI
Approved by: jhpratt
Duration: 3h 25m 5s
Pushing be3d26d to main...

@github-actions

Copy link
Copy Markdown
Contributor
What is this? This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.

Comparing 83709ee (parent) -> be3d26d (this PR)

Test differences

Show 186 test diffs

Stage 1

  • [codegen] tests/codegen-llvm/sanitizer/cfi/emit-type-checks-diag-mode.rs: [missing] -> pass (J0)
  • [codegen] tests/codegen-llvm/sanitizer/cfi/emit-type-checks-recover-mode.rs: [missing] -> pass (J0)
  • [run-make] tests/run-make/rustdoc-show-coverage: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/coverage/doctest-output.rs: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/coverage/output-format-coveragejson-emit-depinfo.rs: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/coverage/output-format-json-emit-html.rs#html_non_static: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/coverage/output-format-json-emit-html.rs#html_non_static_coverage: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/coverage/output-format-json-emit-html.rs#html_static: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/coverage/output-format-json-emit-html.rs#html_static_coverage: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/coverage/show-coverage-json-emit-html-non-static.rs: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/coverage/show-coverage-json.rs: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/coverage/show-coverage.rs: [missing] -> pass (J0)
  • [ui] tests/rustdoc-ui/doctest-output.rs: pass -> [missing] (J0)
  • [ui] tests/rustdoc-ui/output-format-coveragejson-emit-depinfo.rs: pass -> [missing] (J0)
  • [ui] tests/rustdoc-ui/output-format-json-emit-html.rs#html_non_static: pass -> [missing] (J0)
  • [ui] tests/rustdoc-ui/output-format-json-emit-html.rs#html_non_static_coverage: pass -> [missing] (J0)
  • [ui] tests/rustdoc-ui/output-format-json-emit-html.rs#html_static: pass -> [missing] (J0)
  • [ui] tests/rustdoc-ui/output-format-json-emit-html.rs#html_static_coverage: pass -> [missing] (J0)
  • [ui] tests/rustdoc-ui/show-coverage-json-emit-html-non-static.rs: pass -> [missing] (J0)
  • [ui] tests/rustdoc-ui/show-coverage-json.rs: pass -> [missing] (J0)
  • [ui] tests/rustdoc-ui/show-coverage.rs: pass -> [missing] (J0)
  • iter::adapters::take::test_iterator_take_count: [missing] -> pass (J2)
  • [ui (polonius)] tests/ui/associated-types/nested-assoc-type-projection-ice-109864.rs: [missing] -> pass (J3)
  • [ui (polonius)] tests/ui/offload/non_tuple_args.rs: [missing] -> pass (J3)
  • [ui (polonius)] tests/ui/offload/type_mismatch.rs: [missing] -> pass (J3)
  • [ui (polonius)] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#cfi: [missing] -> ignore (ignored on targets without sanitizers support) (J3)
  • [ui (polonius)] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#kcfi: [missing] -> pass (J3)
  • [ui (polonius)] tests/ui/traits/bad-error-message-impl-trait-double-ref-issue-85681.rs: [missing] -> pass (J3)
  • [ui (polonius)] tests/ui/traits/explicit-reference-cast-hrtb.rs: [missing] -> pass (J3)
  • [codegen] tests/codegen-llvm/sanitizer/cfi/emit-type-checks-diag-mode.rs: [missing] -> ignore (ignored on targets without CFI sanitizer) (J6)
  • [codegen] tests/codegen-llvm/sanitizer/cfi/emit-type-checks-recover-mode.rs: [missing] -> ignore (ignored on targets without CFI sanitizer) (J6)
  • [ui] tests/ui/associated-types/nested-assoc-type-projection-ice-109864.rs: [missing] -> pass (J13)
  • [ui] tests/ui/offload/non_tuple_args.rs: [missing] -> pass (J13)
  • [ui] tests/ui/offload/type_mismatch.rs: [missing] -> pass (J13)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#cfi: [missing] -> ignore (ignored on targets without sanitizers support) (J13)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#kcfi: [missing] -> pass (J13)
  • [ui] tests/ui/traits/bad-error-message-impl-trait-double-ref-issue-85681.rs: [missing] -> pass (J13)
  • [ui] tests/ui/traits/explicit-reference-cast-hrtb.rs: [missing] -> pass (J13)

Stage 2

  • [ui] tests/rustdoc-ui/coverage/doctest-output.rs: [missing] -> pass (J1)
  • [ui] tests/rustdoc-ui/coverage/output-format-coveragejson-emit-depinfo.rs: [missing] -> pass (J1)
  • [ui] tests/rustdoc-ui/coverage/output-format-json-emit-html.rs#html_non_static: [missing] -> pass (J1)
  • [ui] tests/rustdoc-ui/coverage/output-format-json-emit-html.rs#html_non_static_coverage: [missing] -> pass (J1)
  • [ui] tests/rustdoc-ui/coverage/output-format-json-emit-html.rs#html_static: [missing] -> pass (J1)
  • [ui] tests/rustdoc-ui/coverage/output-format-json-emit-html.rs#html_static_coverage: [missing] -> pass (J1)
  • [ui] tests/rustdoc-ui/coverage/show-coverage-json-emit-html-non-static.rs: [missing] -> pass (J1)
  • [ui] tests/rustdoc-ui/coverage/show-coverage-json.rs: [missing] -> pass (J1)
  • [ui] tests/rustdoc-ui/coverage/show-coverage.rs: [missing] -> pass (J1)
  • [ui] tests/rustdoc-ui/doctest-output.rs: pass -> [missing] (J1)
  • [ui] tests/rustdoc-ui/output-format-coveragejson-emit-depinfo.rs: pass -> [missing] (J1)
  • [ui] tests/rustdoc-ui/output-format-json-emit-html.rs#html_non_static: pass -> [missing] (J1)
  • [ui] tests/rustdoc-ui/output-format-json-emit-html.rs#html_non_static_coverage: pass -> [missing] (J1)
  • [ui] tests/rustdoc-ui/output-format-json-emit-html.rs#html_static: pass -> [missing] (J1)
  • [ui] tests/rustdoc-ui/output-format-json-emit-html.rs#html_static_coverage: pass -> [missing] (J1)
  • [ui] tests/rustdoc-ui/show-coverage-json-emit-html-non-static.rs: pass -> [missing] (J1)
  • [ui] tests/rustdoc-ui/show-coverage-json.rs: pass -> [missing] (J1)
  • [ui] tests/rustdoc-ui/show-coverage.rs: pass -> [missing] (J1)
  • [run-make] tests/run-make/rustdoc-show-coverage: [missing] -> pass (J4)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#cfi: [missing] -> pass (J5)
  • [codegen] tests/codegen-llvm/sanitizer/cfi/emit-type-checks-diag-mode.rs: [missing] -> pass (J7)
  • [codegen] tests/codegen-llvm/sanitizer/cfi/emit-type-checks-recover-mode.rs: [missing] -> pass (J7)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#kcfi: [missing] -> ignore (ignored on targets without kernel CFI sanitizer) (J8)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#cfi: [missing] -> ignore (ignored on targets without sanitizers support) (J9)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#cfi: [missing] -> ignore (gcc backend is marked as ignore) (J10)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#kcfi: [missing] -> ignore (gcc backend is marked as ignore) (J10)
  • [ui] tests/ui/associated-types/nested-assoc-type-projection-ice-109864.rs: [missing] -> pass (J11)
  • [ui] tests/ui/offload/non_tuple_args.rs: [missing] -> pass (J11)
  • [ui] tests/ui/offload/type_mismatch.rs: [missing] -> pass (J11)
  • [ui] tests/ui/traits/bad-error-message-impl-trait-double-ref-issue-85681.rs: [missing] -> pass (J11)
  • [ui] tests/ui/traits/explicit-reference-cast-hrtb.rs: [missing] -> pass (J11)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#cfi: [missing] -> ignore (only executed when the operating system is linux) (J12)
  • iter::adapters::take::test_iterator_take_count: [missing] -> pass (J14)
  • [codegen] tests/codegen-llvm/sanitizer/cfi/emit-type-checks-diag-mode.rs: [missing] -> ignore (ignored on targets without CFI sanitizer) (J15)
  • [codegen] tests/codegen-llvm/sanitizer/cfi/emit-type-checks-recover-mode.rs: [missing] -> ignore (ignored on targets without CFI sanitizer) (J15)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#kcfi: [missing] -> pass (J16)
  • [run-make] tests/run-make/rustdoc-show-coverage: [missing] -> ignore (only executed when the operating system is linux) (J17)
  • [ui] tests/ui/sanitizer/cfi/fn-ptr-type-mismatch.rs#cfi: [missing] -> ignore (ignored on targets without CFI sanitizer) (J18)

Additionally, 110 doctest diffs were found. These are ignored, as they are noisy.

Job group index

Test dashboard

Run

cargo run --manifest-path src/ci/citool/Cargo.toml -- \
    test-dashboard be3d26db984c6f96335faca1f254dc04873cb1c1 --output-dir test-dashboard

And then open test-dashboard/index.html in your browser to see an overview of all executed tests.

Job duration changes

  1. x86_64-mingw-1: 3h 1m -> 1h 45m (-42.2%)
  2. x86_64-gnu-gcc-core-tests: 14m 8s -> 8m 19s (-41.2%)
  3. x86_64-msvc-ext3: 1h 14m -> 1h 45m (+40.4%)
  4. x86_64-rust-for-linux: 51m 53s -> 31m 15s (-39.8%)
  5. x86_64-gnu-debug: 1h 27m -> 2h 1m (+39.5%)
  6. x86_64-gnu-llvm-22-2: 1h 37m -> 1h 4m (-34.2%)
  7. test-various: 1h 29m -> 1h 58m (+32.1%)
  8. x86_64-msvc-ext2: 1h 27m -> 1h 54m (+31.9%)
  9. i686-gnu-2: 1h 44m -> 1h 11m (-31.1%)
  10. armhf-gnu: 1h 33m -> 1h 5m (-30.0%)
How to interpret the job duration changes?

Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs.

@rust-timer

Copy link
Copy Markdown
Collaborator

📌 Perf builds for each rolled up PR:

PR# Message Perf Build Sha
#157669 cfi: add diag mode support 104c68cae2bfeb5318cf6727bd8a1030641ca034 (link)
#158247 hermit/fs: Return unsupported() instead of `from_raw_os_e… abe9bab717d0a1cc215b2e257c7f93e45d10bb04 (link)
#158649 Hermit: fix readdir() f8e7e27710c63c120a32ea8571e632060b9c4a51 (link)
#158693 Add type-check to offload intrinisc calls 13870f382e5ad9ab60dfb351b3809908b2e2cf0f (link)
#159049 Avoid ICE in From/TryFrom cast suggestion when encountering… e7ef1360dc04ce9683ccf2afa57aa41e69a5796e (link)
#159411 [rustdoc] Correctly handle output options with --show-cover… f0058dcae1af8d5f4e783a5eab0769b415054c16 (link)
#160053 test: add test suite for the 85681 issue 64ff134be231337782b104fbc5514af6e32680ae (link)
#160087 Add regression test for nested associated-type projection I… 23d4cd0d79e56fa9ce5d160b0e8f1769dab864d7 (link)
#160090 rustc_resolve: Further reduce mutability in resolver 3bb5bfcb6494b67af78a33fe7a31de5f1371fd59 (link)
#160099 Resolver: split module resolutions into local and external … 7dfb5462e1416868a96fd8ea6484480f54819463 (link)
#160101 Add missing needs-unwind annotation to `add-spawn-hook-re… d4b62a3a9c8e9d1e1997beb4dc3b32c97a69071d (link)
#160106 Add suggestions for must_implement_one_of 232acf7993ffdfc232877be607cc7921fb8319a1 (link)
#160117 Remove unnecessary format usage d30fc95c79f3ddd898739421952f21890069f96b (link)
#160134 Work around Wine bug 60084 by calling WSAStartup at most on… 4d072f610c83f06cd85ecb43a143a7136364c993 (link)
#160139 iter: specialize Take::count using advance_by da323d0c8f5e6143138d4f8b2f32f9cd7f1ee23b (link)
#160142 bootstrap: remove use-lld config alias 42051734aada2b6e886b0e328582b17a2a222dc0 (link)
#160148 Rename errors.rs file to diagnostics.rs (15/N) 0b76cb06d4d2c3adb10aaa0528cec2a0abb8ca55 (link)
#160151 Mark a doctest as requiring unwinding c1ecea4576bd8cd600f456d5c8d27e8d0268d992 (link)
#160166 Use correct feature gates for f16/f128 From impls 3635a5ead397d122764ad9e8bebc920380950bbf (link)
#160178 Remove unused va_start intrinsic f878530e1af13cba806c32e78e3183fe4088e815 (link)

previous master: 83709eedff

In the case of a perf regression, run the following command for each PR you suspect might be the cause: @rust-timer build $SHA

@rust-timer

Copy link
Copy Markdown
Collaborator

Finished benchmarking commit (be3d26d): comparison URL.

Overall result: ❌ regressions - please read:

Our benchmarks found a performance regression caused by this PR.
This might be an actual regression, but it can also be just noise.

Next Steps:

  • If the regression was expected or you think it can be justified,
    please write a comment with sufficient written justification, and add
    @rustbot label: +perf-regression-triaged to it, to mark the regression as triaged.
  • If you think that you know of a way to resolve the regression, try to create
    a new PR with a fix for the regression.
  • If you do not understand the regression or you think that it is just noise,
    you can ask the @rust-lang/wg-compiler-performance working group for help (members of this group
    were already notified of this PR).

@rustbot label: +perf-regression
cc @rust-lang/wg-compiler-performance

Instruction count

Our most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
0.4% [0.1%, 0.6%] 16
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-0.2% [-0.3%, -0.1%] 2
All ❌✅ (primary) - - 0

Max RSS (memory usage)

Results (primary -1.6%, secondary -0.7%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
1.1% [0.9%, 1.3%] 2
Improvements ✅
(primary)
-1.6% [-3.3%, -0.7%] 3
Improvements ✅
(secondary)
-0.9% [-4.8%, -0.5%] 16
All ❌✅ (primary) -1.6% [-3.3%, -0.7%] 3

Cycles

Results (primary -0.1%, secondary -2.1%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
1.1% [0.5%, 1.7%] 4
Regressions ❌
(secondary)
0.7% [0.7%, 0.7%] 1
Improvements ✅
(primary)
-1.1% [-2.4%, -0.5%] 5
Improvements ✅
(secondary)
-2.3% [-14.0%, -0.6%] 13
All ❌✅ (primary) -0.1% [-2.4%, 1.7%] 9

Binary size

Results (primary -0.1%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
0.2% [0.2%, 0.2%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-0.2% [-0.7%, -0.1%] 4
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) -0.1% [-0.7%, 0.2%] 5

Bootstrap: 491.471s -> 489.155s (-0.47%)
Artifact size: 390.58 MiB -> 390.64 MiB (0.02%)

@rustbot rustbot added the perf-regression Performance regression. label Jul 30, 2026
@jhpratt

jhpratt commented Jul 31, 2026

Copy link
Copy Markdown
Member Author

caused by #158693, which is apparently needed for kernel stuff

@rustbot label perf-regression-triaged

@rustbot rustbot added the perf-regression-triaged The performance regression has been triaged. label Jul 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-run-make Area: port run-make Makefiles to rmake.rs merged-by-bors This PR was explicitly merged by bors. O-windows Operating system: Windows perf-regression Performance regression. perf-regression-triaged The performance regression has been triaged. PG-exploit-mitigations Project group: Exploit mitigations rollup A PR which is a rollup T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.

Projects

None yet

Development

Successfully merging this pull request may close these issues.