|
Message-Id: <20230815221755.75013-2-michalbiesek@gmail.com> Date: Wed, 16 Aug 2023 00:17:53 +0200 From: Michal Biesek <michalbiesek@...il.com> To: musl@...ts.openwall.com Cc: Michal Biesek <michalbiesek@...il.com> Subject: [PATCH 1/3] Add dynamic relocation `R_RISCV_IRELATIVE` see riscv-elf-psabi-doc commit f003e4e07c0c0032b60dea218e66f48fd09468d2 Add dynamic relocation R_RISCV_IRELATIVE 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 23f2c4bc..b7451f72 100644 --- a/include/elf.h +++ b/include/elf.h @@ -3292,6 +3292,7 @@ enum #define R_RISCV_SET16 55 #define R_RISCV_SET32 56 #define R_RISCV_32_PCREL 57 +#define R_RISCV_IRELATIVE 58 #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.