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

Commit 06b6fb5

Browse files
author
Jonathan Woollett-Light
committed
Removing CPUID x86_64 restriction
Signed-off-by: Jonathan Woollett-Light <[email protected]>
1 parent bdfbf7f commit 06b6fb5

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed
File renamed without changes.

src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#![allow(non_camel_case_types)]
88
#![allow(non_snake_case)]
99

10+
#[cfg(feature = "fam-wrappers")]
11+
pub mod cpuid;
12+
1013
#[macro_use]
1114
#[cfg(feature = "fam-wrappers")]
1215
extern crate vmm_sys_util;

src/x86/mod.rs

-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,5 @@
55
// Keep this until https://github.com/rust-lang/rust-bindgen/issues/1651 is fixed.
66
#[cfg_attr(test, allow(deref_nullptr))]
77
pub mod bindings;
8-
#[cfg(feature = "fam-wrappers")]
9-
pub mod fam_wrappers;
108

119
pub use self::bindings::*;
12-
#[cfg(feature = "fam-wrappers")]
13-
pub use self::fam_wrappers::*;

0 commit comments

Comments
 (0)