diff options
author | 2022-07-19 09:20:45 +0800 | |
---|---|---|
committer | 2022-07-26 12:35:12 -0300 | |
commit | 2d83247d90c9f0bfee7f3f2505bc1b13b6f36c04 (patch) | |
tree | 73febbb866fabc3a060fd3c1baada22b1eaadf6d /scripts/glibcelf.py | |
parent | LoongArch: Add LoongArch entries to config.h.in (diff) | |
download | glibc-2d83247d90c9f0bfee7f3f2505bc1b13b6f36c04.tar.xz glibc-2d83247d90c9f0bfee7f3f2505bc1b13b6f36c04.zip |
LoongArch: Add relocations and ELF flags to elf.h and scripts/glibcelf.py
Diffstat (limited to 'scripts/glibcelf.py')
-rw-r--r-- | scripts/glibcelf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/glibcelf.py b/scripts/glibcelf.py index 47f95d07ba..de0509130e 100644 --- a/scripts/glibcelf.py +++ b/scripts/glibcelf.py @@ -252,7 +252,8 @@ class Machine(_OpenIntEnum): EM_RISCV = 243 EM_BPF = 247 EM_CSKY = 252 - EM_NUM = 253 + EM_LOONGARCH = 258 + EM_NUM = 259 EM_ALPHA = 0x9026 class Et(_OpenIntEnum): |