From 7666a650c267a22340007b5f6a1e91b333164704 Mon Sep 17 00:00:00 2001 From: David Venhoff Date: Wed, 10 Sep 2025 16:15:58 +0200 Subject: [PATCH] Revert to lto linking for qemu --- src/nyx.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nyx.rs b/src/nyx.rs index d3d36d3..b98e8b2 100644 --- a/src/nyx.rs +++ b/src/nyx.rs @@ -142,7 +142,7 @@ fn setup_nyx_tools(out_dir: &Path) -> Result<(), io::Error> { )?; // 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}"),