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:
Joel Sherrill
2007-05-03 20:32:05 +00:00
parent 1fa24369ef
commit 04a8c937f4
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -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 = .;