Changeset f1380b7 in mainline for uspace/lib/c/arch/sparc64
- 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/sparc64/_link.ld.in
ra35b458 rf1380b7 19 19 . = 0x4000 + SIZEOF_HEADERS; 20 20 #endif 21 21 22 22 .init : { 23 23 *(.init); 24 24 } :text 25 25 26 26 .text : { 27 27 *(.text .text.*); 28 28 *(.rodata .rodata.*); 29 29 } :text 30 30 31 31 #ifdef LOADER 32 32 .interp : { … … 34 34 } :interp :text 35 35 #endif 36 36 37 37 . = . + 0x4000; 38 38 39 39 .got : { 40 40 _gp = .; 41 41 *(.got*); 42 42 } :data 43 43 44 44 .data : { 45 45 *(.data); 46 46 *(.sdata); 47 47 } :data 48 48 49 49 .tdata : { 50 50 _tdata_start = .; … … 55 55 _tbss_end = .; 56 56 } :data 57 57 58 58 _tls_alignment = ALIGNOF(.tdata); 59 59 60 60 .bss : { 61 61 *(.sbss); … … 63 63 *(.bss); 64 64 } :data 65 65 66 66 #ifdef CONFIG_LINE_DEBUG 67 67 .comment 0 : { *(.comment); } :debug … … 76 76 .debug_str 0 : { *(.debug_str); } :debug 77 77 #endif 78 78 79 79 /DISCARD/ : { 80 80 *(*);
Note:
See TracChangeset
for help on using the changeset viewer.