From 9003114a8f7cf994275dbfc88b93a0c8d0ce25d5 Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 14 Jan 2021 21:36:12 +0000 Subject: [PATCH] + support R_X86_64_GOTPCRELX and R_X86_64_REX_GOTPCRELX git-svn-id: trunk@48156 - --- compiler/ogbase.pas | 2 ++ compiler/x86_64/cpuelf.pas | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/compiler/ogbase.pas b/compiler/ogbase.pas index 5ed0cf9f0a..543577bee5 100644 --- a/compiler/ogbase.pas +++ b/compiler/ogbase.pas @@ -59,6 +59,8 @@ interface RELOC_RELATIVE_5, { PIC } RELOC_GOTPCREL, + RELOC_GOTPCRELX, + RELOC_REX_GOTPCRELX, RELOC_PLT32, RELOC_TLSGD, RELOC_TPOFF, diff --git a/compiler/x86_64/cpuelf.pas b/compiler/x86_64/cpuelf.pas index 7c7dc3cdf0..dfea338a74 100644 --- a/compiler/x86_64/cpuelf.pas +++ b/compiler/x86_64/cpuelf.pas @@ -88,6 +88,8 @@ implementation R_X86_64_TLSDESC_CALL = 35; R_X86_64_TLSDESC = 36; R_X86_64_IRELATIVE = 37; + R_X86_64_GOTPCRELX =41; + R_X86_64_REX_GOTPCRELX =42; R_X86_64_GNU_VTINHERIT = 250; { GNU extension to record C++ vtable hierarchy } R_X86_64_GNU_VTENTRY = 251; { GNU extension to record C++ vtable member usage } @@ -169,6 +171,10 @@ implementation result:=R_X86_64_32S; RELOC_GOTPCREL : result:=R_X86_64_GOTPCREL; + RELOC_GOTPCRELX : + result:=R_X86_64_GOTPCRELX; + RELOC_REX_GOTPCRELX : + result:=R_X86_64_REX_GOTPCRELX; RELOC_PLT32 : result:=R_X86_64_PLT32; RELOC_TPOFF: