-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cdylib artifact size boost #45613
Comments
This is a debug build. I’m not surprised at all if it began putting more symbols in the files. |
cc @michaelwoerister is this fixed by one of your #[inline] instantiation fixes? |
@nagisa similar result with release version: on nightly-2017-06-30
latest nightly (rustc 1.23.0-nightly (269cf50 2017-10-28))
Comparing the release output:
still, many rust specific symbols in the latest nightly generated lib, while nightly-2017-06-30 works as expected. |
Nominating. Would be good to track this down, to at least diagnose the cause and add to the release notes. Probably not too high priority... |
Thanks for the report, @king6cong! This looks indeed like a bug. We haven't changed anything in our compilation strategy the would require such a change.
That might have a positive effect here, but since inline instantiation seems to have regressed already at the beginning of this year, something else must be the problem. |
I believe this is all debug information. On Linux tonight's nightly is 3.0MB and |
I tried on Linux (x86_64 Linux 4.12.12-1-ARCH) and reproduced the problem: on nightly-2017-06-30
on latest nightly
Comparing the output on Linux:
similar result for
And we can see many rust specific symbols in the striped lastest nightly version. |
Huh that's odd, I'm not sure what happened before... Now I can reproduce the results you're getting! Somehow this is related to |
Bisection via nightlies points to ae98ebf...15aa15b ( @michaelwoerister I think the change here was that the set of exported symbols doesn't take the crate type as input, so we pessimistically export all symbols as if we were making an rlib, but apparently before we did a better job of internalizing things via the linker I guess? @king6cong is it problematic to split the project into a |
@alexcrichton Great, that works!
For our project, the dylib size dropped from 23M to 9M, a huge difference! |
This looks kind of wrong: rust/src/librustc_trans/back/linker.rs Lines 747 to 755 in 6713736
It does not take the crate type into account when computing the export threshold. |
…bol-threshold, r=alexcrichton Take crate-type into account when generating symbol export lists (linker version scripts) r? @alexcrichton cc rust-lang#45613
#45650 should improve the situation here. @king6cong, could you give it another try with the latest nightly? |
triage: P-medium Discussed in compiler team. @michaelwoerister believes may be fixed, and in any case will pursue. Calling it P-medium because it only affects binary size and only if you use two crate-types at once. |
@michaelwoerister Tested in sysinfo and our project, both worked as expected, great! |
There is still a big size difference on Latest nightly (
DLL size: 2566KB Older nightly (
DLL size: 1111KB After stripping them with |
@rkarp which project is that for? |
I used this repo: https://github.com/rkarp/rust-dll-demo I turned off LTO for the above test, but that didn't seem to change anything besides all generated DLLs (stripped & non-stripped) being smaller overall. With LTO, the old nightly still produces significantly smaller DLLs. When stripped however, the difference is once again almost gone. |
Hello, I find there is a huge boost in artifact size of cdylib library files in recent versions of rust. In our case, the lib doubles its size. I also find similar situations in other projects.
Here are the steps to reproduce (OS: 64bit Mac OS X 10.12.4 16E195):
on nightly-2017-06-30
latest nightly (rustc 1.23.0-nightly (269cf50 2017-10-28))
Comparing the output:
and there are many rust specific symbols in the latest nightly generated lib.
Library size matters, especially on mobile devices such as iOS and Android, definitely eager to figure out the reason :)
The text was updated successfully, but these errors were encountered: