Changeset eb522e8 in mainline for uspace/lib/c/arch/mips32/_link.ld.in


Ignore:
Timestamp:
2011-06-01T08:43:42Z (14 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d6c1f1
Parents:
9e2e715 (diff), e51a514 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Huuuuuge merge from development - all the work actually :)

File:
1 edited

Legend:

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

    r9e2e715 reb522e8  
    33
    44PHDRS {
     5#ifdef LOADER
     6        interp PT_INTERP;
     7        text PT_LOAD FILEHDR PHDRS FLAGS(5);
     8#else
    59        text PT_LOAD FLAGS(5);
     10#endif
    611        data PT_LOAD FLAGS(6);
    712}
    813
    914SECTIONS {
     15#ifdef LOADER
     16        .interp : {
     17                *(.interp);
     18        } :interp
     19       
     20        . = 0x70004000 + SIZEOF_HEADERS;
     21#else
    1022        . = 0x4000 + SIZEOF_HEADERS;
    11        
     23#endif
    1224        .init : {
    1325                *(.init);
    1426        } :text
     27       
    1528        .text : {
    16                 *(.text);
    17                 *(.rodata*);
     29                *(.text .text.*);
     30                *(.rodata .rodata.*);
    1831        } :text
    19 
     32       
    2033        . = . + 0x4000;
    21 
     34       
    2235        .data : {
    2336                *(.data);
    2437                *(.data.rel*);
    2538        } :data
    26 
     39       
    2740        .got : {
    2841                _gp = .;
    2942                *(.got);
    3043        } :data
    31 
     44       
    3245        .tdata : {
    3346                _tdata_start = .;
    3447                *(.tdata);
    3548                _tdata_end = .;
     49        } :data
     50       
     51        .tbss : {
    3652                _tbss_start = .;
    3753                *(.tbss);
    3854                _tbss_end = .;
    3955        } :data
    40         _tls_alignment = ALIGNOF(.tdata);
    41 
     56       
     57        _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
     58       
    4259        .sbss : {
    4360                *(.scommon);
    4461                *(.sbss);
    45         }       
     62        }
     63       
    4664        .bss : {
    4765                *(.bss);
    4866                *(COMMON);
    4967        } :data
    50 
    51         . = ALIGN(0x4000);
    52         _heap = .;
    53 
     68       
    5469        /DISCARD/ : {
    5570                *(*);
Note: See TracChangeset for help on using the changeset viewer.