virt_kvm/
arch.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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");
    }
);