Changeset ad7a6c9 in mainline for uspace/lib/c/arch/ia32/_link.ld.in
- Timestamp:
- 2011-03-30T13:10:24Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4ae90f9
- Parents:
- 6e50466 (diff), d6b81941 (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/ia32/_link.ld.in
r6e50466 rad7a6c9 5 5 text PT_LOAD FLAGS(5); 6 6 data PT_LOAD FLAGS(6); 7 debug PT_NOTE; 7 8 } 8 9 … … 15 16 16 17 .text : { 17 *(.text );18 *(.rodata *);18 *(.text .text.*); 19 *(.rodata .rodata.*); 19 20 } :text 20 21 … … 42 43 } :data 43 44 44 . = ALIGN(0x1000); 45 46 _heap = .; 45 #ifdef CONFIG_LINE_DEBUG 46 .comment 0 : { *(.comment); } :debug 47 .debug_abbrev 0 : { *(.debug_abbrev); } :debug 48 .debug_aranges 0 : { *(.debug_aranges); } :debug 49 .debug_info 0 : { *(.debug_info); } :debug 50 .debug_line 0 : { *(.debug_line); } :debug 51 .debug_loc 0 : { *(.debug_loc); } :debug 52 .debug_pubnames 0 : { *(.debug_pubnames); } :debug 53 .debug_pubtypes 0 : { *(.debug_pubtypes); } :debug 54 .debug_ranges 0 : { *(.debug_ranges); } :debug 55 .debug_str 0 : { *(.debug_str); } :debug 56 #endif 47 57 48 58 /DISCARD/ : {
Note:
See TracChangeset
for help on using the changeset viewer.