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

    r416abec re622f0a8  
    3434                *(.tdata);
    3535                _tdata_end = .;
    36         } :data
    37         .tbss : {
    3836                _tbss_start = .;
    3937                *(.tbss);
    4038                _tbss_end = .;
    4139        } :data
    42         _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
     40        _tls_alignment = ALIGNOF(.tdata);
    4341
    4442        .sbss : {
Note: See TracChangeset for help on using the changeset viewer.