Fixed a problem with rom to ram. (which can produce error "cannot move location counter backwards")

This commit is contained in:
TitanMKD 2013-02-25 01:35:56 +01:00 committed by Piotr Esden-Tempski
parent 0dec187fee
commit 786e3215a4

View File

@ -96,7 +96,6 @@ SECTIONS
_edata_rom = _data_rom + SIZEOF (.data);
.bss : {
. = _edata;
_bss = .;
*(.bss*) /* Read-write zero initialized data */
*(COMMON)
@ -106,7 +105,6 @@ SECTIONS
/* exception unwind data - required due to libgcc.a issuing /0 exceptions */
.ARM.extab : {
. = _ebss;
*(.ARM.extab*)
} >ram_local2