Ignore:
Timestamp:
2011-04-30T14:49:50Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
729f774f
Parents:
f798178
Message:

Bring linker scripts closer to the default one (debug, tbss).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/shared/arch/ia32/_link.ld.in

    rf798178 r4ddbea7  
    7777                _tdata_start = .;
    7878                *(.tdata);
     79                *(.gnu.linkonce.tb.*);
    7980                _tdata_end = .;
    80         } :data
    81         .tbss : {
    8281                _tbss_start = .;
    8382                *(.tbss);
    8483                _tbss_end = .;
    8584        } :data
    86         _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
    87 */     
     85        _tls_alignment = ALIGNOF(.tdata);
     86*/
     87
     88#ifdef CONFIG_LINE_DEBUG
     89        .comment 0 : { *(.comment); } :debug
     90        .debug_abbrev 0 : { *(.debug_abbrev); } :debug
     91        .debug_aranges 0 : { *(.debug_aranges); } :debug
     92        .debug_info 0 : { *(.debug_info); } :debug
     93        .debug_line 0 : { *(.debug_line); } :debug
     94        .debug_loc 0 : { *(.debug_loc); } :debug
     95        .debug_pubnames 0 : { *(.debug_pubnames); } :debug
     96        .debug_pubtypes 0 : { *(.debug_pubtypes); } :debug
     97        .debug_ranges 0 : { *(.debug_ranges); } :debug
     98        .debug_str 0 : { *(.debug_str); } :debug
     99#endif
    88100        /DISCARD/ : {
    89101                *(.comment);
Note: See TracChangeset for help on using the changeset viewer.