Rev 1120 | Rev 1129 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1120 | Rev 1123 | ||
---|---|---|---|
Line 15... | Line 15... | ||
15 | .text : { |
15 | .text : { |
16 | *(.text); |
16 | *(.text); |
17 | *(.rodata*); |
17 | *(.rodata*); |
18 | } :text |
18 | } :text |
19 | 19 | ||
20 | .data ALIGN(0x4000) : SUBALIGN(0x4000) { |
20 | .data : { |
21 | *(.data); |
21 | *(.data); |
- | 22 | *(.data.rel*); |
|
22 | } :data |
23 | } :data |
23 | .got : { |
24 | .got : { |
24 | _gp = .; |
25 | _gp = .; |
25 | *(.data.rel*); |
26 | *(.got); |
26 | } :data |
27 | } :data |
27 | .sbss : { |
28 | .sbss : { |
28 | *(.scommon); |
29 | *(.scommon); |
29 | *(.sbss); |
30 | *(.sbss); |
30 | } |
31 | } |