Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/_link.ld.in

    rcfdeedc rc89ae25  
    2828        .text : {
    2929                ktext_start = .;
     30                /* FIXME: for some reason, mixing .text with .text.* produces a crash on malta-be */
    3031                *(.text);
     32                *(.text.*);
    3133                ktext_end = .;
    3234        }
    3335        .data : {
    3436                kdata_start = .;
    35                 *(.data);                       /* initialized data */
    36                 *(.rodata*);
    37                 *(.sdata);
     37                *(.data .data.*);                       /* initialized data */
     38                *(.rodata .rodata.*);
     39                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
     40                *(.eh_frame_hdr .eh_frame_hdr.*);
     41                *(.sdata .sdata.*);
    3842                *(.reginfo);
    39                 *(.sbss);
    40                 *(.scommon);
    41                 *(.bss);                        /* uninitialized static variables */
     43                *(.sbss .sbss.*);
     44                *(.scommon .scommon.*);
     45                *(.bss .bss.*);                        /* uninitialized static variables */
    4246                *(COMMON);                      /* global variables */
    43                 . = ALIGN(8);
    44                 symbol_table = .;
    45                 *(symtab.*);
    4647        }
    4748        _gp = . + 0x8000;
     
    5051
    5152        kdata_end = .;
     53
     54        .comment 0 : { *(.comment); }
     55        .debug_abbrev 0 : { *(.debug_abbrev); }
     56        .debug_abbrev.dwo 0 : { *(      .debug_abbrev.dwo); }
     57        .debug_addr 0 : { *(.debug_addr); }
     58        .debug_aranges 0 : { *(.debug_aranges); }
     59        .debug_cu_index 0 : { *(.debug_cu_index); }
     60        .debug_frame 0 : { *(.debug_frame); }
     61        .debug_frame_hdr 0 : { *(.debug_frame_hdr); }
     62        .debug_info 0 : { *(.debug_info); }
     63        .debug_info.dwo 0 : { *(.debug_info.dwo); }
     64        .debug_line 0 : { *(.debug_line); }
     65        .debug_line.dwo 0 : { *(.debug_line.dwo); }
     66        .debug_line_str 0 : { *(.debug_line_str); }
     67        .debug_loc 0 : { *(.debug_loc); }
     68        .debug_loclists 0 : { *(.debug_loclists); }
     69        .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }
     70        .debug_macinfo 0 : { *(.debug_macinfo); }
     71        .debug_macro 0 : { *(.debug_macro); }
     72        .debug_macro.dwo 0 : { *(.debug_macro.dwo); }
     73        .debug_names 0 : { *(.debug_names); }
     74        .debug_pubnames 0 : { *(.debug_pubnames); }
     75        .debug_pubtypes 0 : { *(.debug_pubtypes); }
     76        .debug_ranges 0 : { *(.debug_ranges); }
     77        .debug_rnglists 0 : { *(.debug_rnglists); }
     78        .debug_str 0 : { *(.debug_str); }
     79        .debug_str.dwo 0 : { *(.debug_str.dwo); }
     80        .debug_str_offsets 0 : { *(.debug_str_offsets); }
     81        .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); }
     82        .debug_tu_index 0 : { *(.debug_tu_index); }
     83        .debug_types 0 : { *(.debug_types); }
    5284
    5385        /DISCARD/ : {
Note: See TracChangeset for help on using the changeset viewer.