diff options
| author | Brian Anderson <banderson@mozilla.com> | 2016-09-08 01:58:00 +0000 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2016-09-30 14:02:51 -0700 |
| commit | 37abec06e502b147b9ebc730030efe10bf235765 (patch) | |
| tree | 855671f848e9c46361080c4597bc9ca0f4a17a01 /src/bootstrap | |
| parent | 10a52d507d984ff6e4a4d5f42fb387db1fe25c11 (diff) | |
| download | rust-37abec06e502b147b9ebc730030efe10bf235765.tar.gz rust-37abec06e502b147b9ebc730030efe10bf235765.zip | |
Tidy
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index 80726951ad8..033cefb8dea 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -975,7 +975,8 @@ impl Build { // than an entry here. let mut base = Vec::new(); - if target != self.config.build && !target.contains("msvc") && !target.contains("emscripten") { + if target != self.config.build && !target.contains("msvc") && + !target.contains("emscripten") { base.push(format!("-Clinker={}", self.cc(target).display())); } return base |
