]> git.lizzy.rs Git - rust.git/commitdiff
auto merge of #20218 : alexcrichton/rust/jemalloc-sections, r=luqmana
authorbors <bors@rust-lang.org>
Fri, 26 Dec 2014 06:31:47 +0000 (06:31 +0000)
committerbors <bors@rust-lang.org>
Fri, 26 Dec 2014 06:31:47 +0000 (06:31 +0000)
It's quite possible that small programs don't use all of jemalloc, and building
with -ffunction-sections and -fdata-sections allows the linker (via
--gc-sections) to strip out all unused code at link time. This decreases the
size of a "hello world" executable for me from 716K to 482K with no measurable
impact on link time. After this patch jemalloc is still the largest portion of
our hello world executables, but this helps cut down on the size at least
somewhat!


Trivial merge