Skip to content

Commit ea517b4

Browse files
dblnzsimongdavies
authored andcommitted
gdb: remove hypervisor check for gdb feature because is supported for all
Signed-off-by: Doru Blânzeanu <[email protected]>
1 parent 1d67de8 commit ea517b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hyperlight_host/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ fn main() -> Result<()> {
9090
// Essentially the kvm and mshv features are ignored on windows as long as you use #[cfg(kvm)] and not #[cfg(feature = "kvm")].
9191
// You should never use #[cfg(feature = "kvm")] or #[cfg(feature = "mshv")] in the codebase.
9292
cfg_aliases::cfg_aliases! {
93-
gdb: { all(feature = "gdb", debug_assertions, any(feature = "kvm", feature = "mshv2", feature = "mshv3")) },
93+
gdb: { all(feature = "gdb", debug_assertions) },
9494
kvm: { all(feature = "kvm", target_os = "linux") },
9595
mshv: { all(any(feature = "mshv2", feature = "mshv3"), target_os = "linux") },
9696
crashdump: { all(feature = "crashdump") },

0 commit comments

Comments
 (0)