Changeset ac384b9 in rtems
- Timestamp:
- 08/02/99 15:25:24 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- fdb37e8
- Parents:
- bd527866
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/sparc/erc32/startup/linkcmds
rbd527866 rac384b9 95 95 . = ALIGN (16); 96 96 97 *(.eh_fram )97 *(.eh_frame) 98 98 . = ALIGN (16); 99 100 *(.gnu.linkonce.t*) 99 101 100 102 /* … … 111 113 LONG(0) 112 114 __DTOR_END__ = .; 115 116 _rodata_start = . ; 117 *(.rodata) 118 *(.gnu.linkonce.r*) 119 _erodata = ALIGN( 0x10 ) ; 120 113 121 etext = ALIGN(0x10); 114 122 _etext = .; 115 __CTOR_LIST__ = .;116 LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)117 *(.ctors)118 LONG(0)119 __CTOR_END__ = .;120 __DTOR_LIST__ = .;121 LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)122 *(.dtors)123 LONG(0)124 __DTOR_END__ = .;125 123 *(.lit) 126 124 *(.shdata) … … 141 139 _sdata = . ; 142 140 *(.data) 143 CONSTRUCTORS 141 *(.gnu.linkonce.d*) 142 *(.gcc_except_table) 144 143 edata = ALIGN(0x10); 145 144 _edata = .;
Note: See TracChangeset
for help on using the changeset viewer.