Changeset 5bddc53 in mainline


Ignore:
Timestamp:
2011-03-29T20:34:10Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9b3ce63
Parents:
63b5493
Message:

ppc32: improve linker scripts

Files:
3 edited

Legend:

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

    r63b5493 r5bddc53  
    3636                kdata_start = .;
    3737                *(K_DATA_START);
    38                 *(.rodata);
    39                 *(.rodata.*);
     38                *(.rodata .rodata.*);
    4039                *(.data);       /* initialized data */
    4140                *(.sdata);
  • uspace/lib/c/arch/ppc32/_link.ld.in

    r63b5493 r5bddc53  
    1515       
    1616        .text : {
    17                 *(.text);
    18                 *(.rodata*);
     17                *(.text .text.*);
     18                *(.rodata .rodata.*);
    1919        } :text
    2020       
  • uspace/srv/loader/arch/ppc32/_link.ld.in

    r63b5493 r5bddc53  
    2525       
    2626        .text : {
    27                 *(.text);
    28                 *(.rodata*);
     27                *(.text .text.*);
     28                *(.rodata .rodata.*);
    2929        } :text
    3030       
Note: See TracChangeset for help on using the changeset viewer.