You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
readelf.py -s have the fix length 25
self._emitline('%6d: %s %s %-7s %-6s %-7s %4s %.25s%s' % (
suggest like readelf add -W para, so the ndx string can display all.
-W
--wide
Don't break output lines to fit into 80 columns. By default
readelf breaks section header and segment listing lines for
64-bit ELF files, so that they fit into 80 columns. This
option causes readelf to print each section header resp. each
segment one a single line, which is far more readable on
terminals wider than 80 columns.
The text was updated successfully, but these errors were encountered:
As far as I understand, readelf.py only exists so that one may match the parsing results of pyelftools with those of regular readelf. It was never meant as a first class ELF file visualizer.
I have a branch ready that add -W -w support to readelf.py which passes all tests. I'm new however to github, so how do I create a pull request addressing this issue?
readelf.py -s have the fix length 25
self._emitline('%6d: %s %s %-7s %-6s %-7s %4s %.25s%s' % (
suggest like readelf add -W para, so the ndx string can display all.
-W
--wide
Don't break output lines to fit into 80 columns. By default
readelf breaks section header and segment listing lines for
64-bit ELF files, so that they fit into 80 columns. This
option causes readelf to print each section header resp. each
segment one a single line, which is far more readable on
terminals wider than 80 columns.
The text was updated successfully, but these errors were encountered: