Fixed a problem with rom to ram. (which can produce error "cannot move location counter backwards")
This commit is contained in:
parent
0dec187fee
commit
786e3215a4
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user