Changeset e708063 in mainline for libc/arch/mips32/_link.ld.in


Ignore:
Timestamp:
2006-03-23T21:18:35Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a71d9af9
Parents:
17242c6e
Message:

Added missing ia32 files.
Renamed entry to start in mips, which is standard in gcc standard
linking scripts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/arch/mips32/_link.ld.in

    r17242c6e re708063  
    11STARTUP(../libc/arch/ARCH/src/entry.o)
    2 ENTRY(__entry)
     2ENTRY(__start)
    33
    44PHDRS {
     
    1818        } :text
    1919
    20         .got ALIGN(0x4000) : SUBALIGN(0x4000) {
     20        .data ALIGN(0x4000) : SUBALIGN(0x4000) {
     21                *(.data);
     22        } :data
     23        .got : {
    2124                _gp = .;
    22                 *(.got);
    23         } :data
    24         .data : {
    25                 *(.data);
     25                *(.data.rel*);
    2626        } :data
    2727        .sbss : {
Note: See TracChangeset for help on using the changeset viewer.