Changeset 6b781c0 in mainline for uspace/libc/arch/arm32/_link.ld.in


Ignore:
Timestamp:
2007-06-08T15:02:49Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c03ee1c
Parents:
3ee8a075
Message:

Merge arm32 into trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/libc/arch/arm32/_link.ld.in

    r3ee8a075 r6b781c0  
    88
    99SECTIONS {
    10         . = 0x2000;
     10        . = 0x1000;
    1111
    12         .init ALIGN(0x2000): SUBALIGN(0x2000) {
     12        .init ALIGN(0x1000): SUBALIGN(0x1000) {
    1313                *(.init);
    1414        } : text
    1515        .text : {
    1616                *(.text);
    17                 *(.rodata*);
     17        *(.rodata*);
    1818        } :text
    19 
    20         .got ALIGN(0x2000) : SUBALIGN(0x2000) {
    21                 _gp = .;
    22                 *(.got*);
    23         } :data
    24         .data : {
     19       
     20        .data ALIGN(0x1000) : SUBALIGN(0x1000) {
    2521                *(.opd);
    2622                *(.data .data.*);
    2723                *(.sdata);
    2824        } :data
     25
    2926        .tdata : {
    3027                _tdata_start = .;
     
    3229                _tdata_end = .;
    3330        } :data
     31
    3432        .tbss : {
    3533                _tbss_start = .;
     
    3735                _tbss_end = .;
    3836        } :data
     37
    3938        .bss : {
    4039                *(.sbss);
    4140                *(.scommon);
    42                 *(COMMON);
    43                 *(.bss);
     41        *(COMMON);
     42        *(.bss);
    4443        } :data
    45 
    46         . = ALIGN(0x2000);
     44       
     45        . = ALIGN(0x1000);
    4746        _heap = .;
    48  
     47       
    4948        /DISCARD/ : {
    5049                *(*);
    51         }
     50        }
     51
    5252}
Note: See TracChangeset for help on using the changeset viewer.