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/ia32/_link.ld.in

    rbae7bdc rfcfd002  
    1919        } :interp
    2020       
    21         . = 0x70001000;
     21        . = 0x70001000 + SIZEOF_HEADERS;
    2222       
    23         .init ALIGN(0x1000) : SUBALIGN(0x1000) {
     23        .init : {
    2424                *(.init);
    2525        } :text
     
    3030        } :text
    3131       
    32         .data ALIGN(0x1000) : SUBALIGN(0x1000) {
     32        . = . + 0x1000;
     33       
     34        .data : {
    3335                *(.data);
    3436        } :data
     
    3941                *(.gnu.linkonce.tb.*);
    4042                _tdata_end = .;
    41         } :data
    42        
    43         .tbss : {
    4443                _tbss_start = .;
    4544                *(.tbss);
     
    4746        } :data
    4847       
    49         _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
     48        _tls_alignment = ALIGNOF(.tdata);
    5049       
    5150        .bss : {
Note: See TracChangeset for help on using the changeset viewer.