Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/mips32/_link.ld.in

    r4235849 r5e8b881  
    33
    44PHDRS {
    5 #ifdef LOADER
    6         interp PT_INTERP;
    7         text PT_LOAD FILEHDR PHDRS FLAGS(5);
    8 #else
    95        text PT_LOAD FLAGS(5);
    10 #endif
    116        data PT_LOAD FLAGS(6);
    127}
    138
    149SECTIONS {
    15 #ifdef LOADER
    16         .interp : {
    17                 *(.interp);
    18         } :interp
     10        . = 0x4000 + SIZEOF_HEADERS;
    1911       
    20         . = 0x70004000 + SIZEOF_HEADERS;
    21 #else
    22         . = 0x4000 + SIZEOF_HEADERS;
    23 #endif
    2412        .init : {
    2513                *(.init);
     
    2715       
    2816        .text : {
    29                 *(.text .text.*);
    30                 *(.rodata .rodata.*);
     17                *(.text);
     18                *(.rodata*);
    3119        } :text
    3220       
Note: See TracChangeset for help on using the changeset viewer.