Changeset 40c623a8 in rtems


Ignore:
Timestamp:
09/21/17 20:20:29 (6 years ago)
Author:
Joel Sherrill <joel@…>
Branches:
5, master
Children:
5618997d
Parents:
c232b37
git-author:
Joel Sherrill <joel@…> (09/21/17 20:20:29)
git-committer:
Joel Sherrill <joel@…> (02/19/18 19:12:08)
Message:

powerpc/shared/startup/linkcmds.base: Add wildcards on some sections

Closes #3307.

File:
1 edited

Legend:

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

    rc232b37 r40c623a8  
    101101        } > REGION_RODATA AT > REGION_RODATA_LOAD
    102102        .eh_frame : ALIGN_WITH_INPUT {
    103                 KEEP (*(.eh_frame))
     103                KEEP (*(*.eh_frame))
    104104        } > REGION_RODATA AT > REGION_RODATA_LOAD
    105105        .gcc_except_table : ALIGN_WITH_INPUT {
    106                 *(.gcc_except_table .gcc_except_table.*)
     106                *(.gcc_except_table *.gcc_except_table.*)
    107107        } > REGION_RODATA AT > REGION_RODATA_LOAD
    108108        .tdata : ALIGN_WITH_INPUT {
     
    259259                *(set_pseudo_*);
    260260
    261                 KEEP (*(SORT(.rtemsroset.*)))
     261                KEEP (*(SORT(*.rtemsroset.*)))
    262262                bsp_section_rodata_end = .;
    263263        } > REGION_RODATA AT > REGION_RODATA_LOAD
Note: See TracChangeset for help on using the changeset viewer.