Change qemu compilation mode back to lto, oops

This commit is contained in:
David Venhoff 2025-09-12 11:55:28 +02:00
parent d7cf79a092
commit bad2725805

View File

@ -145,7 +145,7 @@ fn setup_nyx_tools(out_dir: &Path) -> anyhow::Result<()> {
)?;
// Compile with maximum optimizations
let qemu_compile_mode = "debug_static";
let qemu_compile_mode = "lto";
shell(
qemu_path,
&format!("bash compile_qemu_nyx.sh {qemu_compile_mode}"),