Skip to content
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

Add arm64ec-pc-windows-msvc target #119199

Merged
merged 1 commit into from Mar 7, 2024
Merged

Conversation

dpaoliello
Copy link
Contributor

@dpaoliello dpaoliello commented Dec 21, 2023

Introduces the arm64ec-pc-windows-msvc target for building Arm64EC ("Emulation Compatible") binaries for Windows.

For more information about Arm64EC see https://learn.microsoft.com/en-us/windows/arm/arm64ec.


Release Notes

Adding support for Arm64EC does not need to be added to the release notes, however this change bumps the version of cc-rs that Rust is using from 1.0.79 to 1.0.90, which affects how the Rust compiler finds the linker to use for MSVC targets:


Tier 3 policy:

A tier 3 target must have a designated developer or developers (the "target maintainers") on record to be CCed when issues arise regarding the target. (The mechanism to track and CC such developers may evolve over time.)

I will be the maintainer for this target.

Targets must use naming consistent with any existing targets; for instance, a target for the same CPU or OS as an existing Rust target should use the same name for that CPU or OS. Targets should normally use the same names and naming conventions as used elsewhere in the broader ecosystem beyond Rust (such as in other toolchains), unless they have a very good reason to diverge. Changing the name of a target can be highly disruptive, especially once the target reaches a higher tier, so getting the name right is important even for a tier 3 target.

Target uses the arm64ec architecture to match LLVM and MSVC, and the -pc-windows-msvc suffix to indicate that it targets Windows via the MSVC environment.

Target names should not introduce undue confusion or ambiguity unless absolutely necessary to maintain ecosystem compatibility. For example, if the name of the target makes people extremely likely to form incorrect beliefs about what it targets, the name should be changed or augmented to disambiguate it.

Target name exactly specifies the type of code that will be produced.

If possible, use only letters, numbers, dashes and underscores for the name. Periods (.) are known to cause issues in Cargo.

Done.

Tier 3 targets may have unusual requirements to build or use, but must not create legal issues or impose onerous legal terms for the Rust project or for Rust developers or users.

The target must not introduce license incompatibilities.

Uses the same dependencies, requirements and licensing as the other *-pc-windows-msvc targets.

Anything added to the Rust repository must be under the standard Rust license (MIT OR Apache-2.0).

Understood.

The target must not cause the Rust tools or libraries built for any other host (even when supporting cross-compilation to the target) to depend on any new dependency less permissive than the Rust licensing policy. This applies whether the dependency is a Rust crate that would require adding new license exceptions (as specified by the tidy tool in the rust-lang/rust repository), or whether the dependency is a native library or binary. In other words, the introduction of the target must not cause a user installing or running a version of Rust or the Rust tools to be subject to any new license requirements.

Compiling, linking, and emitting functional binaries, libraries, or other code for the target (whether hosted on the target itself or cross-compiling from another target) must not depend on proprietary (non-FOSS) libraries. Host tools built for the target itself may depend on the ordinary runtime libraries supplied by the platform and commonly used by other applications built for the target, but those libraries must not be required for code generation for the target; cross-compilation to the target must not require such libraries at all. For instance, rustc built for the target may depend on a common proprietary C runtime library or console output library, but must not depend on a proprietary code generation library or code optimization library. Rust's license permits such combinations, but the Rust project has no interest in maintaining such combinations within the scope of Rust itself, even at tier 3.

"onerous" here is an intentionally subjective term. At a minimum, "onerous" legal/licensing terms include but are not limited to: non-disclosure requirements, non-compete requirements, contributor license agreements (CLAs) or equivalent, "non-commercial"/"research-only"/etc terms, requirements conditional on the employer or employment of any particular Rust developers, revocable terms, any requirements that create liability for the Rust project or its developers or users, or any requirements that adversely affect the livelihood or prospects of the Rust project or its developers or users.

Uses the same dependencies, requirements and licensing as the other *-pc-windows-msvc targets.

Neither this policy nor any decisions made regarding targets shall create any binding agreement or estoppel by any party. If any member of an approving Rust team serves as one of the maintainers of a target, or has any legal or employment requirement (explicit or implicit) that might affect their decisions regarding a target, they must recuse themselves from any approval decisions regarding the target's tier status, though they may otherwise participate in discussions.

