Changeset 44c44c5 in rtems


Ignore:
Timestamp:
08/26/02 13:06:55 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
61cd8db
Parents:
a7bafd5
Message:

2002-08-21 Joel Sherrill <joel@…>

  • startup/linkcmds: Move .init section after text section so C+ global constructors work.
Location:
c/src/lib/libbsp/mips/jmr3904
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/mips/jmr3904/ChangeLog

    ra7bafd5 r44c44c5  
     12002-08-21      Joel Sherrill <joel@OARcorp.com>
     2
     3        * startup/linkcmds: Move .init section after text section so
     4        C+ global constructors work.
     5
    162002-08-21      Joel Sherrill <joel@OARcorp.com>
    27
  • c/src/lib/libbsp/mips/jmr3904/startup/linkcmds

    ra7bafd5 r44c44c5  
    1919    {
    2020       _ftext = . ;
    21       *(.init)
    2221       eprol  =  .;
    2322      *(.text)
    2423      *(.text.*)
    2524      *(.gnu.linkonce.t*)
     25      *(.init)
    2626      *(.mips16.fn.*)
    2727      *(.mips16.call.*)
     
    7777    *(.data.*)
    7878    *(.gnu.linkonce.d*)
     79     SORT(CONSTRUCTORS)
    7980  }
    8081  . = ALIGN(8);
Note: See TracChangeset for help on using the changeset viewer.