mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-22 05:47:56 +08:00
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:
@@ -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.
|
||||
|
||||
@@ -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 . */
|
||||
}
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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 . */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user