Changeset 4ddbea7 in mainline for uspace/lib/c/shared/arch/mips32/_lib.ld.in
- Timestamp:
- 2011-04-30T14:49:50Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 729f774f
- Parents:
- f798178
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/shared/arch/mips32/_lib.ld.in
rf798178 r4ddbea7 18 18 *(.MIPS.stubs); 19 19 } :text 20 20 21 21 .hash : { 22 22 *(.hash); 23 23 } : text 24 24 25 25 .reginfo : { 26 26 *(.reginfo); 27 27 } : text 28 28 29 29 .rel.plt : { 30 30 *(.rel.plt); … … 37 37 *(.rel.*); 38 38 } :text 39 39 40 40 .plt : { 41 41 *(.plt); 42 42 } : text 43 43 44 44 .dynsym : { 45 45 *(.dynsym); 46 46 } : text 47 47 48 48 .dynstr : { 49 49 *(.dynstr); 50 50 } : text 51 51 52 52 . = . + 0x4000; 53 53 54 54 .dynamic : { 55 55 *(.dynamic); 56 56 } :data :dynamic 57 57 58 58 .data : { 59 59 *(.data); 60 60 *(.data.rel*); 61 61 } :data 62 62 63 63 .got : { 64 64 _gp = .; 65 65 *(.got); 66 66 } :data 67 67 68 68 .tdata : { 69 69 _tdata_start = .; … … 71 71 _tdata_end = .; 72 72 } :data 73 73 74 .tbss : { 74 75 _tbss_start = .; … … 76 77 _tbss_end = .; 77 78 } :data 79 78 80 _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)); 79 81 80 82 .sbss : { 81 83 *(.scommon); 82 84 *(.sbss); 83 } 85 } 86 84 87 .bss : { 85 88 *(.bss); 86 89 *(COMMON); 87 90 } :data 88 91 89 92 . = ALIGN(0x4000); 90 93 _heap = .;
Note:
See TracChangeset
for help on using the changeset viewer.