diff --git a/crates/haku2/build.rs b/crates/haku2/build.rs index 8d54495..4431e12 100644 --- a/crates/haku2/build.rs +++ b/crates/haku2/build.rs @@ -28,7 +28,10 @@ fn main() -> Result<(), Box> { let target = match &target[..] { "x86_64-unknown-linux-gnu" => "x86_64-linux-gnu", - _ => &target, + other => { + eprintln!("warning: unknown target {other:?}"); + &target + } }; let output = Command::new("zig")