Skip to content

Commit

Permalink
Add x86_64 configs
Browse files Browse the repository at this point in the history
  • Loading branch information
kumargu committed Dec 29, 2020
1 parent 1894c39 commit 69eba2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/gdb_server/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use std::net::{TcpListener, TcpStream};

pub use arch;
#[cfg(target_arch = "x86_64")]
pub use arch::x86_64::regs::setup_sregs;
pub use kernel::loader::elf::{Elf64_Phdr, PT_LOAD};
pub use kvm_bindings;
Expand Down
1 change: 1 addition & 0 deletions src/gdb_server/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use std::fmt::{Display, Formatter};
use vm_memory::Bytes;
use vmm_sys_util::errno::Error;

#[cfg(target_arch = "x86_64")]
pub use arch::x86_64::regs::setup_sregs;
pub use kernel::loader::elf::{Elf64_Phdr, PT_LOAD};

Expand Down

0 comments on commit 69eba2c

Please sign in to comment.