From d302c189378b2ee057c14589c2a5d5722b9d4933 Mon Sep 17 00:00:00 2001 From: Mark Simulacrum Date: Sat, 22 Jul 2017 05:50:55 -0600 Subject: [PATCH] Fix StartupObject build --- src/bootstrap/compile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs index ddb2b27d60f..cbe2be2d26a 100644 --- a/src/bootstrap/compile.rs +++ b/src/bootstrap/compile.rs @@ -263,7 +263,7 @@ fn run(self, builder: &Builder) { .arg("--cfg").arg("stage0") .arg("--target").arg(target) .arg("--emit=obj") - .arg("--o").arg(dst_file) + .arg("-o").arg(dst_file) .arg(src_file)); } -- 2.44.0