-
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 8 pull requests #129562
Rollup of 8 pull requests #129562
Commits on Aug 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6eaf531 - Browse repository at this point
Copy the full SHA 6eaf531View commit details -
Configuration menu - View commit details
-
Copy full SHA for 58dcd1c - Browse repository at this point
Copy the full SHA 58dcd1cView commit details
Commits on Aug 16, 2024
-
bootstrap: improve error recovery flags to curl
alternative to rust-lang#128459 fixes rust-lang#110178
Configuration menu - View commit details
-
Copy full SHA for 12e6389 - Browse repository at this point
Copy the full SHA 12e6389View commit details
Commits on Aug 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b3ec296 - Browse repository at this point
Copy the full SHA b3ec296View commit details
Commits on Aug 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d1b41f3 - Browse repository at this point
Copy the full SHA d1b41f3View commit details
Commits on Aug 23, 2024
-
handle stage0 cargo and rustc separately
This change allows setting either `build.cargo` or `build.rustc` without requiring both to be set simultaneously, which was not possible previously. To try it, set `build.rustc` without setting `build.cargo`, and try to bootstrap on clean build. Signed-off-by: onur-ozkan <work@onurozkan.dev>
Configuration menu - View commit details
-
Copy full SHA for 5f2cedc - Browse repository at this point
Copy the full SHA 5f2cedcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 69ca95b - Browse repository at this point
Copy the full SHA 69ca95bView commit details
Commits on Aug 24, 2024
-
library: Move unstable API of new_uninit to new features
- `new_zeroed` variants move to `new_zeroed_alloc` - the `write` fn moves to `box_uninit_write` The remainder will be stabilized in upcoming patches, as it was decided to only stabilize `uninit*` and `assume_init`.
Configuration menu - View commit details
-
Copy full SHA for 9ccd7ab - Browse repository at this point
Copy the full SHA 9ccd7abView commit details -
CI: rfl: move to temporary commit
Link: rust-lang#129416 Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Configuration menu - View commit details
-
Copy full SHA for 90b4e17 - Browse repository at this point
Copy the full SHA 90b4e17View commit details -
Configuration menu - View commit details
-
Copy full SHA for c36b563 - Browse repository at this point
Copy the full SHA c36b563View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9033bd - Browse repository at this point
Copy the full SHA b9033bdView commit details -
repr_transparent_external_private_fields: treat `rustc_pub_transparen…
…t` types as local
Configuration menu - View commit details
-
Copy full SHA for 06f2d73 - Browse repository at this point
Copy the full SHA 06f2d73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 300da9a - Browse repository at this point
Copy the full SHA 300da9aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e2763a - Browse repository at this point
Copy the full SHA 3e2763aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ad855fe - Browse repository at this point
Copy the full SHA ad855feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 902264b - Browse repository at this point
Copy the full SHA 902264bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 56adf87 - Browse repository at this point
Copy the full SHA 56adf87View commit details -
Configuration menu - View commit details
-
Copy full SHA for dbf06d2 - Browse repository at this point
Copy the full SHA dbf06d2View commit details
Commits on Aug 25, 2024
-
Rollup merge of rust-lang#129091 - RalfJung:box_as_ptr, r=Amanieu
add Box::as_ptr and Box::as_mut_ptr methods Unstably implements rust-lang/libs-team#355. Tracking issue: rust-lang#129090. r? libs-api
Configuration menu - View commit details
-
Copy full SHA for 39f6079 - Browse repository at this point
Copy the full SHA 39f6079View commit details -
Rollup merge of rust-lang#129134 - lolbinarycat:continue-at, r=Kobzol
bootstrap: improve error recovery flags to curl alternative to rust-lang#128459 fixes rust-lang#110178 r? ```@Kobzol```
Configuration menu - View commit details
-
Copy full SHA for 3d47d24 - Browse repository at this point
Copy the full SHA 3d47d24View commit details -
Rollup merge of rust-lang#129416 - workingjubilee:partial-move-from-s…
…tabilization, r=dtolnay library: Move unstable API of new_uninit to new features - `new_zeroed` variants move to `new_zeroed_alloc` - the `write` fn moves to `box_uninit_write` The remainder will be stabilized in upcoming patches, as it was decided to only stabilize `uninit*` and `assume_init`.
Configuration menu - View commit details
-
Copy full SHA for f380963 - Browse repository at this point
Copy the full SHA f380963View commit details -
Rollup merge of rust-lang#129459 - onur-ozkan:separate-stage0-bins, r…
…=Kobzol handle stage0 `cargo` and `rustc` separately This change allows setting either `build.cargo` or `build.rustc` without requiring both to be set simultaneously, which was not possible previously. To try it, set `build.rustc` without setting `build.cargo`, and try to bootstrap on clean build. Blocker for rust-lang#129152
Configuration menu - View commit details
-
Copy full SHA for 52ea214 - Browse repository at this point
Copy the full SHA 52ea214View commit details -
Rollup merge of rust-lang#129487 - GrigorenkoPV:repr_transparent_exte…
…rnal_private_fields, r=compiler-errors repr_transparent_external_private_fields: special-case some std types Fixes rust-lang#129470 ``@rustbot`` label +A-lint +L-repr_transparent_external_private_fields
Configuration menu - View commit details
-
Copy full SHA for 5545cb7 - Browse repository at this point
Copy the full SHA 5545cb7View commit details -
Rollup merge of rust-lang#129511 - GuillaumeGomez:update-minifier, r=…
…notriddle Update minifier to 0.3.1 It adds support for escaped characters. PR is GuillaumeGomez/minifier-rs#111. r? ```@notriddle```
Configuration menu - View commit details
-
Copy full SHA for 1e42fcb - Browse repository at this point
Copy the full SHA 1e42fcbView commit details -
Rollup merge of rust-lang#129523 - lqd:stable-type-ir, r=compiler-errors
Make `rustc_type_ir` build on stable This PR fixes a handful of issues that appear in `rustc_type_ir` when trying to build the new solver on stable. r? ``@compiler-errors`` ``@bors`` rollup
Configuration menu - View commit details
-
Copy full SHA for 862ba28 - Browse repository at this point
Copy the full SHA 862ba28View commit details -
Rollup merge of rust-lang#129546 - compiler-errors:no-pred-on, r=fee1…
…-dead Get rid of `predicates_defined_on` This is the uncontroversial part of rust-lang#129532. This simply inlines the `predicates_defined_on` into into `predicates_of`. Nothing should change here logically.
Configuration menu - View commit details
-
Copy full SHA for 46dbf09 - Browse repository at this point
Copy the full SHA 46dbf09View commit details