This requirement does not prevent part or all of this policy from being cited in an explicit contract or work agreement (e.g. to implement or maintain support for a target). This requirement exists to ensure that a developer or team responsible for reviewing and approving a target does not face any legal threats or obligations that would prevent them from freely exercising their judgment in such approval, even if such judgment involves subjective matters or goes beyond the letter of these requirements.

Understood, I am not a member of the Rust team.

Tier 3 targets should attempt to implement as much of the standard libraries as possible and appropriate (core for most targets, alloc for targets that can support dynamic memory allocation, std for targets with an operating system or equivalent layer of system-provided functionality), but may leave some code unimplemented (either unavailable or stubbed out as appropriate), whether because the target makes it impossible to implement or challenging to implement. The authors of pull requests are not obligated to avoid calling any portions of the standard library on the basis of a tier 3 target not implementing those portions.

Both core and alloc are supported.

Support for std depends on making changes to the standard library, stdarch and backtrace which cannot be done yet as they require fixes coming in LLVM 18.

The target must provide documentation for the Rust community explaining how to build for the target, using cross-compilation if possible. If the target supports running binaries, or running tests (even if they do not pass), the documentation must explain how to run such binaries or tests for the target, using emulation if possible or dedicated hardware if necessary.

Documentation is provided in src/doc/rustc/src/platform-support/arm64ec-pc-windows-msvc.md

Tier 3 targets must not impose burden on the authors of pull requests, or other developers in the community, to maintain the target. In particular, do not post comments (automated or manual) on a PR that derail or suggest a block on the PR based on a tier 3 target. Do not send automated messages or notifications (via any medium, including via @) to a PR author or others involved with a PR regarding a tier 3 target, unless they have opted into such messages.

Backlinks such as those generated by the issue/PR tracker when linking to an issue or PR are not considered a violation of this policy, within reason. However, such messages (even on a separate repository) must not generate notifications to anyone involved with a PR who has not requested such notifications.

Patches adding or updating tier 3 targets must not break any existing tier 2 or tier 1 target, and must not knowingly break another tier 3 target without approval of either the compiler team or the maintainers of the other tier 3 target.

In particular, this may come up when working on closely related targets, such as variations of the same architecture with different features. Avoid introducing unconditional uses of features that another variation of the target may not have; use conditional compilation or runtime detection, as appropriate, to let each target run code supported by that target.

Understood.

@rustbot
Copy link
Collaborator

rustbot commented Dec 21, 2023

r? @b-naber

(rustbot has picked a reviewer for you, use r? to override)

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. 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. labels Dec 21, 2023
@rustbot
Copy link
Collaborator

rustbot commented Dec 21, 2023

These commits modify compiler targets.
(See the Target Tier Policy.)

These commits modify the Cargo.lock file. Unintentional changes to Cargo.lock can be introduced when switching branches and rebasing PRs.

If this was unintentional then you should revert the changes before this PR is merged.
Otherwise, you can ignore this comment.

Cargo.toml Outdated Show resolved Hide resolved
Cargo.toml Outdated Show resolved Hide resolved
@dpaoliello
Copy link
Contributor Author

r? compiler-team

@rustbot rustbot assigned petrochenkov and unassigned b-naber Dec 21, 2023
@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@Urgau
Copy link
Contributor

Urgau commented Dec 21, 2023

Support for std dependends on making changes to the standard library, stdarch and backtrace which cannot be done yet as the bootstrapping compiler raises a warning ("unexpected cfg condition value") for target_arch = "arm64ec".

You can add "extra check-cfg" values with the EXTRA_CHECK_CFG bootstrap list, something like this should do it:

-    (Some(Mode::Std), "target_arch", Some(&["spirv", "nvptx", "xtensa"])),
+    // #[cfg(bootstrap)] arm64ec
+    (Some(Mode::Std), "target_arch", Some(&["spirv", "nvptx", "xtensa", "arm64ec"])),

You will also need to bless the tests output of some UI tests (./x.py test --stage 1 tests/ui/ --bless)

@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@dpaoliello
Copy link
Contributor Author

FYI, CI failures are caused by rust-lang/cc-rs#913

@rust-log-analyzer

This comment has been minimized.

@petrochenkov
Copy link
Contributor

