mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-25 02:47:13 +08:00
2007-05-03 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add alignment between data and bss to avoid linking errors when compiling with gcc 4.2.x
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* startup/linkcmds: Add alignment between data and bss to avoid linking
|
||||
errors when compiling with gcc 4.2.x
|
||||
|
||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* bsp_specs: Remove qrtems_debug.
|
||||
|
||||
@@ -52,7 +52,8 @@ SECTIONS
|
||||
CONSTRUCTORS
|
||||
_edata = .;
|
||||
}
|
||||
.bss SIZEOF(.data) + ADDR(.data):
|
||||
. = ALIGN(256) + (. & (256 - 1));
|
||||
.bss :
|
||||
{
|
||||
_bss_start = .;
|
||||
_clear_start = .;
|
||||
|
||||
Reference in New Issue
Block a user