-
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
rustc: Pass -dead_strip on OSX #13829
Conversation
This flag to the linker asks it to strip away all dead code during linking, as well as dead data. This reduces the size of hello world from 1.7MB to 458K on my system (70% reduction). I have not seen this impact link times negatively, and I have seen this pass 'make check' successfully. I am slightly wary of adding this option, but the benefits are so huge tha I think we should work hard to work around any issues rather than avoid using the flag entirely.
Can you add |
We gain no benefit from We can work around stripping out metadata (or we could only run it on executables). I think the benefits will be worth the cost of working around the flag (if we get some big benefits) |
Passing |
I have separate analysis for -ffunction-sections in #13833. Adding that is less clear cut to me. This is clear cut in that I can't find a downside to running |
I don't think we should enable |
I think you may have meant to comment on the other PR, this has nothing to do with |
This flag to the linker asks it to strip away all dead code during linking, as well as dead data. This reduces the size of hello world from 1.7MB to 458K on my system (70% reduction). I have not seen this impact link times negatively, and I have seen this pass 'make check' successfully. I am slightly wary of adding this option, but the benefits are so huge tha I think we should work hard to work around any issues rather than avoid using the flag entirely.
Clippy-fix explicit auto-deref Seems like these can be safely fixed. With one, I was particularly surprised -- `Some(pats) => &**pats,` in body.rs? ``` cargo clippy --fix -- -A clippy::all -D clippy::explicit_auto_deref ```
This flag to the linker asks it to strip away all dead code during linking, as
well as dead data. This reduces the size of hello world from 1.7MB to 458K on my
system (70% reduction).
I have not seen this impact link times negatively, and I have seen this pass
'make check' successfully. I am slightly wary of adding this option, but the
benefits are so huge tha I think we should work hard to work around any issues
rather than avoid using the flag entirely.