Skip to content

Commit

Permalink
Promote arm64ec-pc-windows-msvc to tier 2
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaoliello committed Jun 5, 2024
1 parent 1632165 commit 149a237
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 149a237

Please sign in to comment.