* emulparms/elf64hppa.sh (OTHER_READONLY_SECTIONS): Put stubs before
[binutils-gdb.git] / ld / emulparams / elf64hppa.sh
1 SCRIPT_NAME=elf
2 ELFSIZE=64
3 OUTPUT_FORMAT="elf64-hppa"
4 TEXT_START_ADDR=0x4000000000001000
5 DATA_ADDR=0x8000000000001000
6 TARGET_PAGE_SIZE=4096
7 MAXPAGESIZE=4096
8 ARCH=hppa
9 MACHINE=hppa2.0w
10 ENTRY="main"
11 TEMPLATE_NAME=elf32
12 GENERATE_SHLIB_SCRIPT=yes
13 # We really want multiple .stub sections, one for each input .text section,
14 # but for now this is good enough.
15 OTHER_READONLY_SECTIONS='.PARISC.unwind : { *(.PARISC.unwind) } .stubs : { *(.stubs) }'
16
17 # The PA64 ELF port treats .plt sections differently than most. We also have
18 # to create a .opd section. Combine the .opd, .plt and .dlt together into a
19 # single .dlt section in the output file.
20 OTHER_READWRITE_SECTIONS='.dlt : { *(.opd) *(.plt) *(.dlt) }'
21
22 # The PA64 ELF port has two additional bss sections. huge bss and thread bss.
23 # Make sure they end up in the appropriate location. We also have to set
24 # __TLS_SIZE to the size of the thread bss section.
25 OTHER_BSS_SECTIONS='.hbss : { *(.hbss) } .tbss : { *(.tbss) } __TLS_SIZE = SIZEOF(.tbss);'
26
27 # The linker is required to define these two symbols.
28 EXECUTABLE_SYMBOLS='__SYSTEM_ID = 0x214; _FPU_STATUS = 0x0;'
29 DATA_PLT=
30
31 # The PA64 ELF port needs two additional initializer sections and also wants
32 # a start/end symbol pair for the .init and .fini sections.
33 INIT_START='KEEP (*(.HP.init)); __preinit_start = .; KEEP (*(.preinit)); __preinit_end = .;__init_start = .;'
34 INIT_END='__init_end = .;'
35 FINI_START='__fini_start = .;'
36 FINI_END='__fini_end = .;'