diff options
author | Jeff Law <law@redhat.com> | 1999-09-16 17:02:14 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-09-16 17:02:14 +0000 |
commit | 42d106a81f9c2feb78bd1ffdddfecaeefba8c220 (patch) | |
tree | bc40f9d14940ad05318d0de153bddeb184974fc3 /ld/emulparams | |
parent | dfec422f08f6a55459da38a629502caeb4e2d115 (diff) | |
download | ppe42-binutils-42d106a81f9c2feb78bd1ffdddfecaeefba8c220.tar.gz ppe42-binutils-42d106a81f9c2feb78bd1ffdddfecaeefba8c220.zip |
* emulparms/elf64hppa.sh (TEXT_START_SYMBOLS): Define.
Diffstat (limited to 'ld/emulparams')
-rwxr-xr-x | ld/emulparams/elf64hppa.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ld/emulparams/elf64hppa.sh b/ld/emulparams/elf64hppa.sh index b39274f960..1815b91b24 100755 --- a/ld/emulparams/elf64hppa.sh +++ b/ld/emulparams/elf64hppa.sh @@ -34,6 +34,15 @@ OTHER_BSS_SECTIONS='.hbss : { *(.hbss) } .tbss : { *(.tbss) } __TLS_SIZE = SIZEO # HPs use .dlt where systems use .got. Sigh. OTHER_GOT_RELOC_SECTIONS='.rela.dlt : { *(.rela.dlt) }' +# This does not have to be strictly the bottom of the text segment since +# it is merely for performing relocations relative to a symbol that is not +# going to be referenced in any other manner. +# +# If it was the true base of the text segment, then we could use it for +# building unwinders instead of computing the base of the text segment +# in the BFD backend. +TEXT_START_SYMBOLS='__text_dummy = . ;' + # The linker is required to define these two symbols. EXECUTABLE_SYMBOLS='__SYSTEM_ID = 0x214; _FPU_STATUS = 0x0;' DATA_PLT= |