1/* Script for ld --shared: link shared library */
2/* Copyright (C) 2014-2018 Free Software Foundation, Inc.
3   Copying and distribution of this script, with or without modification,
4   are permitted in any medium without royalty provided the copyright
5   notice and this notice are preserved.  */
6OUTPUT_FORMAT("elf64-littleaarch64", "elf64-bigaarch64",
7	      "elf64-littleaarch64")
8OUTPUT_ARCH(aarch64)
9ENTRY(_start)
10
11PHDRS
12{
13  ro PT_LOAD FILEHDR PHDRS;
14  rw PT_LOAD;
15  dyn PT_DYNAMIC;
16  kip 0x60000013;
17  ehf PT_GNU_EH_FRAME;
18  stack PT_GNU_STACK;
19}
20
21SECTIONS
22{
23  /*PROVIDE_HIDDEN(__l4_sys_syscall = DEFINED(__L4_KIP_ADDR__) ? __L4_KIP_ADDR__ + 0xc0 : 0);*/
24
25  /* Read-only sections, merged into text segment: */
26  . = SEGMENT_START("text-segment", 0) + SIZEOF_HEADERS;
27  .note.gnu.build-id : { *(.note.gnu.build-id) } : ro
28  .hash           : { *(.hash) }
29  .gnu.hash       : { *(.gnu.hash) }
30  .dynsym         : { *(.dynsym) }
31  .dynstr         : { *(.dynstr) }
32  .gnu.version    : { *(.gnu.version) }
33  .gnu.version_d  : { *(.gnu.version_d) }
34  .gnu.version_r  : { *(.gnu.version_r) }
35  .rela.init      : { *(.rela.init) }
36  .rela.text      : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
37  .rela.fini      : { *(.rela.fini) }
38  .rela.rodata    : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
39  .rela.data.rel.ro   : { *(.rela.data.rel.ro .rela.data.rel.ro.* .rela.gnu.linkonce.d.rel.ro.*) }
40  .rela.data      : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
41  .rela.tdata	  : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
42  .rela.tbss	  : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
43  .rela.ctors     : { *(.rela.ctors) }
44  .rela.dtors     : { *(.rela.dtors) }
45  .rela.got       : { *(.rela.got) }
46  .rela.bss       : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
47  .rela.ifunc     : { *(.rela.ifunc) }
48  .rela.plt       :
49    {
50      *(.rela.plt)
51      *(.rela.iplt)
52    }
53  .init           :
54  {
55    KEEP (*(SORT_NONE(.init)))
56  } =0
57  .plt            : { *(.plt) *(.iplt) }
58  .text           :
59  {
60    *(.text.unlikely .text.*_unlikely .text.unlikely.*)
61    *(.text.exit .text.exit.*)
62    *(.text.startup .text.startup.*)
63    *(.text.hot .text.hot.*)
64    *(.text .stub .text.* .gnu.linkonce.t.*)
65    /* .gnu.warning sections are handled specially by elf32.em.  */
66    *(.gnu.warning)
67  } :ro =0
68  .fini           :
69  {
70    KEEP (*(SORT_NONE(.fini)))
71  } =0
72  PROVIDE (__etext = .);
73  PROVIDE (_etext = .);
74  PROVIDE (etext = .);
75  .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
76  .rodata1        : { *(.rodata1) }
77  .eh_frame_hdr : { *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) } :ro :ehf
78  .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) } :ro
79  .gcc_except_table   : ONLY_IF_RO { *(.gcc_except_table
80  .gcc_except_table.*) } :ro
81  .gnu_extab   : ONLY_IF_RO { *(.gnu_extab*) } :ro
82  /* These sections are generated by the Sun/Oracle C++ compiler.  */
83  .exception_ranges   : ONLY_IF_RO { *(.exception_ranges
84  .exception_ranges*) } :ro
85  /* Adjust the address for the data segment.  We want to adjust up to
86     the same address within the page on the next page up.  */
87  . = ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1));
88  /* Exception handling  */
89  .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) *(.eh_frame.*) } :rw
90  .gnu_extab      : ONLY_IF_RW { *(.gnu_extab) } :rw
91  .gcc_except_table   : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) } :rw
92  .exception_ranges   : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) } :rw
93  /* Thread Local Storage sections  */
94  .tdata	  : { *(.tdata .tdata.* .gnu.linkonce.td.*) } :rw
95  .tbss		  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) } :rw
96  .preinit_array     :
97  {
98    KEEP (*(.preinit_array))
99  }
100  .init_array     :
101  {
102    KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
103    KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
104  }
105  .fini_array     :
106  {
107    KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
108    KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
109  }
110  .ctors          :
111  {
112    /* gcc uses crtbegin.o to find the start of
113       the constructors, so we make sure it is
114       first.  Because this is a wildcard, it
115       doesn't matter if the user does not
116       actually link against crtbegin.o; the
117       linker won't look for a file to match a
118       wildcard.  The wildcard also means that it
119       doesn't matter which directory crtbegin.o
120       is in.  */
121    KEEP (*crtbegin.o(.ctors))
122    KEEP (*crtbegin?.o(.ctors))
123    /* We don't want to include the .ctor section from
124       the crtend.o file until after the sorted ctors.
125       The .ctor section from the crtend file contains the
126       end of ctors marker and it must be last */
127    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
128    KEEP (*(SORT(.ctors.*)))
129    KEEP (*(.ctors))
130  }
131  .dtors          :
132  {
133    KEEP (*crtbegin.o(.dtors))
134    KEEP (*crtbegin?.o(.dtors))
135    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
136    KEEP (*(SORT(.dtors.*)))
137    KEEP (*(.dtors))
138  }
139  .jcr            : { KEEP (*(.jcr)) }
140  .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
141  .dynamic        : { *(.dynamic) } :rw :dyn
142  .got            : { *(.got) *(.igot) } :rw
143  .got.plt        : { *(.got.plt)  *(.igot.plt) }
144  .data           :
145  {
146    __data_start = . ;
147    *(.data .data.* .gnu.linkonce.d.*)
148    SORT(CONSTRUCTORS)
149  }
150  .data1          : { *(.data1) }
151  _edata = .; PROVIDE (edata = .);
152  . = .;
153  __bss_start = .;
154  __bss_start__ = .;
155  .bss            :
156  {
157   *(.dynbss)
158   *(.bss .bss.* .gnu.linkonce.b.*)
159   *(COMMON)
160   /* Align here to ensure that the .bss section occupies space up to
161      _end.  Align after .bss to ensure correct alignment even if the
162      .bss section disappears because there are no input sections.
163      FIXME: Why do we need it? When there is no .bss section, we don't
164      pad the .data section.  */
165   . = ALIGN(. != 0 ? 64 / 8 : 1);
166  }
167  _bss_end__ = . ; __bss_end__ = . ;
168
169  .kip  ALIGN( CONSTANT(COMMONPAGESIZE) )  :
170  {
171    __l4_sys_syscall = . + 0x800;
172    . = . + 0x1000;
173  } :kip
174
175  . = ALIGN(64 / 8);
176  . = SEGMENT_START("ldata-segment", .);
177  . = ALIGN(64 / 8);
178  __end__ = . ;
179  _end = .; PROVIDE (end = .);
180  .stack         0x80000 :
181  {
182    _stack = .;
183    *(.stack)
184  } :stack
185
186  /* Stabs debugging sections.  */
187  .stab          0 : { *(.stab) } :NONE
188  .stabstr       0 : { *(.stabstr) }
189  .stab.excl     0 : { *(.stab.excl) }
190  .stab.exclstr  0 : { *(.stab.exclstr) }
191  .stab.index    0 : { *(.stab.index) }
192  .stab.indexstr 0 : { *(.stab.indexstr) }
193  .comment       0 : { *(.comment) }
194  /* DWARF debug sections.
195     Symbols in the DWARF debugging sections are relative to the beginning
196     of the section so we begin them at 0.  */
197  /* DWARF 1 */
198  .debug          0 : { *(.debug) }
199  .line           0 : { *(.line) }
200  /* GNU DWARF 1 extensions */
201  .debug_srcinfo  0 : { *(.debug_srcinfo) }
202  .debug_sfnames  0 : { *(.debug_sfnames) }
203  /* DWARF 1.1 and DWARF 2 */
204  .debug_aranges  0 : { *(.debug_aranges) }
205  .debug_pubnames 0 : { *(.debug_pubnames) }
206  /* DWARF 2 */
207  .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
208  .debug_abbrev   0 : { *(.debug_abbrev) }
209  .debug_line     0 : { *(.debug_line .debug_line.* .debug_line_end ) }
210  .debug_frame    0 : { *(.debug_frame) }
211  .debug_str      0 : { *(.debug_str) }
212  .debug_loc      0 : { *(.debug_loc) }
213  .debug_macinfo  0 : { *(.debug_macinfo) }
214  /* SGI/MIPS DWARF 2 extensions */
215  .debug_weaknames 0 : { *(.debug_weaknames) }
216  .debug_funcnames 0 : { *(.debug_funcnames) }
217  .debug_typenames 0 : { *(.debug_typenames) }
218  .debug_varnames  0 : { *(.debug_varnames) }
219  /* DWARF 3 */
220  .debug_pubtypes 0 : { *(.debug_pubtypes) }
221  .debug_ranges   0 : { *(.debug_ranges) }
222  /* DWARF Extension.  */
223  .debug_macro    0 : { *(.debug_macro) }
224  .debug_addr     0 : { *(.debug_addr) }
225  .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }
226  .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
227  /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
228}
229