diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-06-12 17:02:21 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-06-12 17:02:21 -0400 |
commit | d5e55ba3320c30310ca1d8938925d5424a652422 (patch) | |
tree | 5ccf5f7a1db2d7f4398e1bc0204ec72f24fe2304 | |
parent | 610c5a8524c3d6cd3ac5a5f1231422e7648a3791 (diff) | |
download | musl-d5e55ba3320c30310ca1d8938925d5424a652422.tar.gz musl-d5e55ba3320c30310ca1d8938925d5424a652422.tar.bz2 musl-d5e55ba3320c30310ca1d8938925d5424a652422.tar.xz musl-d5e55ba3320c30310ca1d8938925d5424a652422.zip |
add missing m68k relocation types in elf.h
-rw-r--r-- | include/elf.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/include/elf.h b/include/elf.h index 78906f15..c2297353 100644 --- a/include/elf.h +++ b/include/elf.h @@ -1129,7 +1129,25 @@ typedef struct { #define R_68K_GLOB_DAT 20 #define R_68K_JMP_SLOT 21 #define R_68K_RELATIVE 22 -#define R_68K_NUM 23 +#define R_68K_TLS_GD32 25 +#define R_68K_TLS_GD16 26 +#define R_68K_TLS_GD8 27 +#define R_68K_TLS_LDM32 28 +#define R_68K_TLS_LDM16 29 +#define R_68K_TLS_LDM8 30 +#define R_68K_TLS_LDO32 31 +#define R_68K_TLS_LDO16 32 +#define R_68K_TLS_LDO8 33 +#define R_68K_TLS_IE32 34 +#define R_68K_TLS_IE16 35 +#define R_68K_TLS_IE8 36 +#define R_68K_TLS_LE32 37 +#define R_68K_TLS_LE16 38 +#define R_68K_TLS_LE8 39 +#define R_68K_TLS_DTPMOD32 40 +#define R_68K_TLS_DTPREL32 41 +#define R_68K_TLS_TPREL32 42 +#define R_68K_NUM 43 #define R_386_NONE 0 #define R_386_32 1 |