Changeset 85c92574 in rtems for c/src/lib/libbsp/arm
- Timestamp:
- May 9, 2002, 9:37:30 PM (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a2a8c5b
- Parents:
- 907ef1f6
- Location:
- c/src/lib/libbsp/arm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/arm/arm_bare_bsp/ChangeLog
r907ef1f6 r85c92574 1 2001-05-09 Joel Sherrill <joel@OARcorp.com> 2 3 * startup/linkcmds: In support of gcc 3.1, added one of more 4 of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*, 5 .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*. Spacing corrections 6 and direction of segments to memory regions may also have been 7 addressed. This was a sweep across all BSPs. 8 1 9 2002-03-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/lib/libbsp/arm/arm_bare_bsp/startup/linkcmds
r907ef1f6 r85c92574 121 121 .data : AT (_begdata) 122 122 { 123 *(.data) 124 *(.data.*) 123 *(.data*) 125 124 *(.gnu.linkonce.d*) 125 *(.jcr) 126 126 SORT(CONSTRUCTORS) 127 127 } > RAM -
c/src/lib/libbsp/arm/armulator/ChangeLog
r907ef1f6 r85c92574 1 2001-05-09 Joel Sherrill <joel@OARcorp.com> 2 3 * startup/linkcmds: In support of gcc 3.1, added one of more 4 of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*, 5 .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*. Spacing corrections 6 and direction of segments to memory regions may also have been 7 addressed. This was a sweep across all BSPs. 8 1 9 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/lib/libbsp/arm/armulator/startup/linkcmds
r907ef1f6 r85c92574 18 18 CREATE_OBJECT_SYMBOLS 19 19 *(.text) 20 *(.rodata*) 20 21 _etext = .; 21 22 … … 35 36 { 36 37 *(.data) 38 *(.jcr) 37 39 CONSTRUCTORS 38 40 _edata = .; -
c/src/lib/libbsp/arm/vegaplus/ChangeLog
r907ef1f6 r85c92574 1 2001-05-09 Joel Sherrill <joel@OARcorp.com> 2 3 * startup/linkcmds: In support of gcc 3.1, added one of more 4 of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*, 5 .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*. Spacing corrections 6 and direction of segments to memory regions may also have been 7 addressed. This was a sweep across all BSPs. 8 1 9 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/lib/libbsp/arm/vegaplus/startup/linkcmds
r907ef1f6 r85c92574 121 121 .data : AT (_begdata) 122 122 { 123 *(.data )124 *(. data.*)123 *(.data*) 124 *(.jcr) 125 125 *(.gnu.linkonce.d*) 126 126 SORT(CONSTRUCTORS)
Note: See TracChangeset
for help on using the changeset viewer.