Changes in uspace/lib/c/arch/ia32/_link.ld.in [63f8966:1e00216] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/ia32/_link.ld.in
r63f8966 r1e00216 5 5 text PT_LOAD FLAGS(5); 6 6 data PT_LOAD FLAGS(6); 7 debug PT_NOTE; 7 8 } 8 9 … … 43 44 44 45 . = ALIGN(0x1000); 46 _heap = .; 45 47 46 _heap = .; 48 #ifdef CONFIG_LINE_DEBUG 49 .comment 0 : { *(.comment); } :debug 50 .debug_abbrev 0 : { *(.debug_abbrev); } :debug 51 .debug_aranges 0 : { *(.debug_aranges); } :debug 52 .debug_info 0 : { *(.debug_info); } :debug 53 .debug_line 0 : { *(.debug_line); } :debug 54 .debug_loc 0 : { *(.debug_loc); } :debug 55 .debug_pubnames 0 : { *(.debug_pubnames); } :debug 56 .debug_pubtypes 0 : { *(.debug_pubtypes); } :debug 57 .debug_ranges 0 : { *(.debug_ranges); } :debug 58 .debug_str 0 : { *(.debug_str); } :debug 59 #endif 47 60 48 61 /DISCARD/ : {
Note:
See TracChangeset
for help on using the changeset viewer.