We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d67de8 commit ea517b4Copy full SHA for ea517b4
src/hyperlight_host/build.rs
@@ -90,7 +90,7 @@ fn main() -> Result<()> {
90
// Essentially the kvm and mshv features are ignored on windows as long as you use #[cfg(kvm)] and not #[cfg(feature = "kvm")].
91
// You should never use #[cfg(feature = "kvm")] or #[cfg(feature = "mshv")] in the codebase.
92
cfg_aliases::cfg_aliases! {
93
- gdb: { all(feature = "gdb", debug_assertions, any(feature = "kvm", feature = "mshv2", feature = "mshv3")) },
+ gdb: { all(feature = "gdb", debug_assertions) },
94
kvm: { all(feature = "kvm", target_os = "linux") },
95
mshv: { all(any(feature = "mshv2", feature = "mshv3"), target_os = "linux") },
96
crashdump: { all(feature = "crashdump") },
0 commit comments