Displaying 3 results from an estimated 3 matches for "p375".
Did you mean:
375
2017 Dec 04
5
[RFC] - Deduplication of debug information in linkers (LLD).
..., but:
1) DWARF5 specification explicitly eliminates the .debug_types section introduced in DWARF4:
p8, "1.4 Changes from Version 4 to Version 5" http://dwarfstd.org/doc/DWARF5.pdf
2) Instead of emiting multiple .debug_types it suggests to emit multiple .debug_info COMDAT
sections. (p375, p376).
And it seems currently there is no way to make clang to emit multiple .debug_info with type information
like DWARF5 suggests. I tried command line below:
-g -fdebug-types-section -gdwarf-5
It still emits .debug_types and does not look there is a flag for emiting multiple .debug_info.
Looki...
2017 Dec 04
5
[RFC] - Deduplication of debug information in linkers (LLD).
..., but:
1) DWARF5 specification explicitly eliminates the .debug_types section introduced in DWARF4:
p8, "1.4 Changes from Version 4 to Version 5" http://dwarfstd.org/doc/DWARF5.pdf
2) Instead of emiting multiple .debug_types it suggests to emit multiple .debug_info COMDAT
sections. (p375, p376).
And it seems currently there is no way to make clang to emit multiple .debug_info with type information
like DWARF5 suggests. I tried command line below:
-g -fdebug-types-section -gdwarf-5
It still emits .debug_types and does not look there is a flag for emiting multiple .debug_info.
Looki...
2017 Dec 04
2
[RFC] - Deduplication of debug information in linkers (LLD)
...pes section
> > introduced in DWARF4:
> > p8, "1.4 Changes from Version 4 to Version 5"
> http://dwarfstd.org/doc/
> > DWARF5.pdf
> > 2) Instead of emiting multiple .debug_types it suggests to emit multiple
> > .debug_info COMDAT
> > sections. (p375, p376).
> >
> > And it seems currently there is no way to make clang to emit multiple
> > .debug_info with type information
> > like DWARF5 suggests. I tried command line below:
> > -g -fdebug-types-section -gdwarf-5
> > It still emits .debug_types and does not l...