ELF (Executable and Linkable Format)
§1 Provenance System V Application Binary Interface Generic ABI (the gABI): https://www.sco.com/developers/gabi/latest/contents.html . Linux man page elf(5): https://www.man7.org/linux/man-pages/man5/elf.5.html . Original ELF specification (Tool Interface Standard, TIS Committee, 1995): https://refspecs.linuxfoundation.org/elf/elf.pdf . DWARF Debugging Information Format v5: https://dwarfstd.org/doc/DWARF5.pdf . GNU extensions reference: binutils source plus https://sourceware.org/binutils/docs/binutils/ . GNU IFUNC documentation: https://sourceware.org/glibc/wiki/GNU_IFUNC . Go's debug/elf package: https://pkg.go.dev/debug/elf . §2 Mechanism / specification ELF has three flavors of file: relocatable object (.o), executable, and...