Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Removing x86_64 restriction #72

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
#[cfg(feature = "fam-wrappers")]
extern crate vmm_sys_util;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
mod x86;
pub mod x86;
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub use self::x86::*;

Expand Down