Changeset 19a1800 in mainline for uspace/lib/c/arch/amd64/_link.ld.in
- Timestamp:
- 2011-03-01T22:20:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e24e7b1
- Parents:
- 976f546 (diff), ac8285d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/amd64/_link.ld.in
r976f546 r19a1800 5 5 text PT_LOAD FLAGS(5); 6 6 data PT_LOAD FLAGS(6); 7 debug PT_NOTE; 7 8 } 8 9 … … 13 14 *(.init); 14 15 } :text 16 15 17 .text : { 16 18 *(.text); 17 19 *(.rodata*); 18 20 } :text 19 21 20 22 . = . + 0x1000; 21 23 22 24 .data : { 23 25 *(.data); 24 26 } :data 27 25 28 .tdata : { 26 29 _tdata_start = .; … … 31 34 _tbss_end = .; 32 35 } :data 36 33 37 _tls_alignment = ALIGNOF(.tdata); 38 34 39 .bss : { 35 40 *(COMMON); 36 41 *(.bss); 37 42 } :data 38 39 . = ALIGN(0x1000); 40 _heap = .; 43 44 #ifdef CONFIG_LINE_DEBUG 45 .comment 0 : { *(.comment); } :debug 46 .debug_abbrev 0 : { *(.debug_abbrev); } :debug 47 .debug_aranges 0 : { *(.debug_aranges); } :debug 48 .debug_info 0 : { *(.debug_info); } :debug 49 .debug_line 0 : { *(.debug_line); } :debug 50 .debug_loc 0 : { *(.debug_loc); } :debug 51 .debug_pubnames 0 : { *(.debug_pubnames); } :debug 52 .debug_pubtypes 0 : { *(.debug_pubtypes); } :debug 53 .debug_ranges 0 : { *(.debug_ranges); } :debug 54 .debug_str 0 : { *(.debug_str); } :debug 55 #endif 41 56 42 57 /DISCARD/ : { 43 58 *(*); 44 59 } 45 46 60 }
Note:
See TracChangeset
for help on using the changeset viewer.