Changeset 9860cc7 in rtems


Ignore:
Timestamp:
03/16/18 10:01:03 (5 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
2e5cf7f
Parents:
be3d7d75
git-author:
Sebastian Huber <sebastian.huber@…> (03/16/18 10:01:03)
git-committer:
Sebastian Huber <sebastian.huber@…> (03/16/18 14:11:19)
Message:

bsps/powerpc: Fix linker command files

Update #3339.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base

    rbe3d7d75 r9860cc7  
    140140        } > REGION_RODATA AT > REGION_RODATA_LOAD
    141141        .ctors : ALIGN_WITH_INPUT {
     142                KEEP (*ecrti.o(.ctors))
    142143                KEEP (*crtbegin.o(.ctors))
    143144                KEEP (*crtbegin?.o(.ctors))
    144                 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
     145                KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o *ecrtn.o) .ctors))
    145146                KEEP (*(SORT(.ctors.*)))
    146147                KEEP (*(.ctors))
    147148        } > REGION_RODATA AT > REGION_RODATA_LOAD
    148149        .dtors : ALIGN_WITH_INPUT {
     150                KEEP (*ecrti.o(.dtors))
    149151                KEEP (*crtbegin.o(.dtors))
    150152                KEEP (*crtbegin?.o(.dtors))
    151                 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
     153                KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o *ecrtn.o) .dtors))
    152154                KEEP (*(SORT(.dtors.*)))
    153155                KEEP (*(.dtors))
Note: See TracChangeset for help on using the changeset viewer.