Yoshinori Sato | 86277d5 | 2007-07-15 23:38:35 -0700 | [diff] [blame] | 1 | SECTIONS |
2 | { | ||||
3 | .text : | ||||
4 | { | ||||
5 | __stext = . ; | ||||
6 | __text = .; | ||||
Denys Vlasenko | 9bf5942 | 2010-02-20 01:03:51 +0100 | [diff] [blame] | 7 | *(.text..startup) |
Yoshinori Sato | 86277d5 | 2007-07-15 23:38:35 -0700 | [diff] [blame] | 8 | *(.text) |
9 | __etext = . ; | ||||
10 | } | ||||
11 | |||||
12 | .rodata : | ||||
13 | { | ||||
14 | *(.rodata) | ||||
15 | } | ||||
16 | .data : | ||||
17 | |||||
18 | { | ||||
19 | __sdata = . ; | ||||
20 | ___data_start = . ; | ||||
21 | *(.data.*) | ||||
22 | } | ||||
23 | .bss : | ||||
24 | { | ||||
25 | . = ALIGN(0x4) ; | ||||
26 | __sbss = . ; | ||||
27 | *(.bss*) | ||||
28 | . = ALIGN(0x4) ; | ||||
29 | __ebss = . ; | ||||
30 | __end = . ; | ||||
31 | } | ||||
32 | } |