1
Fork 0

Promote arm64ec-pc-windows-msvc to tier 2

This commit is contained in:
Daniel Paoliello 2024-05-10 12:41:52 -07:00
parent db8aca4812
commit 537f531b4e
5 changed files with 14 additions and 7 deletions

View file

@ -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};