You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the latest binary release of XELFViewer (v0.05), some relocations get their type mistaken. For example, R_X86_64_64 is displayed as X86_64_32, and R_X86_64_PC32 is displayed as 386_PC32. This can be verified by invoking readelf --relocs <...> on the file in question, or by doing the bitwise arithmethic manually:
type = 0000002e00000001, displayed as X86_64_32 in XELFViewer
0x0000002e00000001 & 0xffffffff = 1
1 = R_AMD64_64 (R_X86_64_64)
The text was updated successfully, but these errors were encountered:
With the latest binary release of XELFViewer (v0.05), some relocations get their type mistaken. For example,
R_X86_64_64
is displayed asX86_64_32
, andR_X86_64_PC32
is displayed as386_PC32
. This can be verified by invokingreadelf --relocs <...>
on the file in question, or by doing the bitwise arithmethic manually:The text was updated successfully, but these errors were encountered: