-
Notifications
You must be signed in to change notification settings - Fork 13.6k
llvm-readelf does not support compressed sections #82507
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
Labels
Comments
MaskRay
added a commit
that referenced
this issue
Feb 22, 2024
When a section has the SHF_COMPRESSED flag, -p/-x dump the compressed content by default. In GNU readelf, if --decompress/-z is specified, -p/-x will dump the decompressed content. This patch implements the option. Close #82507
llvmbot
pushed a commit
to llvmbot/llvm-project
that referenced
this issue
Feb 22, 2024
When a section has the SHF_COMPRESSED flag, -p/-x dump the compressed content by default. In GNU readelf, if --decompress/-z is specified, -p/-x will dump the decompressed content. This patch implements the option. Close llvm#82507 (cherry picked from commit 26d71d9)
brad0
added a commit
to brad0/llvm-project
that referenced
this issue
Feb 23, 2024
When a section has the SHF_COMPRESSED flag, -p/-x dump the compressed content by default. In GNU readelf, if --decompress/-z is specified, -p/-x will dump the decompressed content. This patch implements the option. Close llvm#82507 (cherry picked from commit 26d71d9)
llvmbot
pushed a commit
to llvmbot/llvm-project
that referenced
this issue
Feb 23, 2024
When a section has the SHF_COMPRESSED flag, -p/-x dump the compressed content by default. In GNU readelf, if --decompress/-z is specified, -p/-x will dump the decompressed content. This patch implements the option. Close llvm#82507 (cherry picked from commit 26d71d9)
llvmbot
pushed a commit
to llvmbot/llvm-project
that referenced
this issue
Feb 23, 2024
When a section has the SHF_COMPRESSED flag, -p/-x dump the compressed content by default. In GNU readelf, if --decompress/-z is specified, -p/-x will dump the decompressed content. This patch implements the option. Close llvm#82507 (cherry picked from commit 26d71d9)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
GNU binutils readelf and ELF Tool Chain readelf support
-z
to handle compressed sections (typically debug sections). From ELF Tool Chain's manpage:We are planning to migrate to LLVM's binutils-like tools and this is one issue identified during that process.
(FreeBSD bug reference https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=258872)
The text was updated successfully, but these errors were encountered: