Removed extern declarations
[deliverable/binutils-gdb.git] / ld / ld-gld68k.script
1 SEARCH_DIR(/lib)
2 SEARCH_DIR(/usr/lib)
3 SEARCH_DIR(/usr/local/lib)
4 __DYNAMIC = 0;
5 SECTIONS
6 {
7 .text 0x2020 BLOCK(0x2000):
8 {
9 CREATE_OBJECT_SYMBOLS
10 *(.text)
11 _etext = ALIGN( 0x2000);
12 }
13 .data ALIGN(0x20000) :
14 {
15 *(.data)
16 ___DTOR_LIST__ = . ;
17 LONG((___CTOR_LIST__ - .)/4 -2)
18 *(___DTOR_LIST__)
19 LONG(0)
20 ___CTOR_LIST__ = . ;
21 LONG((_edata - .)/4 -2)
22 *(___CTOR_LIST__)
23 LONG(0)
24 _edata = .;
25 }
26 .bss SIZEOF(.data) + ADDR(.data) :
27 {
28 *(.bss)
29 [COMMON]
30 _end = .;
31 }
32 }
33
This page took 0.030304 seconds and 4 git commands to generate.