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