about summary refs log tree commit diff
path: root/src/bootstrap/native.rs
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@gmail.com>2017-11-26 16:43:24 -0500
committerTamir Duberstein <tamird@gmail.com>2017-11-28 18:15:30 -0500
commit94d02b896c3feb5e997b95a660e850c7ad8cbe74 (patch)
treec7e59882a9451cd6a4c3107946f80a57d1ec8eeb /src/bootstrap/native.rs
parent9067d9735a9ef96f64c32ed41c120faa0976c772 (diff)
downloadrust-94d02b896c3feb5e997b95a660e850c7ad8cbe74.tar.gz
rust-94d02b896c3feb5e997b95a660e850c7ad8cbe74.zip
*: strip calls to cc::Build::compile
The documentation states: "The name output should be the name of the
library." and this is already done in more recently-added callers.
Diffstat (limited to 'src/bootstrap/native.rs')
-rw-r--r--src/bootstrap/native.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs
index ac068ebe651..a5408ee381b 100644
--- a/src/bootstrap/native.rs
+++ b/src/bootstrap/native.rs
@@ -316,7 +316,7 @@ impl Step for TestHelpers {
            .warnings(false)
            .debug(false)
            .file(build.src.join("src/rt/rust_test_helpers.c"))
-           .compile("librust_test_helpers.a");
+           .compile("rust_test_helpers");
     }
 }