Add debugging to zig compilation

This commit is contained in:
Felix Schütt
2022-12-30 11:28:34 +01:00
parent cbc0775db6
commit fd4cff1465

View File

@@ -1218,6 +1218,7 @@ fn link_exe_from_dir(
let compilation = cmd
.stdout(std::process::Stdio::inherit())
.stderr(std::process::Stdio::inherit())
.output()
.context(anyhow!("Could not execute `zig`: {cmd:?}"))?;