Top "Readelf" questions

readelf displays information about ELF object files

readelf: Error: Not an ELF file - it has the wrong magic bytes at the start

I build a program and it works well(I mean that I can run this program). But when I use "…

elf readelf
Explaining readelf -S output

I'm trying to load an elf file into a MIPS simulator I made. The problem I'm having is that I …

linker compilation elf readelf
ldd equivalent on android

I have a libTest.so that does not load on some devices. logcat is absolutely useless. Using arm-linux-androideabi-readelf.exe -d …

android android-ndk ldd readelf
nm vs "readelf -s"

Suppose we have a shared library named libtest.so, there is one function "foo" in it use the strip to …

linux nm readelf
readelf vs. objdump: why are both needed

I need to learn about the ELF file layout for a project I am working on and I noticed the …

linux elf objdump readelf
Understanding the relocation table output from readelf

For example, running the command: readelf -r /bin/ls | head -n 20 I get the following output: Relocation section '.rela.…

elf readelf
Trace32 command to read symbol contents from ELF file

Problem scenario: In simple words, do we have a Trace32 command to read symbols (and its contents) from ELF file …

elf debug-symbols readelf trace32 lauterbach
Why does register_tm_clones and deregister_tm_clones reference an address past the .bss section? Where is this memory allocated?

register_tm_clones and deregister_tm_clones are referencing memory addresses past the end of my RW sections. How is …

c memory-management objdump readelf