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/liballoc_jemalloc | |
| 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/liballoc_jemalloc')
| -rw-r--r-- | src/liballoc_jemalloc/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc_jemalloc/build.rs b/src/liballoc_jemalloc/build.rs index a41a04d7cd4..de5006ad396 100644 --- a/src/liballoc_jemalloc/build.rs +++ b/src/liballoc_jemalloc/build.rs @@ -140,6 +140,6 @@ fn main() { cc::Build::new() .flag("-fvisibility=hidden") .file("pthread_atfork_dummy.c") - .compile("libpthread_atfork_dummy.a"); + .compile("pthread_atfork_dummy"); } } |
