-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 9 pull requests #130066
Rollup of 9 pull requests #130066
Commits on Aug 9, 2024
-
call
Cargo::configure_linker
only for specific commandsCalling `Cargo::configure_linker` unconditionally slows down certain commands (e.g., "check" command) without providing any benefit. Signed-off-by: onur-ozkan <work@onurozkan.dev>
Configuration menu - View commit details
-
Copy full SHA for 9a29081 - Browse repository at this point
Copy the full SHA 9a29081View commit details -
don't try to find target tools on certain commands
For commands like check/clean there is no need to check for target tools. Avoiding this check can also speed up the process. Signed-off-by: onur-ozkan <work@onurozkan.dev>
Configuration menu - View commit details
-
Copy full SHA for 94fbe14 - Browse repository at this point
Copy the full SHA 94fbe14View commit details
Commits on Aug 30, 2024
-
[testsuite][cleanup] Remove all usages of
dont_merge
hack to avoid ……function merging Resolves rust-lang#129438 The `-Zmerge-functions=disabled` compile flag exists for this purpose.
Configuration menu - View commit details
-
Copy full SHA for b324fcb - Browse repository at this point
Copy the full SHA b324fcbView commit details
Commits on Sep 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 265cd14 - Browse repository at this point
Copy the full SHA 265cd14View commit details
Commits on Sep 3, 2024
-
rustc_codegen_llvm: fix a regression where backchain feature ...
... can not be correctly gated using #[cfg] macro
Configuration menu - View commit details
-
Copy full SHA for e98e88b - Browse repository at this point
Copy the full SHA e98e88bView commit details
Commits on Sep 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6e4c5c1 - Browse repository at this point
Copy the full SHA 6e4c5c1View commit details
Commits on Sep 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e04ede4 - Browse repository at this point
Copy the full SHA e04ede4View commit details
Commits on Sep 6, 2024
-
Adjust doc comment of Condvar::wait_while
The existing phrasing implies that a notification must be received for `wait_while` to return. The phrasing is changed to better reflect the behavior.
Configuration menu - View commit details
-
Copy full SHA for 96837dc - Browse repository at this point
Copy the full SHA 96837dcView commit details -
Do not request sanitizers for naked functions
Naked functions can only contain inline asm, so any instrumentation inserted by sanitizers is illegal. Don't request it. Fixes rust-lang#129224.
Configuration menu - View commit details
-
Copy full SHA for 54ebb9d - Browse repository at this point
Copy the full SHA 54ebb9dView commit details -
Configuration menu - View commit details
-
Copy full SHA for e38764d - Browse repository at this point
Copy the full SHA e38764dView commit details -
Configuration menu - View commit details
-
Copy full SHA for dcfc713 - Browse repository at this point
Copy the full SHA dcfc713View commit details -
Configuration menu - View commit details
-
Copy full SHA for 547db4a - Browse repository at this point
Copy the full SHA 547db4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e2d264 - Browse repository at this point
Copy the full SHA 9e2d264View commit details
Commits on Sep 7, 2024
-
Signed-off-by: cuishuang <imcusg@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for be10d56 - Browse repository at this point
Copy the full SHA be10d56View commit details -
Add Suggestions for Misspelled Keywords
This PR detects misspelled keywords using two heuristics: 1. Lowercasing the unexpected identifier. 2. Using edit distance to find a keyword similar to the unexpected identifier. However, it does not detect each and every misspelled keyword to minimize false positives and ambiguities. More details about the implementation can be found in the comments.
Configuration menu - View commit details
-
Copy full SHA for 14e86eb - Browse repository at this point
Copy the full SHA 14e86ebView commit details -
Rollup merge of rust-lang#128871 - onur-ozkan:128180, r=Kobzol
bypass linker configuration and cross target check for specific commands Avoids configuring the linker and checking cross-target-specific tools unless necessary. Resolves rust-lang#128180 cc `@ChrisDenton`
Configuration menu - View commit details
-
Copy full SHA for 5a2ebb5 - Browse repository at this point
Copy the full SHA 5a2ebb5View commit details -
Rollup merge of rust-lang#129468 - Rajveer100:hack-to-avoid-function-…
…merging, r=Mark-Simulacrum [testsuite][cleanup] Remove all usages of `dont_merge` hack to avoid function merging Resolves rust-lang#129438 The `-Zmerge-functions=disabled` compile flag exists for this purpose.
Configuration menu - View commit details
-
Copy full SHA for adcee23 - Browse repository at this point
Copy the full SHA adcee23View commit details -
Rollup merge of rust-lang#129614 - rawler:patch-1, r=tgross35
Adjust doc comment of Condvar::wait_while The existing phrasing implies that a notification must be received for `wait_while` to return. The phrasing is changed to make no such implication.
Configuration menu - View commit details
-
Copy full SHA for 040be55 - Browse repository at this point
Copy the full SHA 040be55View commit details -
Rollup merge of rust-lang#129840 - GrigorenkoPV:elided-named-lifetime…
…s-suggestion, r=cjgillot Implement suggestions for `elided_named_lifetimes` A follow-up to rust-lang#129207, as per rust-lang#129207 (comment). r? cjgillot I will probably squash this a bit, but later. `@rustbot` label +A-lint
Configuration menu - View commit details
-
Copy full SHA for 41a20dc - Browse repository at this point
Copy the full SHA 41a20dcView commit details -
Rollup merge of rust-lang#129891 - nikic:naked-no-san, r=jackh726
Do not request sanitizers for naked functions Naked functions can only contain inline asm, so any instrumentation inserted by sanitizers is illegal. Don't request it. Fixes rust-lang#129224.
Configuration menu - View commit details
-
Copy full SHA for 6dd07e4 - Browse repository at this point
Copy the full SHA 6dd07e4View commit details -
Rollup merge of rust-lang#129899 - veera-sivarajan:fix-97793-pr-final…
…, r=chenyukang Add Suggestions for Misspelled Keywords Fixes rust-lang#97793 This PR detects misspelled keywords using two heuristics: 1. Lowercasing the unexpected identifier. 2. Using edit distance to find a keyword similar to the unexpected identifier. However, it does not detect each and every misspelled keyword to minimize false positives and ambiguities. More details about the implementation can be found in the comments.
Configuration menu - View commit details
-
Copy full SHA for d6a4298 - Browse repository at this point
Copy the full SHA d6a4298View commit details -
Rollup merge of rust-lang#129940 - liushuyu:s390x-target-features, r=…
…RalfJung s390x: Fix a regression related to backchain feature In rust-lang#127506, we introduced a new IBM Z-specific target feature, `backchain`. This particular `target-feature` was available as a function-level attribute in LLVM 17 and below, so some hacks were used to avoid blowing up LLVM when querying the supported LLVM features. This led to an unfortunate regression where `cfg!(target-feature = "backchain")` will always return true. This pull request aims to fix this issue, and a test has been introduced to ensure it will never happen again. Fixes rust-lang#129927. r? `@RalfJung`
Configuration menu - View commit details
-
Copy full SHA for bc2244f - Browse repository at this point
Copy the full SHA bc2244fView commit details -
Rollup merge of rust-lang#129987 - compiler-errors:capture-place-regi…
…on, r=davidtwco Don't store region in `CapturedPlace` It's not necessary anymore, since we erase all regions in writeback anyways.
Configuration menu - View commit details
-
Copy full SHA for 9936179 - Browse repository at this point
Copy the full SHA 9936179View commit details -
Rollup merge of rust-lang#130054 - cuishuang:master, r=chenyukang
Add missing quotation marks
Configuration menu - View commit details
-
Copy full SHA for b09b7da - Browse repository at this point
Copy the full SHA b09b7daView commit details