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

    r416abec re622f0a8  
    3232                *(.tdata);
    3333                _tdata_end = .;
    34         } :data
    35         .tbss : {
    3634                _tbss_start = .;
    3735                *(.tbss);
    3836                _tbss_end = .;
    3937        } :data
    40         _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
     38        _tls_alignment = ALIGNOF(.tdata);
    4139        .bss : {
    4240                *(.sbss);
Note: See TracChangeset for help on using the changeset viewer.