source:
mainline/uspace/lib/c/arch/ia64/_link.ld.in@
68b5dd11
Last change on this file since 68b5dd11 was 7f8f9fd, checked in by , 13 years ago | |
---|---|
|
|
File size: 984 bytes |
Rev | Line | |
---|---|---|
[1b1164e8] | 1 | STARTUP(LIBC_PATH/arch/UARCH/src/entry.o) |
[fbd6f81] | 2 | ENTRY(__entry) |
3 | ||
[a3aa1e1] | 4 | PHDRS { |
[c53d906] | 5 | #ifdef LOADER |
6 | interp PT_INTERP; | |
[a3aa1e1] | 7 | text PT_LOAD FLAGS(5); |
[c53d906] | 8 | #else |
9 | text PT_LOAD FLAGS(5); | |
10 | #endif | |
[a3aa1e1] | 11 | data PT_LOAD FLAGS(6); |
12 | } | |
13 | ||
[fbd6f81] | 14 | SECTIONS { |
[c53d906] | 15 | #ifdef LOADER |
[e1c0260] | 16 | . = 0x800000000 + SIZEOF_HEADERS; |
[c53d906] | 17 | #else |
18 | . = 0x4000 + SIZEOF_HEADERS; | |
19 | #endif | |
[e1c0260] | 20 | |
[7f8f9fd] | 21 | /* Workaround proper alignment of the .init section */ |
22 | . = ALIGN(., 16); | |
23 | ||
[1cc2974] | 24 | .init : { |
[a3aa1e1] | 25 | *(.init); |
[5e8b881] | 26 | } :text |
27 | ||
[a3aa1e1] | 28 | .text : { |
[49852df] | 29 | *(.text .text.*); |
30 | *(.rodata .rodata.*); | |
[a3aa1e1] | 31 | } :text |
[5e8b881] | 32 | |
[0783634] | 33 | #ifdef LOADER |
34 | .interp : { | |
35 | *(.interp); | |
36 | } :interp :text | |
37 | #endif | |
38 | ||
[1cc2974] | 39 | . = . + 0x4000; |
[5e8b881] | 40 | |
[1cc2974] | 41 | .got : { |
[88634420] | 42 | /* Tell the linker where we expect GP to point. */ |
43 | __gp = .; | |
[49852df] | 44 | *(.got .got.*); |
[5e8b881] | 45 | } :data |
46 | ||
[a3aa1e1] | 47 | .data : { |
48 | *(.opd); | |
[7f9cd77] | 49 | *(.data .data.*); |
[a3aa1e1] | 50 | *(.sdata); |
51 | } :data | |
[5e8b881] | 52 | |
[c4c5de5] | 53 | .tdata : { |
54 | _tdata_start = .; | |
55 | *(.tdata); | |
56 | _tdata_end = .; | |
57 | _tbss_start = .; | |
58 | *(.tbss); | |
59 | _tbss_end = .; | |
60 | } :data | |
[5e8b881] | 61 | |
[e622f0a8] | 62 | _tls_alignment = ALIGNOF(.tdata); |
[5e8b881] | 63 | |
[a3aa1e1] | 64 | .bss : { |
65 | *(.sbss); | |
66 | *(.scommon); | |
[fbd6f81] | 67 | *(COMMON); |
[a3aa1e1] | 68 | *(.bss); |
69 | } :data | |
[5e8b881] | 70 | |
[fbd6f81] | 71 | /DISCARD/ : { |
[a3aa1e1] | 72 | *(*); |
[5e8b881] | 73 | } |
[fbd6f81] | 74 | } |
Note:
See TracBrowser
for help on using the repository browser.