2007-05-03 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds: Handle .data.* sections. Also change directive
	placing stack on onchip_ram to make ld happy.
This commit is contained in:
Joel Sherrill
2007-05-03 20:34:08 +00:00
parent 1144653dcd
commit b98fe821d2
4 changed files with 14 additions and 4 deletions
+5
View File
@@ -1,3 +1,8 @@
2007-05-03 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Handle .data.* sections. Also change directive
placing stack on onchip_ram to make ld happy.
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
* bsp_specs: Remove qrtems_debug.
+2 -2
View File
@@ -133,7 +133,7 @@ SECTIONS
. = ALIGN(128) + (. & (128 - 1));
.data . :
{
*(.data)
*(.data*)
*(.gcc_exc*)
___EH_FRAME_BEGIN__ = .;
*(.eh_fram*)
@@ -220,6 +220,6 @@ SECTIONS
.debug_typenames 0 : { *(.debug_typenames) }
.debug_varnames 0 : { *(.debug_varnames) }
.stack 0x0f001ff0 : { _stack = .; *(.stack) } > onchip_ram
stack : { _stack = .; *(.stack) } > onchip_ram
/* These must appear regardless of . */
}
+5
View File
@@ -1,3 +1,8 @@
2007-05-03 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Handle .data.* sections. Also change directive
placing stack on onchip_ram to make ld happy.
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
* bsp_specs: Remove qrtems_debug.
+2 -2
View File
@@ -126,7 +126,7 @@ SECTIONS
. = ALIGN(128) + (. & (128 - 1));
.data . :
{
*(.data)
*(.data*)
*(.gcc_exc*)
___EH_FRAME_BEGIN__ = .;
*(.eh_fram*)
@@ -213,6 +213,6 @@ SECTIONS
.debug_typenames 0 : { *(.debug_typenames) }
.debug_varnames 0 : { *(.debug_varnames) }
.stack 0x00081ff0 : { _stack = .; *(.stack) } > onchip_ram
.stack 0x00081ff0 : { _stack = .; *(.stack) } /* > onchip_ram */
/* These must appear regardless of . */
}