Removed the load address statement from the .bss section.

Otherwise the linker will complain: "section has both a load address and
a load region"
This commit is contained in:
Piotr Esden-Tempski 2012-04-24 09:34:39 +02:00
parent bf65589183
commit 3b20a5e34e
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ SECTIONS
. = ORIGIN(ram);
.data : AT (__exidx_end) {
.data : {
_data = .;
*(.data*) /* Read-write initialized data */
. = ALIGN(4);

View File

@ -55,7 +55,7 @@ SECTIONS
. = ORIGIN(ram);
.data : AT (__exidx_end) {
.data : {
_data = .;
*(.data*) /* Read-write initialized data */
. = ALIGN(4);