Ignore:
File:
1 edited

Legend:

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

    r5e8b881 r63f8966  
    99SECTIONS {
    1010        . = 0x1000 + SIZEOF_HEADERS;
    11        
     11
    1212        .init : {
    1313                *(.init);
    1414        } :text
    15        
    1615        .text : {
    1716                *(.text);
    1817                *(.rodata*);
    1918        } :text
    20        
     19
    2120        . = . + 0x1000;
    22        
     21
    2322        .data : {
    2423                *(.data);
    2524                *(.sdata);
    2625        } :data
    27        
    2826        .tdata : {
    2927                _tdata_start = .;
     
    3432                _tbss_end = .;
    3533        } :data
    36        
    3734        _tls_alignment = ALIGNOF(.tdata);
    38        
    3935        .bss : {
    4036                *(.sbss);
     
    4238                *(.bss);
    4339        } :data
     40
     41        . = ALIGN(0x1000);
     42        _heap = .;
    4443       
    4544        /DISCARD/ : {
    4645                *(*);
    4746        }
     47
    4848}
Note: See TracChangeset for help on using the changeset viewer.