diff options
| author | Tamir Duberstein <tamird@gmail.com> | 2017-11-26 16:43:24 -0500 |
|---|---|---|
| committer | Tamir Duberstein <tamird@gmail.com> | 2017-11-28 18:15:30 -0500 |
| commit | 94d02b896c3feb5e997b95a660e850c7ad8cbe74 (patch) | |
| tree | c7e59882a9451cd6a4c3107946f80a57d1ec8eeb /src/bootstrap/native.rs | |
| parent | 9067d9735a9ef96f64c32ed41c120faa0976c772 (diff) | |
| download | rust-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.rs | 2 |
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"); } } |
