Open GoogleCodeExporter opened 9 years ago
FYI this occurs on the executables (i.e. under /usr/bin) on my Fedora system
but does not occur for the libraries (i.e. under /usr/lib64) split in a similar
way between stripped binary and separate .debug file.
My system is x86_64 architecture.
Original comment by brian.si...@gmail.com
on 9 May 2014 at 2:55
You should either run:
dump_syms foo_unstripped
or
dump_syms foo_stripped /path/containing_foo_dot_debug/
It sounds like you are running /path/containing_foo_dot_debug/foo.debug. That
isn't going to work right because foo.debug has an empty .eh_frame section
(type SHT_NOBITS instead of SHT_PROGBITS) so dump_syms cannot generate the CFI
data.
Beyond that, it should still work and dump out some info sans CFI data. I built
a 64-bit dump_syms at r1327 and it work fine here when I run dump_syms
foo.debug. I don't get the "unable to generate file identifier" error.
Original comment by thestig@chromium.org
on 10 May 2014 at 12:19
Original issue reported on code.google.com by
brian.si...@gmail.com
on 9 May 2014 at 2:46