diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-07-22 05:50:55 -0600 |
|---|---|---|
| committer | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-07-22 05:50:55 -0600 |
| commit | d302c189378b2ee057c14589c2a5d5722b9d4933 (patch) | |
| tree | 6686cab1b9a9ccdf1b836ab6eb32ef8b13d25c30 | |
| parent | 6a67a050c62a14c75a314b498ab6dcf6620b29c7 (diff) | |
| download | rust-d302c189378b2ee057c14589c2a5d5722b9d4933.tar.gz rust-d302c189378b2ee057c14589c2a5d5722b9d4933.zip | |
Fix StartupObject build
| -rw-r--r-- | src/bootstrap/compile.rs | 2 |
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)); } |
