Initial revision
[deliverable/binutils-gdb.git] / ld / ld-gld68k-Ur.script
1 SEARCH_DIR(/lib)
2 SEARCH_DIR(/usr/lib)
3 SEARCH_DIR(/usr/local/lib)
4 SECTIONS
5 {
6 .text 0:
7 {
8 CREATE_OBJECT_SYMBOLS
9 *(.text)
10 }
11 .data SIZEOF(.text) + ADDR(.text) :
12 {
13 *(.data)
14 ___DTOR_LIST__ = . ;
15 LONG((___CTOR_LIST__ - .)/4 -2)
16 *(___DTOR_LIST__)
17 LONG(0)
18 ___CTOR_LIST__ = . ;
19 LONG((___end_list__ - .)/4 -2)
20 *(___CTOR_LIST__)
21 LONG(0)
22 ___end_list__ = . ;
23 }
24 .bss SIZEOF(.data) + ADDR(.data) :
25 {
26 *(.bss)
27 [COMMON]
28 }
29 }
30
This page took 0.039561 seconds and 5 git commands to generate.