-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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 6 pull requests #122763
Rollup of 6 pull requests #122763
Conversation
This prevents breakage when `?` no longer skews inference.
…compiler This prevents breakage when `?` no longer skews inference.
We need to keep the order of the given clippy lint rules before passing them. Since clap doesn't offer any useful interface for this purpose out of the box, we have to handle it manually. Signed-off-by: onur-ozkan <[email protected]>
Signed-off-by: onur-ozkan <[email protected]>
Previously, when passing lint rules manually using `x clippy ..`, ignored lints would override manual ones. This change corrects the order by passing ignored lints after the manual ones. Signed-off-by: onur-ozkan <[email protected]>
Signed-off-by: onur-ozkan <[email protected]>
In particular, almost none of the errors in `errors.rs` are used outside the crate.
Signed-off-by: onur-ozkan <[email protected]>
various clippy fixes We need to keep the order of the given clippy lint rules before passing them. Since clap doesn't offer any useful interface for this purpose out of the box, we have to handle it manually. Additionally, this PR makes `-D` rules work as expected. Previously, lint rules were limited to `-W`. By enabling `-D`, clippy began to complain numerous lines in the tree, all of which have been resolved in this PR as well. Fixes rust-lang#121481 cc `@matthiaskrgr`
Do not use `?`-induced skewing of type inference in the compiler This prevents breakage from rust-lang#122412 and is generally a good idea. r? `@estebank`
…, r=Amanieu Expose `ucred::peer_cred` on QNX targets to enable dist builds After following https://doc.rust-lang.org/rustc/platform-support/nto-qnx.html I attempted to run the following `x.py` command: ```bash export build_env=' CC_aarch64-unknown-nto-qnx710=qcc CFLAGS_aarch64-unknown-nto-qnx710=-Vgcc_ntoaarch64le_cxx CXX_aarch64-unknown-nto-qnx710=qcc AR_aarch64_unknown_nto_qnx710=ntoaarch64-ar CC_x86_64-pc-nto-qnx710=qcc CFLAGS_x86_64-pc-nto-qnx710=-Vgcc_ntox86_64_cxx CXX_x86_64-pc-nto-qnx710=qcc AR_x86_64_pc_nto_qnx710=ntox86_64-ar' env $build_env ./x.py --stage 2 dist rust-std --target aarch64-unknown-nto-qnx710,x86_64-pc-nto-qnx710,x86_64-unknown-linux-gnu ``` The result was the following error: ``` Compiling object v0.32.2 Compiling std_detect v0.1.5 (/home/ana/git/rust-lang/rust/library/stdarch/crates/std_detect) Compiling addr2line v0.21.0 error: function `peer_cred` is never used --> library/std/src/os/unix/net/ucred.rs:89:12 | 89 | pub fn peer_cred(socket: &UnixStream) -> io::Result<UCred> { | ^^^^^^^^^ | = note: `-D dead-code` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(dead_code)]` error: could not compile `std` (lib) due to 1 previous error Build completed unsuccessfully in 0:06:25 ``` I contacted `@flba-eb` and `@gh-tr` over email and we confirmed that `peer_cred` here should be flagged on `nto` targets. This should enable the clean `x.py --stage 2 dist rust-std` command on these platforms.
…-note, r=nnethercote Remove redundant coroutine captures note This note is redundant, since we'll always be printing this "captures the following types..." between *more* descriptive `BuiltinDerivedObligationCause`s. Please review with whitespace disabled, since I also removed an unnecessary labeled break.
Add "put" as a confusable for insert on hash map/set Already a confusable on btree map/set. Java's `Map` calls the insert method `put`: https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#put(K,V)
…ackh726 Reduce `pub` usage in `rustc_session`. In particular, almost none of the errors in `errors.rs` are used outside the crate. r? `@jackh726`
@bors r+ rollup=never p=6 |
1 similar comment
@bors r+ rollup=never p=6 |
☀️ Test successful - checks-actions |
📌 Perf builds for each rolled up PR:
previous master: b7dcabe55e In the case of a perf regression, run the following command for each PR you suspect might be the cause: |
Finished benchmarking commit (0f706af): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Bootstrap: 669.559s -> 670.215s (0.10%) |
Successful merges:
?
-induced skewing of type inference in the compiler #122540 (Do not use?
-induced skewing of type inference in the compiler)ucred::peer_cred
on QNX targets to enable dist builds #122730 (Exposeucred::peer_cred
on QNX targets to enable dist builds)pub
usage inrustc_session
. #122748 (Reducepub
usage inrustc_session
.)r? @ghost
@rustbot modify labels: rollup
Create a similar rollup