Changeset 1890f2a2 in mainline


Ignore:
Timestamp:
2018-04-09T15:06:16Z (6 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3f932a7e
Parents:
0a4667a7
Message:

fix linker warnings

Location:
uspace/lib/c/arch
Files:
4 edited

Legend:

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

    r0a4667a7 r1890f2a2  
    4040        } :data
    4141
     42        .got.plt : {
     43                *(.got.plt);
     44        } :data
     45
    4246        .tdata : {
    4347                *(.tdata);
  • uspace/lib/c/arch/amd64/_link.ld.in

    r0a4667a7 r1890f2a2  
    4545        } :data
    4646
     47        .got.plt : {
     48                *(.got.plt);
     49        } :data
     50
    4751        .tdata : {
    4852                *(.tdata);
  • uspace/lib/c/arch/ia32/_link.ld.in

    r0a4667a7 r1890f2a2  
    6262
    6363        .hash : {
    64                 *(.hash);
     64                *(.hash .gnu.hash);
    6565        } :text
    6666#endif
     
    9292                *(.got);
    9393        } :data
     94#endif
    9495
    9596        .got.plt : {
    9697                *(.got.plt);
    9798        } :data
    98 #endif
    9999
    100100        .tdata : {
  • uspace/lib/c/arch/riscv64/_link.ld.in

    r0a4667a7 r1890f2a2  
    5555        } :data :tls
    5656
    57         .sbss : {
     57        .bss : {
    5858                *(.scommon);
    5959                *(.sbss);
    60         }
    61 
    62         .bss : {
    6360                *(COMMON);
    6461                *(.bss);
Note: See TracChangeset for help on using the changeset viewer.