Ignore:
File:
1 edited

Legend:

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

    r6677acb rc89ae25  
    3333                ktext_end = .;
    3434        }
    35 
    36         /* stack unwinding data */
    37         .eh_frame_hdr : {
    38                 eh_frame_hdr_start = .;
    39                 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
    40                 eh_frame_hdr_end = .;
    41         }
    42 
    43         .eh_frame : {
    44                 eh_frame_start = .;
    45                 KEEP(*(.eh_frame .eh_frame.*));
    46                 eh_frame_end = .;
    47         }
    48 
    4935        .data : {
    5036                kdata_start = .;
    5137                *(.data .data.*);                       /* initialized data */
    5238                *(.rodata .rodata.*);
     39                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
     40                *(.eh_frame_hdr .eh_frame_hdr.*);
    5341                *(.sdata .sdata.*);
    5442                *(.reginfo);
     
    5846                *(COMMON);                      /* global variables */
    5947        }
    60 
    6148        _gp = . + 0x8000;
    6249        .lit8 : { *(.lit8) }
Note: See TracChangeset for help on using the changeset viewer.