Add TLS support for hppa-linux
This commit is contained in:
parent
b9b4047245
commit
c164c0d078
|
@ -1,3 +1,14 @@
|
||||||
|
2006-05-24 Carlos O'Donell <carlos@systemhalted.org>
|
||||||
|
Randolph Chung <randolph@tausq.org>
|
||||||
|
* hppa.h (R_PARISC_TLS_GD21L, R_PARISC_TLS_GD14R, R_PARISC_TLS_GDCALL,
|
||||||
|
R_PARISC_TLS_LDM21L, R_PARISC_TLS_LDM14R, R_PARISC_TLS_LDMCALL,
|
||||||
|
R_PARISC_TLS_LDO21L, R_PARISC_TLS_LDO14R, R_PARISC_TLS_DTPMOD32,
|
||||||
|
R_PARISC_TLS_DTPMOD64, R_PARISC_TLS_DTPOFF32, R_PARISC_TLS_DTPOFF64):
|
||||||
|
New TLS relocs.
|
||||||
|
(R_PARISC_TLS_LE21L, R_PARISC_TLS_LE14R, R_PARISC_TLS_IE21L,
|
||||||
|
R_PARISC_TLS_IE14R, R_PARISC_TLS_TPREL32, R_PARISC_TLS_TPREL64):
|
||||||
|
Define TLS relocs using existing equivalents.
|
||||||
|
|
||||||
2006-05-24 Bjoern Haase <bjoern.m.haase@web.de>
|
2006-05-24 Bjoern Haase <bjoern.m.haase@web.de>
|
||||||
|
|
||||||
* avr.h: Add E_AVR_MACH_AVR6, R_AVR_LO8_LDI_GS and R_AVR_HI8_LDI_GS.
|
* avr.h: Add E_AVR_MACH_AVR6, R_AVR_LO8_LDI_GS and R_AVR_HI8_LDI_GS.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* HPPA ELF support for BFD.
|
/* HPPA ELF support for BFD.
|
||||||
Copyright 1993, 1994, 1995, 1998, 1999, 2000, 2005
|
Copyright 1993, 1994, 1995, 1998, 1999, 2000, 2005, 2006
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
||||||
|
@ -480,8 +480,28 @@ RELOC_NUMBER (R_PARISC_LTOFF_TP16DF, 231)
|
||||||
RELOC_NUMBER (R_PARISC_GNU_VTENTRY, 232)
|
RELOC_NUMBER (R_PARISC_GNU_VTENTRY, 232)
|
||||||
RELOC_NUMBER (R_PARISC_GNU_VTINHERIT, 233)
|
RELOC_NUMBER (R_PARISC_GNU_VTINHERIT, 233)
|
||||||
|
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_GD21L, 234)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_GD14R, 235)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_GDCALL, 236)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_LDM21L, 237)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_LDM14R, 238)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_LDMCALL, 239)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_LDO21L, 240)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_LDO14R, 241)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_DTPMOD32, 242)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_DTPMOD64, 243)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_DTPOFF32, 244)
|
||||||
|
RELOC_NUMBER (R_PARISC_TLS_DTPOFF64, 245)
|
||||||
|
|
||||||
END_RELOC_NUMBERS (R_PARISC_UNIMPLEMENTED)
|
END_RELOC_NUMBERS (R_PARISC_UNIMPLEMENTED)
|
||||||
|
|
||||||
|
#define R_PARISC_TLS_LE21L R_PARISC_TPREL21L
|
||||||
|
#define R_PARISC_TLS_LE14R R_PARISC_TPREL14R
|
||||||
|
#define R_PARISC_TLS_IE21L R_PARISC_LTOFF_TP21L
|
||||||
|
#define R_PARISC_TLS_IE14R R_PARISC_LTOFF_TP14R
|
||||||
|
#define R_PARISC_TLS_TPREL32 R_PARISC_TPREL32
|
||||||
|
#define R_PARISC_TLS_TPREL64 R_PARISC_TPREL64
|
||||||
|
|
||||||
#ifndef RELOC_MACROS_GEN_FUNC
|
#ifndef RELOC_MACROS_GEN_FUNC
|
||||||
typedef enum elf_hppa_reloc_type elf_hppa_reloc_type;
|
typedef enum elf_hppa_reloc_type elf_hppa_reloc_type;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue