Changes in uspace/lib/c/arch/amd64/_link.ld.in [63f8966:1e00216] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/amd64/_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 … … 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 43 39 44 . = ALIGN(0x1000); 40 45 _heap = .; 46 47 #ifdef CONFIG_LINE_DEBUG 48 .comment 0 : { *(.comment); } :debug 49 .debug_abbrev 0 : { *(.debug_abbrev); } :debug 50 .debug_aranges 0 : { *(.debug_aranges); } :debug 51 .debug_info 0 : { *(.debug_info); } :debug 52 .debug_line 0 : { *(.debug_line); } :debug 53 .debug_loc 0 : { *(.debug_loc); } :debug 54 .debug_pubnames 0 : { *(.debug_pubnames); } :debug 55 .debug_pubtypes 0 : { *(.debug_pubtypes); } :debug 56 .debug_ranges 0 : { *(.debug_ranges); } :debug 57 .debug_str 0 : { *(.debug_str); } :debug 58 #endif 41 59 42 60 /DISCARD/ : {
Note:
See TracChangeset
for help on using the changeset viewer.