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

Commit b917bf8

Browse files
rbradfordandreeaflorescu
authored andcommitted
misc: Drop x86 (32-bit support)
Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
1 parent 00b0f29 commit b917bf8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* system_event has been made into a new union
66
- The x86 module has been renamed to x86_64 for consistency (matches the kernel
77
architecture directory name)
8+
- Dropped "x86" (32-bit) x86 support
89

910
## [0.6.0]
1011

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Rust FFI bindings to KVM, generated using
66
[bindgen](https://crates.io/crates/bindgen). It currently has support for the
77
following target architectures:
8-
- x86
98
- x86_64
109
- arm
1110
- arm64

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#[cfg(feature = "fam-wrappers")]
1212
extern crate vmm_sys_util;
1313

14-
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
14+
#[cfg(target_arch = "x86_64")]
1515
mod x86_64;
16-
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
16+
#[cfg(target_arch = "x86_64")]
1717
pub use self::x86_64::*;
1818

1919
#[cfg(any(target_arch = "aarch", target_arch = "aarch64"))]

0 commit comments

Comments
 (0)