mirror of https://github.com/ARMmbed/mbed-os.git
Remove keep keyword for .heap section
parent
b9f8e2ac53
commit
f1813e5bcc
|
@ -357,7 +357,7 @@ SECTIONS
|
||||||
__HeapBase = .;
|
__HeapBase = .;
|
||||||
__end__ = .;
|
__end__ = .;
|
||||||
end = __end__;
|
end = __end__;
|
||||||
KEEP(*(.heap*))
|
*(.heap*)
|
||||||
. = ORIGIN(ram) + LENGTH(ram) - STACK_SIZE;
|
. = ORIGIN(ram) + LENGTH(ram) - STACK_SIZE;
|
||||||
__HeapLimit = .;
|
__HeapLimit = .;
|
||||||
} > ram
|
} > ram
|
||||||
|
|
Loading…
Reference in New Issue