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 ef05e9c commit 1f29d22Copy full SHA for 1f29d22
build.rs
@@ -5,6 +5,11 @@ use std::path::{Path, PathBuf};
5
const BOOTLOADER_VERSION: &str = env!("CARGO_PKG_VERSION");
6
7
fn main() {
8
+ #[cfg(not(feature = "uefi"))]
9
+ async fn uefi_main() {}
10
+ #[cfg(not(feature = "bios"))]
11
+ async fn bios_main() {}
12
+
13
block_on((uefi_main(), bios_main()).join());
14
}
15
0 commit comments