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 8c82e68 commit ec33e72Copy full SHA for ec33e72
src/bin/builder.rs
@@ -95,6 +95,7 @@ fn main() -> anyhow::Result<()> {
95
let build_or_run = if args.run { "run" } else { "build" };
96
let mut cmd = Command::new(env!("CARGO"));
97
cmd.arg(build_or_run).arg("--bin").arg("uefi");
98
+ cmd.arg("--release");
99
cmd.arg("--target").arg("x86_64-unknown-uefi");
100
cmd.arg("--features")
101
.arg(args.features.join(" ") + " uefi_bin");
0 commit comments