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);
|
_edata_rom = _data_rom + SIZEOF (.data);
|
||||||
|
|
||||||
.bss : {
|
.bss : {
|
||||||
. = _edata;
|
|
||||||
_bss = .;
|
_bss = .;
|
||||||
*(.bss*) /* Read-write zero initialized data */
|
*(.bss*) /* Read-write zero initialized data */
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
@ -106,7 +105,6 @@ SECTIONS
|
|||||||
|
|
||||||
/* exception unwind data - required due to libgcc.a issuing /0 exceptions */
|
/* exception unwind data - required due to libgcc.a issuing /0 exceptions */
|
||||||
.ARM.extab : {
|
.ARM.extab : {
|
||||||
. = _ebss;
|
|
||||||
*(.ARM.extab*)
|
*(.ARM.extab*)
|
||||||
} >ram_local2
|
} >ram_local2
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user