Ignore:
Timestamp:
2009-03-20T21:31:00Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5b8c75a
Parents:
416abec
Message:

Put .tbss section into the .tdata output section.
This solves the .tbss alignment issue seen on amd64.

File:
1 edited

Legend:

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

    r416abec re622f0a8  
    2929                *(.tdata);
    3030                _tdata_end = .;
    31         } :data
    32         .tbss : {
    3331                _tbss_start = .;
    3432                *(.tbss);
    3533                _tbss_end = .;
    3634        } :data
    37         _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
     35        _tls_alignment = ALIGNOF(.tdata);
    3836        .bss : {
    3937                *(.sbss);
Note: See TracChangeset for help on using the changeset viewer.