about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Simulacrum <mark.simulacrum@gmail.com>2017-07-22 05:50:55 -0600
committerMark Simulacrum <mark.simulacrum@gmail.com>2017-07-22 05:50:55 -0600
commitd302c189378b2ee057c14589c2a5d5722b9d4933 (patch)
tree6686cab1b9a9ccdf1b836ab6eb32ef8b13d25c30
parent6a67a050c62a14c75a314b498ab6dcf6620b29c7 (diff)
downloadrust-d302c189378b2ee057c14589c2a5d5722b9d4933.tar.gz
rust-d302c189378b2ee057c14589c2a5d5722b9d4933.zip
Fix StartupObject build
-rw-r--r--src/bootstrap/compile.rs2
1 files changed, 1 insertions, 1 deletions
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 @@ impl Step for StartupObjects {
                             .arg("--cfg").arg("stage0")
                             .arg("--target").arg(target)
                             .arg("--emit=obj")
-                            .arg("--o").arg(dst_file)
+                            .arg("-o").arg(dst_file)
                             .arg(src_file));
             }