|
Message-Id: <20230815221755.75013-3-michalbiesek@gmail.com> Date: Wed, 16 Aug 2023 00:17:54 +0200 From: Michal Biesek <michalbiesek@...il.com> To: musl@...ts.openwall.com Cc: Michal Biesek <michalbiesek@...il.com> Subject: [PATCH 2/3] Add dynamic relocation `R_RISCV_PLT32` see riscv-elf-psabi-doc commit c3f8269c56d8a2f56c2602f2a44175362024ef9c Define PLT-generating PC-Relative data relocation Signed-off-by: Michal Biesek <michalbiesek@...il.com> --- include/elf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/elf.h b/include/elf.h index b7451f72..ad413427 100644 --- a/include/elf.h +++ b/include/elf.h @@ -3293,6 +3293,7 @@ enum #define R_RISCV_SET32 56 #define R_RISCV_32_PCREL 57 #define R_RISCV_IRELATIVE 58 +#define R_RISCV_PLT32 59 #ifdef __cplusplus } -- 2.34.1
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.