Changeset 4ddbea7 in mainline for uspace/lib/c/shared/arch/ia32/_link.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/ia32/_link.ld.in
rf798178 r4ddbea7 77 77 _tdata_start = .; 78 78 *(.tdata); 79 *(.gnu.linkonce.tb.*); 79 80 _tdata_end = .; 80 } :data81 .tbss : {82 81 _tbss_start = .; 83 82 *(.tbss); 84 83 _tbss_end = .; 85 84 } :data 86 _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)); 87 */ 85 _tls_alignment = ALIGNOF(.tdata); 86 */ 87 88 #ifdef CONFIG_LINE_DEBUG 89 .comment 0 : { *(.comment); } :debug 90 .debug_abbrev 0 : { *(.debug_abbrev); } :debug 91 .debug_aranges 0 : { *(.debug_aranges); } :debug 92 .debug_info 0 : { *(.debug_info); } :debug 93 .debug_line 0 : { *(.debug_line); } :debug 94 .debug_loc 0 : { *(.debug_loc); } :debug 95 .debug_pubnames 0 : { *(.debug_pubnames); } :debug 96 .debug_pubtypes 0 : { *(.debug_pubtypes); } :debug 97 .debug_ranges 0 : { *(.debug_ranges); } :debug 98 .debug_str 0 : { *(.debug_str); } :debug 99 #endif 88 100 /DISCARD/ : { 89 101 *(.comment);
Note:
See TracChangeset
for help on using the changeset viewer.