Run-time feature detection for Aarch64 on Windows.

This commit is contained in:
Makoto Kato
2019-11-27 00:15:03 +09:00
committed by gnzlbg
parent 51c3295de1
commit f5783f5193
2 changed files with 58 additions and 0 deletions

View File

@@ -106,6 +106,9 @@ cfg_if! {
mod aarch64;
#[path = "os/freebsd/mod.rs"]
mod os;
} else if #[cfg(all(target_os = "windows", target_arch = "aarch64"))] {
#[path = "os/windows/aarch64.rs"]
mod os;
} else {
#[path = "os/other.rs"]
mod os;