diff options
author | Jeff Law <law@redhat.com> | 1999-09-14 11:30:01 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-09-14 11:30:01 +0000 |
commit | 2491f1100fcd5f77ac6b453cae7411e26687e34f (patch) | |
tree | e211c298d394b6e62be5ee4d6eb8a5b15c0287f0 /ld | |
parent | 06a5ee55537caefa868697b037e5552c8dafae9d (diff) | |
download | gdb-2491f1100fcd5f77ac6b453cae7411e26687e34f.zip gdb-2491f1100fcd5f77ac6b453cae7411e26687e34f.tar.gz gdb-2491f1100fcd5f77ac6b453cae7411e26687e34f.tar.bz2 |
* emulparms/elf64hppa.sh (OTHER_GOT_RELOC_SECTIONS): Add .rela.dlt.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rwxr-xr-x | ld/emulparams/elf64hppa.sh | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 71d5755..95bb351 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +Tue Sep 14 05:26:34 1999 Jeffrey A Law (law@cygnus.com) + + * emulparms/elf64hppa.sh (OTHER_GOT_RELOC_SECTIONS): Add .rela.dlt. + 1999-09-13 Donn Terry <donn@interix.com> * emultempl/pe.em: Remove the output file at the start, in case it diff --git a/ld/emulparams/elf64hppa.sh b/ld/emulparams/elf64hppa.sh index 9b62d8e..fbe3592 100755 --- a/ld/emulparams/elf64hppa.sh +++ b/ld/emulparams/elf64hppa.sh @@ -34,6 +34,9 @@ OTHER_READWRITE_SECTIONS='.dlt : { *(.plt) *(.dlt) *(.opd) }' # __TLS_SIZE to the size of the thread bss section. OTHER_BSS_SECTIONS='.hbss : { *(.hbss) } .tbss : { *(.tbss) } __TLS_SIZE = SIZEOF(.tbss);' +# HPs use .dlt where systems use .got. Sigh. +OTHER_GOT_RELOC_SECTIONS='.rela.dlt : { *(.rela.dlt) }' + # The linker is required to define these two symbols. EXECUTABLE_SYMBOLS='__SYSTEM_ID = 0x214; _FPU_STATUS = 0x0;' DATA_PLT= |