Skip to content

Commit

Permalink
Rollup merge of rust-lang#126039 - dpaoliello:arm64ecbuild, r=davidtwco
Browse files Browse the repository at this point in the history
Promote `arm64ec-pc-windows-msvc` to tier 2

MCP: <rust-lang/compiler-team#746>

* Update platform support docs
* Add `arm64ec-pc-windows-msvc` as a target to the existing AArch64 Windows build in CI.
* Fix docs build break.
* Add `arm64ec-pc-windows-msvc` to build manifest.

CI build (succeeded, but upload to S3 failed): <https://github.com/rust-lang/rust/actions/runs/9388227822/job/25853013083?pr=126039>
  • Loading branch information
GuillaumeGomez authored Jun 12, 2024
2 parents 209f8c8 + 149a237 commit 956efde
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion std/src/os/linux/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,11 @@ mod arch {
pub use libc::{blkcnt_t, blksize_t, ino_t, nlink_t, off_t, stat, time_t};
}

#[cfg(target_arch = "aarch64")]
#[cfg(any(
target_arch = "aarch64",
// Arm64EC is Windows-only, but docs are always build as Linux, so re-use AArch64 for Arm64EC.
all(doc, target_arch = "arm64ec")
))]
mod arch {
use crate::os::raw::{c_int, c_long};

Expand Down

0 comments on commit 956efde

Please sign in to comment.