Hi,
I'm working on a project for manipulating elf files. The main goal is to change the value of a symbol (eg. the value of a constant).
My problem is, that my elf files don't contain a hash table section and so I can't create a section reader for the section .symtab.
Is there any way to get symbol information without hash table in ELFIO?
Thank you,
pivo
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I'm working on a project for manipulating elf files. The main goal is to change the value of a symbol (eg. the value of a constant).
My problem is, that my elf files don't contain a hash table section and so I can't create a section reader for the section .symtab.
Is there any way to get symbol information without hash table in ELFIO?
Thank you,
pivo
Yes! ELFIO library permits to access symbol information even without hash table.
Serge