diff options
author | WANG Xuerui <xen0n@gentoo.org> | 2021-12-20 16:14:56 +0800 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-24 15:42:27 +0000 |
commit | 8ae4575392cef94c1e66197c5c35e7a194f3eb93 (patch) | |
tree | ae370f34ff524ae53ecbe82c3b4dd666685bca61 | |
parent | lddtree: add --skip-missing (diff) | |
download | pax-utils-8ae4575392cef94c1e66197c5c35e7a194f3eb93.tar.gz pax-utils-8ae4575392cef94c1e66197c5c35e7a194f3eb93.tar.bz2 pax-utils-8ae4575392cef94c1e66197c5c35e7a194f3eb93.zip |
paxelf: add LoongArch to recognized ELF machine types
Signed-off-by: WANG Xuerui <xen0n@gentoo.org>
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | elf.h | 3 | ||||
-rw-r--r-- | paxelf.c | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -268,7 +268,8 @@ typedef struct #define EM_MICROBLAZE 189 /* Xilinx MicroBlaze */ #define EM_TILEGX 191 /* Tilera TILE-Gx */ #define EM_RISCV 243 /* RISC-V */ -#define EM_NUM 244 +#define EM_LOONGARCH 258 /* LoongArch */ +#define EM_NUM 259 /* If it is necessary to assign new unofficial EM_* values, please pick large random numbers (0x8523, 0xa7f2, etc.) to minimize the @@ -277,6 +277,7 @@ static pairtype elf_emtypes[] = { QUERY(EM_TILEGX), QUERY(EM_ALPHA), QUERY(EM_RISCV), + QUERY(EM_LOONGARCH), { 0, 0 } }; |