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/libprofiler_builtins | |
| 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/libprofiler_builtins')
| -rw-r--r-- | src/libprofiler_builtins/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libprofiler_builtins/build.rs b/src/libprofiler_builtins/build.rs index 8508b2dae2c..dd88dd933f6 100644 --- a/src/libprofiler_builtins/build.rs +++ b/src/libprofiler_builtins/build.rs @@ -56,5 +56,5 @@ fn main() { cfg.file(Path::new("../libcompiler_builtins/compiler-rt/lib/profile").join(src)); } - cfg.compile("libprofiler-rt.a"); + cfg.compile("profiler-rt"); } |
