What exactly is the size of an ELF symbol (both for 64 & 32 bit) & how do you parse it
According to oracles documentation on the ELF file format a 64 bit elf symbol is 30 bytes in size (8 + 1 + 1 + 4 + 8 + 8), However when i use readelf to print out the sections headers of an elf file, & then inspect the "EntSize" (entry size) member of the… Read More What exactly is the size of an ELF symbol (both for 64 & 32 bit) & how do you parse it