Ignore:
Timestamp:
2011-03-21T22:00:17Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
143932e3
Parents:
b50b5af2 (diff), 7308e84 (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:

Merge mainline changes (needs fixes).

File:
1 moved

Legend:

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

    rb50b5af2 r04803bf  
    1 STARTUP(LIBC_PREFIX/arch/UARCH/src/entry.o)
     1STARTUP(LIBC_PATH/arch/UARCH/src/entry.o)
    22ENTRY(__entry)
    33
     
    99SECTIONS {
    1010        . = 0x1000 + SIZEOF_HEADERS;
    11 
    12         .init : {
    13                 *(.init);
    14         } : text
     11       
    1512        .text : {
    1613                *(.text);
    17         *(.rodata*);
     14                *(.rodata*);
    1815        } :text
    19 
     16       
    2017        . = . + 0x1000;
    21 
     18       
    2219        .data : {
    23                 *(.opd);
    24                 *(.data .data.*);
    25                 *(.sdata);
     20                *(.data);
     21                *(.data.rel*);
    2622        } :data
     23       
    2724        .tdata : {
    2825                _tdata_start = .;
    2926                *(.tdata);
     27                *(.gnu.linkonce.tb.*);
    3028                _tdata_end = .;
    3129                _tbss_start = .;
     
    3331                _tbss_end = .;
    3432        } :data
     33       
    3534        _tls_alignment = ALIGNOF(.tdata);
     35       
     36        .sbss : {
     37                *(.scommon);
     38                *(.sbss);
     39        }
     40       
    3641        .bss : {
    37                 *(.sbss);
    38                 *(.scommon);
    39         *(COMMON);
    40         *(.bss);
     42                *(COMMON);
     43                *(.bss);
    4144        } :data
    42        
    43         . = ALIGN(0x1000);
    44         _heap = .;
    4545       
    4646        /DISCARD/ : {
    4747                *(*);
    4848        }
    49 
    5049}
Note: See TracChangeset for help on using the changeset viewer.