-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 8 pull requests #121235
Rollup of 8 pull requests #121235
Commits on Feb 14, 2024
-
Previously, we were trying to install all doc files under "share/doc/rust" which caused `rust-installer` tool to create backup files (*.old) due to filename conflicts. With this change, doc files is now installed under "share/doc/{package}", where {package} could be rustc, cargo, clippy, etc. Signed-off-by: onur-ozkan <work@onurozkan.dev>
Configuration menu - View commit details
-
Copy full SHA for 81c068a - Browse repository at this point
Copy the full SHA 81c068aView commit details -
don't use entire sysroot binary path for rustc tarballs
Previously, we used the entire sysroot binary path to prepare rustc tarballs. Since we also copy tool binaries to the sysroot binary path, installing rustc and tools with `x install` results in attempting to install the same binaries more than once. This causes rust-installer to create backup files (*.old) due to file conflicts. This change fixes that. Signed-off-by: onur-ozkan <work@onurozkan.dev>
Configuration menu - View commit details
-
Copy full SHA for e4a15d4 - Browse repository at this point
Copy the full SHA e4a15d4View commit details -
use build.rustc config and skip-stage0-validation flag
This change helps us to bypass downloading the beta compiler in bootstrap tests. Signed-off-by: onur-ozkan <work@onurozkan.dev>
Configuration menu - View commit details
-
Copy full SHA for 0925ff8 - Browse repository at this point
Copy the full SHA 0925ff8View commit details
Commits on Feb 15, 2024
-
errors: only eagerly translate subdiagnostics
Subdiagnostics don't need to be lazily translated, they can always be eagerly translated. Eager translation is slightly more complex as we need to have a `DiagCtxt` available to perform the translation, which involves slightly more threading of that context. This slight increase in complexity should enable later simplifications - like passing `DiagCtxt` into `AddToDiagnostic` and moving Fluent messages into the diagnostic structs rather than having them in separate files (working on that was what led to this change). Signed-off-by: David Wood <david@davidtw.co>
Configuration menu - View commit details
-
Copy full SHA for b80fc5d - Browse repository at this point
Copy the full SHA b80fc5dView commit details
Commits on Feb 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7c2db70 - Browse repository at this point
Copy the full SHA 7c2db70View commit details -
Make
CodegenBackend::join_codegen
infallible.Because they all are, in practice.
Configuration menu - View commit details
-
Copy full SHA for ede9923 - Browse repository at this point
Copy the full SHA ede9923View commit details -
Configuration menu - View commit details
-
Copy full SHA for 228441d - Browse repository at this point
Copy the full SHA 228441dView commit details
Commits on Feb 17, 2024
-
Fix
cfg(target_abi = "sim")
on i386-apple-iosi386-apple-ios is also a simulator target
Configuration menu - View commit details
-
Copy full SHA for dae22a5 - Browse repository at this point
Copy the full SHA dae22a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for d801985 - Browse repository at this point
Copy the full SHA d801985View commit details -
create stamp file for clippy in
Config::download_clippy
Due to missing stamp file, we were downloading (and applying nix patches if enabled) continuously every time `Config::download_clippy` was called. This change fixes that by creating stamp file at the end of the function. Signed-off-by: onur-ozkan <work@onurozkan.dev>
Configuration menu - View commit details
-
Copy full SHA for 3ec7d0a - Browse repository at this point
Copy the full SHA 3ec7d0aView commit details -
Rollup merge of rust-lang#120952 - saethlin:vec-into-iter, r=the8472
Don't use mem::zeroed in vec::IntoIter `mem::zeroed` is not a trivial function. Maybe it was once, but now it involves multiple locals, copies, and an intrinsic that gets monomorphized into a call to `panic_nounwind` for iterators of types like `Vec<&T>`. Of course all that complexity is trivially optimized out, but generating a bunch of IR where we don't need to just so we can optimize it away later is silly.
Configuration menu - View commit details
-
Copy full SHA for 94869a7 - Browse repository at this point
Copy the full SHA 94869a7View commit details -
Rollup merge of rust-lang#121079 - onur-ozkan:install-conflicts, r=al…
…bertlarsan68 distribute tool documentations and avoid file conflicts on `x install` I suggest reading commits one-by-one with the descriptions for more context about the changes. Fixes rust-lang#115213
Configuration menu - View commit details
-
Copy full SHA for 2044d4f - Browse repository at this point
Copy the full SHA 2044d4fView commit details -
Rollup merge of rust-lang#121085 - davidtwco:always-eager-diagnostics…
…, r=nnethercote errors: only eagerly translate subdiagnostics Subdiagnostics don't need to be lazily translated, they can always be eagerly translated. Eager translation is slightly more complex as we need to have a `DiagCtxt` available to perform the translation, which involves slightly more threading of that context. This slight increase in complexity should enable later simplifications - like passing `DiagCtxt` into `AddToDiagnostic` and moving Fluent messages into the diagnostic structs rather than having them in separate files (working on that was what led to this change). r? ``@nnethercote``
Configuration menu - View commit details
-
Copy full SHA for f8eae46 - Browse repository at this point
Copy the full SHA f8eae46View commit details -
Rollup merge of rust-lang#121091 - onur-ozkan:bypass-stage0-download-…
…in-tests, r=albertlarsan68 use build.rustc config and skip-stage0-validation flag This change helps us to bypass downloading the beta compiler in bootstrap tests. more context: https://rust-lang.zulipchat.com/#narrow/stream/326414-t-infra.2Fbootstrap/topic/tests.20causing.20downloads.20of.20native.20rustc.20for.20other.20platforms/near/421467975
Configuration menu - View commit details
-
Copy full SHA for f52ba2e - Browse repository at this point
Copy the full SHA f52ba2eView commit details -
Rollup merge of rust-lang#121193 - compiler-errors:coherence-fulfillm…
…ent, r=lcnr Use fulfillment in next trait solver coherence Use fulfillment in the new trait solver's `impl_intersection_has_impossible_obligation` routine. This means that inference that falls out of processing other obligations can influence whether we can determine if an obligation is impossible to satisfy. See the committed test. This should be completely sound, since evaluation and fulfillment both respect intercrate mode equally. We run the risk of breaking coherence later if we were to change the rules of fulfillment and/or inference during coherence, but this is a problem which affects evaluation, as nested obligations from a trait goal are processed together and can influence each other in the same way. r? lcnr cc rust-lang#114862 Also changed obligationctxt -> fulfillmentctxt because it feels kind of redundant to use an ocx here. I don't really care enough and can change it back if it really matters much.
Configuration menu - View commit details
-
Copy full SHA for 6cbebe5 - Browse repository at this point
Copy the full SHA 6cbebe5View commit details -
Rollup merge of rust-lang#121209 - nnethercote:infallible-join_codege…
…n, r=bjorn3 Make `CodegenBackend::join_codegen` infallible. Because they all are, in practice. r? ``@bjorn3``
Configuration menu - View commit details
-
Copy full SHA for c625129 - Browse repository at this point
Copy the full SHA c625129View commit details -
Rollup merge of rust-lang#121210 - madsmtm:fix-target-abi-i386-apple-…
…ios, r=workingjubilee Fix `cfg(target_abi = "sim")` on `i386-apple-ios` Since rust-lang#80970 is stabilizing, I went and had a look, and found that the result was wrong on `i386-apple-ios`. r? rust-lang/macos
Configuration menu - View commit details
-
Copy full SHA for eeae3ec - Browse repository at this point
Copy the full SHA eeae3ecView commit details -
Rollup merge of rust-lang#121228 - onur-ozkan:fix-clippy-stamp-bug, r…
…=albertlarsan68 create stamp file for clippy Due to missing stamp file, we were downloading (and applying nix patches if enabled) continuously every time `Config::download_clippy` was called. This change fixes that by creating stamp file at the end of the function. Fixes rust-lang#119442
Configuration menu - View commit details
-
Copy full SHA for 0739ce5 - Browse repository at this point
Copy the full SHA 0739ce5View commit details