Changeset 44c44c5 in rtems
- Timestamp:
- 08/26/02 13:06:55 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 61cd8db
- Parents:
- a7bafd5
- Location:
- c/src/lib/libbsp/mips/jmr3904
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/mips/jmr3904/ChangeLog
ra7bafd5 r44c44c5 1 2002-08-21 Joel Sherrill <joel@OARcorp.com> 2 3 * startup/linkcmds: Move .init section after text section so 4 C+ global constructors work. 5 1 6 2002-08-21 Joel Sherrill <joel@OARcorp.com> 2 7 -
c/src/lib/libbsp/mips/jmr3904/startup/linkcmds
ra7bafd5 r44c44c5 19 19 { 20 20 _ftext = . ; 21 *(.init)22 21 eprol = .; 23 22 *(.text) 24 23 *(.text.*) 25 24 *(.gnu.linkonce.t*) 25 *(.init) 26 26 *(.mips16.fn.*) 27 27 *(.mips16.call.*) … … 77 77 *(.data.*) 78 78 *(.gnu.linkonce.d*) 79 SORT(CONSTRUCTORS) 79 80 } 80 81 . = ALIGN(8);
Note: See TracChangeset
for help on using the changeset viewer.