]> Git Repo - binutils.git/blame - ld/ld-gld.script
Fixed a bug where wild scripts stopped working.
[binutils.git] / ld / ld-gld.script
CommitLineData
da56abdf
SC
1
2SEARCH_DIR(/lib)
3SEARCH_DIR(/usr/lib)
4SEARCH_DIR(/usr/local/lib)
5__DYNAMIC = 0;
6SECTIONS
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.026592 seconds and 4 git commands to generate.