Rev 1400 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1400 | Rev 1402 | ||
|---|---|---|---|
| Line 12... | Line 12... | ||
| 12 | .init ALIGN(0x1000) : SUBALIGN(0x1000) { |
12 | .init ALIGN(0x1000) : SUBALIGN(0x1000) { |
| 13 | *(.init); |
13 | *(.init); |
| 14 | } :text |
14 | } :text |
| 15 | .text : { |
15 | .text : { |
| 16 | *(.text); |
16 | *(.text); |
| - | 17 | *(.toc); |
|
| 17 | *(.rodata*); |
18 | *(.rodata*); |
| 18 | } :text |
19 | } :text |
| 19 | 20 | ||
| 20 | .data ALIGN(0x1000) : SUBALIGN(0x1000) { |
21 | .data ALIGN(0x1000) : SUBALIGN(0x1000) { |
| - | 22 | *(.opd); |
|
| 21 | *(.data); |
23 | *(.data*); |
| 22 | *(.sdata); |
24 | *(.sdata); |
| 23 | } :data |
25 | } :data |
| 24 | .tdata : { |
26 | .tdata : { |
| 25 | _tdata_start = .; |
27 | _tdata_start = .; |
| 26 | *(.tdata); |
28 | *(.tdata); |