Ignore:
Timestamp:
2011-04-29T20:59:37Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c53d906
Parents:
bae7bdc
Message:

Re-converge linker scripts used by loader to those in C library.

File:
1 edited

Legend:

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

    rbae7bdc rfcfd002  
    1919        } :interp
    2020       
    21         /* . = 0x0000700000001000; */
    22         . = 0x70001000;
     21        . = 0x70001000 + SIZEOF_HEADERS;
    2322       
    24         .init ALIGN(0x1000) : SUBALIGN(0x1000) {
     23        .init : {
    2524                *(.init);
    2625        } :text
     
    3130        } :text
    3231       
    33         .data ALIGN(0x1000) : SUBALIGN(0x1000) {
     32        . = . + 0x1000;
     33       
     34        .data : {
    3435                *(.data);
    3536        } :data
     
    3940                *(.tdata);
    4041                _tdata_end = .;
    41         } :data
    42        
    43         .tbss : {
    4442                _tbss_start = .;
    4543                *(.tbss);
     
    4745        } :data
    4846       
    49         _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
     47        _tls_alignment = ALIGNOF(.tdata);
    5048       
    5149        .bss : {
Note: See TracChangeset for help on using the changeset viewer.