Changeset 04803bf in mainline for uspace/lib/c/arch/arm32/_link.ld.in


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/arm32/_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
     
    1313                *(.init);
    1414        } :text
     15       
    1516        .text : {
    1617                *(.text);
    1718                *(.rodata*);
    1819        } :text
    19 
     20       
    2021        . = . + 0x1000;
    21 
     22       
    2223        .data : {
    23                 *(.data);
     24                *(.opd);
     25                *(.data .data.*);
     26                *(.sdata);
    2427        } :data
     28       
    2529        .tdata : {
    2630                _tdata_start = .;
     
    3135                _tbss_end = .;
    3236        } :data
     37       
    3338        _tls_alignment = ALIGNOF(.tdata);
     39       
    3440        .bss : {
     41                *(.sbss);
     42                *(.scommon);
    3543                *(COMMON);
    3644                *(.bss);
    3745        } :data
    38 
    39         . = ALIGN(0x1000);
    40         _heap = .;
    4146       
    4247        /DISCARD/ : {
    4348                *(*);
    4449        }
    45 
    4650}
Note: See TracChangeset for help on using the changeset viewer.