Changeset f1380b7 in mainline for uspace/lib/c/arch/mips32/_link.ld.in
- Timestamp:
- 2018-03-02T20:21:57Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 34e1206
- Parents:
- a35b458
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:51:04)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:21:57)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/mips32/_link.ld.in
ra35b458 rf1380b7 18 18 . = 0x4000 + SIZEOF_HEADERS; 19 19 #endif 20 20 21 21 .init : { 22 22 *(.init); 23 23 } :text 24 24 25 25 .text : { 26 26 *(.text .text.*); 27 27 *(.rodata .rodata.*); 28 28 } :text 29 29 30 30 #ifdef LOADER 31 31 .interp : { … … 33 33 } :interp :text 34 34 #endif 35 35 36 36 . = . + 0x4000; 37 37 38 38 .data : { 39 39 *(.data); 40 40 *(.data.rel*); 41 41 } :data 42 42 43 43 .got : { 44 44 _gp = .; 45 45 *(.got); 46 46 } :data 47 47 48 48 .tdata : { 49 49 _tdata_start = .; … … 51 51 _tdata_end = .; 52 52 } :data 53 53 54 54 .tbss : { 55 55 _tbss_start = .; … … 57 57 _tbss_end = .; 58 58 } :data 59 59 60 60 _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)); 61 61 62 62 .sbss : { 63 63 *(.scommon); 64 64 *(.sbss); 65 65 } 66 66 67 67 .bss : { 68 68 *(.bss); 69 69 *(COMMON); 70 70 } :data 71 71 72 72 /DISCARD/ : { 73 73 *(*);
Note:
See TracChangeset
for help on using the changeset viewer.