Ignore:
Timestamp:
2011-04-15T19:38:07Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9dd730d1
Parents:
6b9e85b (diff), b2fb47f (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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loader/arch/ia64/_link.ld.in

    r6b9e85b r8b655705  
    1212                *(.interp);
    1313        } :interp
    14 
     14       
    1515        /* On Itanium code sections must be aligned to 16 bytes. */
    1616        . = ALIGN(0x800000000 + SIZEOF_HEADERS, 16);
    17 
     17       
    1818        .init : {
    1919                *(.init);
    20         } : text
     20        } :text
     21       
    2122        .text : {
    22                 *(.text);
    23                 *(.rodata*);
     23                *(.text .text.*);
     24                *(.rodata .rodata.*);
    2425        } :text
    25 
     26       
    2627        . = . + 0x4000;
    27 
     28       
    2829        .got : {
    29                 _gp = .;
    30                 *(.got*);
    31         } :data
     30                /* Tell the linker where we expect GP to point. */
     31                __gp = .;
     32                *(.got .got.*);
     33        } :data
     34       
    3235        .data : {
    3336                *(.opd);
     
    3538                *(.sdata);
    3639        } :data
     40       
    3741        .tdata : {
    3842                _tdata_start = .;
     
    4044                _tdata_end = .;
    4145        } :data
     46       
    4247        .tbss : {
    4348                _tbss_start = .;
     
    4550                _tbss_end = .;
    4651        } :data
     52       
    4753        _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
     54       
    4855        .bss : {
    4956                *(.sbss);
     
    5259                *(.bss);
    5360        } :data
    54 
    55         . = ALIGN(0x4000);
    56         _heap = .;
    57  
     61       
    5862        /DISCARD/ : {
    5963                *(*);
    60         }
     64        }
    6165}
Note: See TracChangeset for help on using the changeset viewer.