(Created page with "<!-- All fields on this form are required to be accepted by FESCo. We also request that you maintain the same order of sections so that all of the feature pages are uniform. --...") |
No edit summary |
||
Line 16: | Line 16: | ||
== Current status == | == Current status == | ||
* Targeted release: [[Releases/18]] | * Targeted release: [[Releases/18]] | ||
* Last updated: 2012-05 | * Last updated: 2012-06-05 | ||
* Percentage of completion: | * Percentage of completion: 50% | ||
== Detailed Description == | == Detailed Description == | ||
Line 54: | Line 54: | ||
[[Category: | [[Category:FeatureReadyForWrangler]] |
Revision as of 13:16, 5 June 2012
DWARF Compressior
Summary
Reduce size of *.debug files in debuginfo packages in Fedora 18 using DWARF Compressor dwz.
Owner
- Name: Jakub Jelinek
- Email: jakub@redhat.com
Current status
- Targeted release: Releases/18
- Last updated: 2012-06-05
- Percentage of completion: 50%
Detailed Description
The dwz tool http://sourceware.org/git/?p=dwz.git;a=summary can rewrite .debug_* sections, either in binaries/shared libraries, or their *.debug split files, into equivalent, but smaller, DWARF. The master branch of that repo currently only rewrites each single *.debug file on its own, on the multifile branch there is ongoing work to optimize also several *.debug files at once, by moving common .debug_* data into a single new ET_REL *.debug file and using DWARF extensions refer to that from the *.debug files. Depending on the stability of the multifile branch we'd like to either optimize each *.debug file individually by running roughly find . -name \*.debug | xargs -n 1 dwz in find-debuginfo.sh (will need to handle hardlinks better than that), or all *.debug files at once using dwz -m %{name}-%{version}-%{release}.%{arch}.debug *.debug.
Benefit to Fedora
Smaller debuginfo files.
Scope
All packages should be rebuilt with the new tool as well as rpm changes hit dist-f18.
How To Test
GDB testsuite, perhaps some tool to analyze whether the non-compressed and compressed debuginfos contain equivalent info.
User Experience
Users shouldn't notice this, except that debuginfo files will be smaller, and newer DWARF consumers will be needed (gdb, valgrind, dwarves, prelink, elfutils, systemtap).
Dependencies
All packages need to be rebuilt.
Contingency Plan
Worst case we stop using the compressor.
Documentation
None yet, there will be a DWARF5 extension proposal if we are going to choose the multifile optimization.
Release Notes
Fedora 18 debuginfo has been post-processed by a DWARF compressor tool to reduce size of the *.debug files.