bfd/
[deliverable/binutils-gdb.git] / ld / emulparams / hppa64linux.sh
CommitLineData
465bc359
AM
1# If you change this file, please also look at files which source this one:
2# elf64hppa.sh
3
9f22353f
AM
4SCRIPT_NAME=elf
5ELFSIZE=64
2b67cf00 6# FIXME: this output format is for hpux.
9f22353f
AM
7OUTPUT_FORMAT="elf64-hppa-linux"
8TEXT_START_ADDR=0x10000
9TARGET_PAGE_SIZE=0x10000
24718e3b 10MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
9f22353f
AM
11ARCH=hppa
12MACHINE=hppa2.0w
13ENTRY="main"
14TEMPLATE_NAME=elf32
15GENERATE_SHLIB_SCRIPT=yes
16
17# We really want multiple .stub sections, one for each input .text section,
18# but for now this is good enough.
465bc359
AM
19OTHER_READONLY_SECTIONS="
20 .PARISC.unwind ${RELOCATING-0} : { *(.PARISC.unwind) }"
9f22353f
AM
21
22# The PA64 ELF port treats .plt sections differently than most. We also have
23# to create a .opd section. What most systems call the .got, we call the .dlt
465bc359
AM
24OTHER_READWRITE_SECTIONS="
25 .opd ${RELOCATING-0} : { *(.opd) }
26 ${RELOCATING+PROVIDE (__gp = .);}
27 .plt ${RELOCATING-0} : { *(.plt) }
28 .dlt ${RELOCATING-0} : { *(.dlt) }"
9f22353f 29
66bcaf1f
AM
30# The PA64 ELF port has an additional huge bss section.
31LARGE_SECTIONS=".hbss ${RELOCATING-0} : { *(.hbss) }"
32
827a1c67
AM
33#OTHER_SYMBOLS='PROVIDE (__TLS_SIZE = SIZEOF (.tbss));'
34OTHER_SYMBOLS='
465bc359
AM
35 PROVIDE (__TLS_SIZE = 0);
36 PROVIDE (__TLS_INIT_SIZE = 0);
37 PROVIDE (__TLS_INIT_START = 0);
38 PROVIDE (__TLS_INIT_A = 0);
39 PROVIDE (__TLS_PREALLOC_DTV_A = 0);'
9f22353f
AM
40
41# HPs use .dlt where systems use .got. Sigh.
2b67cf00
JL
42OTHER_GOT_RELOC_SECTIONS="
43 .rela.dlt ${RELOCATING-0} : { *(.rela.dlt) }
44 .rela.opd ${RELOCATING-0} : { *(.rela.opd) }"
9f22353f
AM
45
46# We're not actually providing a symbol anymore (due to the inability to be
47# safe in regards to shared libraries). So we just allocate the hunk of space
48# unconditionally, but do not mess around with the symbol table.
49DATA_START_SYMBOLS='. += 16;'
50
51DATA_PLT=
b71a5181 52PLT_BEFORE_GOT=
9f22353f
AM
53
54# .dynamic should be at the start of the .text segment.
55TEXT_DYNAMIC=
This page took 0.298038 seconds and 4 git commands to generate.