diff options
| author | Daniel Paoliello <danpao@microsoft.com> | 2024-05-10 12:41:52 -0700 | 
|---|---|---|
| committer | Daniel Paoliello <danpao@microsoft.com> | 2024-06-05 11:37:21 -0700 | 
| commit | 537f531b4ea648d4be0e53db00a5a6c15745bdac (patch) | |
| tree | 323680b568c306ad6c5f24f3c7ec5b43126d6838 /library/std/src/os/linux/raw.rs | |
| parent | db8aca48129d86b2623e3ac8cbcf2902d4d313ad (diff) | |
| download | rust-537f531b4ea648d4be0e53db00a5a6c15745bdac.tar.gz rust-537f531b4ea648d4be0e53db00a5a6c15745bdac.zip | |
Promote `arm64ec-pc-windows-msvc` to tier 2
Diffstat (limited to 'library/std/src/os/linux/raw.rs')
| -rw-r--r-- | library/std/src/os/linux/raw.rs | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/library/std/src/os/linux/raw.rs b/library/std/src/os/linux/raw.rs index c29dd62bc06..d53674d3c5f 100644 --- a/library/std/src/os/linux/raw.rs +++ b/library/std/src/os/linux/raw.rs @@ -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}; | 
