<_discord_369482796349259776[m]> "This makes sense: RELOC 64..." <- I looked up the relocation table for this item, it's in .rela.text._get_cpuia, which points to 0x10948 (relative to the .o file) the actual entry: C9 00 00 00 00 00 00 00 09 00 00 00 8A 00 00 00 FC FF FF FF FF FF FF FF `_get_cpuia: 0x0800a760 + C9 -> 0x0800a829, which points indeed to the 4 bytes to be relocated for: call qword [rip + 0x00000000]` `#define R_X86_64_GOTPCREL 9 /* 32 bit signed PC relative offset to GOT */` But I can't find the GOT For the moment I will assume the result: call _cpuid (0x0800a7840) to be correct and continue my disassembly But if someone could explain me how R_X86_64_GOTPCREL works and where I can find the got table, that would be awesome