Title should have (2017).
Anatomy of an ELF executable
21–27 of 27 posts
Re: Anatomy of an ELF executable
#22Strongly recommend reading "How To Write Shared Libraries" by Ulrich Drepper https://software.intel.com/sites/default/files/m/a/1/e/dsoho... I recently dove into ELF files so I could convert ELF binaries to DOS EXE, for a little bit of retro programming with modern compilers. Not that I couldn't have used DJGPP.
That sounds pretty cool, did you make anything you could share?
Re: Anatomy of an ELF executable
#23Re: Anatomy of an ELF executable
#24Strongly recommend reading "How To Write Shared Libraries" by Ulrich Drepper https://software.intel.com/sites/default/files/m/a/1/e/dsoho... I recently dove into ELF files so I could convert ELF binaries to DOS EXE, for a little bit of retro programming with modern compilers. Not that I couldn't have used DJGPP.
> I recently dove into ELF files so I could convert ELF binaries to DOS EXE, for a little bit of retro programming with modern compilers. Not that I couldn't have used DJGPP. That sounds pretty cool, did you make anything you could share?
Re: Anatomy of an ELF executable
#25Interesting article. When I was studying the elf format myself in the past I've also found very useful this poster. https://github.com/corkami/pics/blob/master/binary/elf101/el... The author has made many more for similar binary formats.
Re: Anatomy of an ELF executable
#26Title should have (2017).
Re: Anatomy of an ELF executable
#27Are you the author? Great job for the detailed writeup. Small nit, I noticed you misspelled the interpreter section, it should be .interp instead of .intrep