Marking as blocked on the PRs linked above (https://github.com/rust-lang/rust/pull/119199/files#r1434435847, https://github.com/rust-lang/rust/pull/119199/files#r1434436282).
@rustbot blocked

@rustbot rustbot added S-blocked Status: Marked as blocked ❌ on something else such as an RFC or other implementation work. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Dec 22, 2023
@rustbot
Copy link
Collaborator

rustbot commented Jan 3, 2024

Some changes occurred in src/tools/cargo

cc @ehuss

@bors bors 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 Mar 7, 2024
@workingjubilee
Copy link
Contributor

workingjubilee commented Mar 7, 2024

cc-rs has had 11 patch versions since it was last bumped and its functionality or lack thereof causes issues for toolchain support for platforms, not just this one, therefore

@bors p=11 rollup=never

@bors
Copy link
Contributor

bors commented Mar 7, 2024

⌛ Testing commit a6a556c with merge 9c3ad80...

@bors
Copy link
Contributor

bors commented Mar 7, 2024

☀️ Test successful - checks-actions
Approved by: petrochenkov
Pushing 9c3ad80 to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Mar 7, 2024
@bors bors merged commit 9c3ad80 into rust-lang:master Mar 7, 2024
12 checks passed
@rustbot rustbot added this to the 1.78.0 milestone Mar 7, 2024
@dpaoliello dpaoliello deleted the arm64ec branch March 7, 2024 22:42
@bors bors mentioned this pull request Mar 7, 2024
@rust-timer
Copy link
Collaborator

Finished benchmarking commit (9c3ad80): comparison URL.

Overall result: no relevant changes - no action needed

@rustbot label: -perf-regression

Instruction count

This benchmark run did not return any relevant results for this metric.

Max RSS (memory usage)

Results

This 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.

mean range count
Regressions ❌
(primary)
2.6% [2.6%, 2.6%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 2.6% [2.6%, 2.6%] 1

Cycles

This benchmark run did not return any relevant results for this metric.

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 647.318s -> 647.485s (0.03%)
Artifact size: 172.63 MiB -> 172.63 MiB (-0.00%)

@Wyvern
Copy link

Wyvern commented Mar 8, 2024

Try it build with arm64ec-pc-windows-msvc target but got lots of errors like below:

error[: unresolved import `crate::sys::common::alloc::MIN_ALIGN`
  --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\sys\pal\windows\alloc.rs:8:51
   |
8  | use crate::sys::common::alloc::{realloc_fallback, MIN_ALIGN};
   |                                                   ^^^^^^^^^ no `MIN_ALIGN` in `sys::pal::common::alloc`
   |
note: found an item that was configured out
  --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\sys\pal\common\alloc.rs:22:11
   |
22 | pub const MIN_ALIGN: usize = 8;
   |           ^^^^^^^^^
note: found an item that was configured out
  --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\sys\pal\common\alloc.rs:34:11
   |
34 | pub const MIN_ALIGN: usize = 16;
   |           ^^^^^^^^^
note: found an item that was configured out
  --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\sys\pal\common\alloc.rs:40:11
   |
40 | pub const MIN_ALIGN: usize = 4;
   |           ^^^^^^^^^

error[: unresolved import `self::dbghelp::trace`
   --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\..\..\backtrace\src\backtrace\mod.rs:187:13
    |
187 |         use self::dbghelp::trace as trace_imp;
    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `trace` in `backtrace_rs::backtrace::dbghelp`
    |
note: found an item that was configured out
   --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\..\..\backtrace\src\backtrace\dbghelp.rs:127:15
    |
127 | pub unsafe fn trace(cb: &mut dyn FnMut(&super::Frame) -> bool) {
    |               ^^^^^
note: found an item that was configured out
   --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\..\..\backtrace\src\backtrace\dbghelp.rs:174:15
    |
174 | pub unsafe fn trace(cb: &mut dyn FnMut(&super::Frame) -> bool) {
    |               ^^^^^

error[: cannot find type `CONTEXT` in this scope
   --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\sys\pal\windows\c.rs:499:33
    |
499 |         pub ContextRecord: *mut CONTEXT,
    |                                 ^^^^^^^ not found in this scope

error[: cannot find type `WSADATA` in this scope
   --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\sys\pal\windows\c.rs:507:63
    |
507 |     pub fn WSAStartup(wversionrequested: u16, lpwsadata: *mut WSADATA) -> i32;
    |                                                               ^^^^^^^ not found in this scope

error[: cannot find type `WSADATA` in module `c`
   --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\sys\pal\windows\net.rs:38:26
    |
38  |         let mut data: c::WSADATA = mem::zeroed();
    |                          ^^^^^^^ not found in `c`
    |
note: found an item that was configured out
   --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\sys\pal\windows\c.rs:511:12
    |
511 | pub struct WSADATA {
    |            ^^^^^^^
    = note: the item is gated behind the `arm` feature

error[: cannot find type `CONTEXT` in this scope
   --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\..\..\backtrace\src\backtrace\dbghelp.rs:61:18
    |
61  | struct MyContext(CONTEXT);
    |                  ^^^^^^^ help: a type alias with a similar name exists: `PCONTEXT`
    |
   ::: /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\..\..\backtrace\src\windows.rs:152:9
    |
152 |         pub type $name = $ty;
    |         --------------------- similarly named type alias `PCONTEXT` defined here

error[: cannot find type `CONTEXT` in this scope
   --> /rustc/9c3ad802d9b9633d60d3a74668eb1be819212d34\library\std\src\..\..\backtrace\src\windows.rs:388:30
    |
152 |         pub type $name = $ty;
    |         --------------------- similarly named type alias `PCONTEXT` defined here
...
388 |     pub type PCONTEXT = *mut CONTEXT;
    |                              ^^^^^^^ help: a type alias with a similar name exists: `PCONTEXT`

any suggestions...?

@dpaoliello
Copy link
Contributor Author

dpaoliello commented Mar 8, 2024

Try it build with arm64ec-pc-windows-msvc target but got lots of errors like below:

...

any suggestions...?

I'm working on standard library support - note the links above to PRs to compiler-builtins, portable-simd and backtrace. I should have the PR for stdarch out today. Once those are complete, I will be able to submit another PR for the standard library itself (that brings in all of those plus more).

But, for now, this is a no_std target only...

workingjubilee pushed a commit to rust-lang/backtrace-rs that referenced this pull request Mar 8, 2024
The Rust Compiler has recently added support for ARM64EC
(rust-lang/rust#119199), so this change adds support for ARM64EC to
backtrace by using the same OS structures and functions as x64 NOT
AArch64: this is because an ARM64EC binary runs within an x64 process
(on an AArch64 machine), thus all the OS binaries it is interfacing
with expose the x64 API.
@dpaoliello
Copy link
Contributor Author

dpaoliello commented Mar 8, 2024

@rustbot label +relnotes

@NobodyXu @ChrisDenton @thomcc @Amanieu - I've tried to find changes to cc-rs that may be relevant to users of the Rust toolchain and summarize them, but I'd appreciate it if you all could check if there's anything that I've missed or misrepresented.

This change bumps the version of cc-rs that Rust is using from 1.0.79 to 1.0.90, which affects how the Rust compiler finds the linker to use for MSVC targets:

@rustbot rustbot added the relnotes Marks issues that should be documented in the release notes of the next release. label Mar 8, 2024
@workingjubilee
Copy link
Contributor

@dpaoliello Most users of the toolchain don't have to worry about cc-rs changes, because they are not building rustc but using one of its distributed toolchains. Thus those who are only building rust code for, say, wasm32-unknown-unknown, and thus using their current host, don't have to worry about this at all. However those building rustc for a tier 3 host obviously are impacted!

I think noting somewhat abstractly "we updated one of our major build-time dependencies for rustc, this will only affect you if you're building a fresh compiler" and then focusing on the ones most likely to be a bother for a software distribution's maintainer is probably best.

@dpaoliello
Copy link
Contributor Author

@dpaoliello Most users of the toolchain don't have to worry about cc-rs changes, because they are not building rustc but using one of its distributed toolchains. Thus those who are only building rust code for, say, wasm32-unknown-unknown, and thus using their current host, don't have to worry about this at all. However those building rustc for a tier 3 host obviously are impacted!

I think noting somewhat abstractly "we updated one of our major build-time dependencies for rustc, this will only affect you if you're building a fresh compiler" and then focusing on the ones most likely to be a bother for a software distribution's maintainer is probably best.

My understanding is that rustc uses cc-rs to find the linker it invokes, so any change to how cc-rs finds the toolchain or configures the linker may affect a user of rustc as well.

@workingjubilee
Copy link
Contributor

@dpaoliello Oh, you are right, but apparently only when compiling for Windows:

let msvc_tool = windows_registry::find_tool(sess.opts.target_triple.triple(), "link.exe");

Everything else is hand-rolled, it seems.

@ChrisDenton
Copy link
Contributor

Yes, this tends to be much harder to do on other OSes (also somewhat less necessary), whereas Windows has a COM API installed by Visual Studio which can be queried.

@dpaoliello
Copy link
Contributor Author

@dpaoliello Oh, you are right, but apparently only when compiling for Windows:

let msvc_tool = windows_registry::find_tool(sess.opts.target_triple.triple(), "link.exe");

Everything else is hand-rolled, it seems.

Ah, thanks, didn't realize it was MSVC-only - updated my comment to match and filtered to only the MSVC relevant changes.

bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 18, 2024
…mez,ChrisDenton,wesleywiser

Add support for Arm64EC to the Standard Library

Adds the final pieces so that the standard library can be built for arm64ec-pc-windows-msvc (initially added in rust-lang#119199)

* Bumps `windows-sys` to 0.56.0, which adds support for Arm64EC.
* Correctly set the `isEC` parameter for LLVM's `writeArchive` function.
* Add `#![feature(asm_experimental_arch)]` to library crates where Arm64EC inline assembly is used, as it is currently unstable.
wip-sync pushed a commit to NetBSD/pkgsrc-wip that referenced this pull request May 4, 2024
Pkgsrc changes:
 * Adapt checksums and patches, some have beene intregrated upstream.

Upstream chnages:

Version 1.78.0 (2024-05-02)
===========================

Language
--------
- [Stabilize `#[cfg(target_abi = ...)]`]
  (rust-lang/rust#119590)
- [Stabilize the `#[diagnostic]` namespace and
  `#[diagnostic::on_unimplemented]` attribute]
  (rust-lang/rust#119888)
- [Make async-fn-in-trait implementable with concrete signatures]
  (rust-lang/rust#120103)
- [Make matching on NaN a hard error, and remove the rest of
  `illegal_floating_point_literal_pattern`]
  (rust-lang/rust#116284)
- [static mut: allow mutable reference to arbitrary types, not just
  slices and arrays]
  (rust-lang/rust#117614)
- [Extend `invalid_reference_casting` to include references casting
  to bigger memory layout]
  (rust-lang/rust#118983)
- [Add `non_contiguous_range_endpoints` lint for singleton gaps
  after exclusive ranges]
  (rust-lang/rust#118879)
- [Add `wasm_c_abi` lint for use of older wasm-bindgen versions]
  (rust-lang/rust#117918)
  This lint currently only works when using Cargo.
- [Update `indirect_structural_match` and `pointer_structural_match`
  lints to match RFC]
  (rust-lang/rust#120423)
- [Make non-`PartialEq`-typed consts as patterns a hard error]
  (rust-lang/rust#120805)
- [Split `refining_impl_trait` lint into `_reachable`, `_internal` variants]
  (rust-lang/rust#121720)
- [Remove unnecessary type inference when using associated types
  inside of higher ranked `where`-bounds]
  (rust-lang/rust#119849)
- [Weaken eager detection of cyclic types during type inference]
  (rust-lang/rust#119989)
- [`trait Trait: Auto {}`: allow upcasting from `dyn Trait` to `dyn Auto`]
  (rust-lang/rust#119338)

Compiler
--------

- [Made `INVALID_DOC_ATTRIBUTES` lint deny by default]
  (rust-lang/rust#111505)
- [Increase accuracy of redundant `use` checking]
  (rust-lang/rust#117772)
- [Suggest moving definition if non-found macro_rules! is defined later]
  (rust-lang/rust#121130)
- [Lower transmutes from int to pointer type as gep on null]
  (rust-lang/rust#121282)

Target changes:

- [Windows tier 1 targets now require at least Windows 10]
  (rust-lang/rust#115141)
 - [Enable CMPXCHG16B, SSE3, SAHF/LAHF and 128-bit Atomics in tier 1 Windows]
  (rust-lang/rust#120820)
- [Add `wasm32-wasip1` tier 2 (without host tools) target]
  (rust-lang/rust#120468)
- [Add `wasm32-wasip2` tier 3 target]
  (rust-lang/rust#119616)
- [Rename `wasm32-wasi-preview1-threads` to `wasm32-wasip1-threads`]
  (rust-lang/rust#122170)
- [Add `arm64ec-pc-windows-msvc` tier 3 target]
  (rust-lang/rust#119199)
- [Add `armv8r-none-eabihf` tier 3 target for the Cortex-R52]
  (rust-lang/rust#110482)
- [Add `loongarch64-unknown-linux-musl` tier 3 target]
  (rust-lang/rust#121832)

Refer to Rust's [platform support page][platform-support-doc]
for more information on Rust's tiered platform support.

Libraries
---------

- [Bump Unicode to version 15.1.0, regenerate tables]
  (rust-lang/rust#120777)
- [Make align_offset, align_to well-behaved in all cases]
  (rust-lang/rust#121201)
- [PartialEq, PartialOrd: document expectations for transitive chains]
  (rust-lang/rust#115386)
- [Optimize away poison guards when std is built with panic=abort]
  (rust-lang/rust#100603)
- [Replace pthread `RwLock` with custom implementation]
  (rust-lang/rust#110211)
- [Implement unwind safety for Condvar on all platforms]
  (rust-lang/rust#121768)
- [Add ASCII fast-path for `char::is_grapheme_extended`]
  (rust-lang/rust#121138)

Stabilized APIs
---------------

- [`impl Read for &Stdin`]
  (https://doc.rust-lang.org/stable/std/io/struct.Stdin.html#impl-Read-for-%26Stdin)
- [Accept non `'static` lifetimes for several `std::error::Error`
  related implementations] (rust-lang/rust#113833)
- [Make `impl<Fd: AsFd>` impl take `?Sized`]
  (rust-lang/rust#114655)
- [`impl From<TryReserveError> for io::Error`]
  (https://doc.rust-lang.org/stable/std/io/struct.Error.html#impl-From%3CTryReserveError%3E-for-Error)

These APIs are now stable in const contexts:

- [`Barrier::new()`]
  (https://doc.rust-lang.org/stable/std/sync/struct.Barrier.html#method.new)

Cargo
-----

- [Stabilize lockfile v4](rust-lang/cargo#12852)
- [Respect `rust-version` when generating lockfile]
  (rust-lang/cargo#12861)
- [Control `--charset` via auto-detecting config value]
  (rust-lang/cargo#13337)
- [Support `target.<triple>.rustdocflags` officially]
  (rust-lang/cargo#13197)
- [Stabilize global cache data tracking]
  (rust-lang/cargo#13492)

Misc
----

- [rustdoc: add `--test-builder-wrapper` arg to support wrappers
  such as RUSTC_WRAPPER when building doctests]
  (rust-lang/rust#114651)

Compatibility Notes
-------------------

- [Many unsafe precondition checks now run for user code with debug
  assertions enabled] (rust-lang/rust#120594)
  This change helps users catch undefined behavior in their code,
  though the details of how much is checked are generally not
  stable.
- [riscv only supports split_debuginfo=off for now]
  (rust-lang/rust#120518)
- [Consistently check bounds on hidden types of `impl Trait`]
  (rust-lang/rust#121679)
- [Change equality of higher ranked types to not rely on subtyping]
  (rust-lang/rust#118247)
- [When called, additionally check bounds on normalized function return type]
  (rust-lang/rust#118882)
- [Expand coverage for `arithmetic_overflow` lint]
  (rust-lang/rust#119432)

Internal Changes
----------------

These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.

- [Update to LLVM 18](rust-lang/rust#120055)
- [Build `rustc` with 1CGU on `x86_64-pc-windows-msvc`]
  (rust-lang/rust#112267)
- [Build `rustc` with 1CGU on `x86_64-apple-darwin`]
  (rust-lang/rust#112268)
- [Introduce `run-make` V2 infrastructure, a `run_make_support`
  library and port over 2 tests as example]
  (rust-lang/rust#113026)
- [Windows: Implement condvar, mutex and rwlock using futex]
  (rust-lang/rust#121956)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
merged-by-bors This PR was explicitly merged by bors. relnotes Marks issues that should be documented in the release notes of the next release. S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. 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.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet