virt_kvm/arch.rs
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! This module provides routing for the architecture-specific code.
cfg_if::cfg_if!(
if #[cfg(guest_arch = "x86_64")] {
mod x86_64;
pub use x86_64::*;
} else if #[cfg(guest_arch = "aarch64")] {
mod aarch64;
pub use aarch64::*;
} else {
compile_error!("target_arch is not supported");
}
);