mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-15 16:15:08 -05:00
Demo/CORTEX_M3_MPS2_QEMU_GCC: Define symbols needed for picolibc sbrk implementation
Picolibc has an internal version of sbrk that uses slightly different symbol names than the demo provides. Add these in the linker script. Signed-off-by: Keith Packard <keithpac@amazon.com>
This commit is contained in:
parent
642c495fcb
commit
15826fe5cc
1 changed files with 2 additions and 0 deletions
|
|
@ -144,8 +144,10 @@ SECTIONS
|
|||
PROVIDE ( end = . );
|
||||
PROVIDE ( _end = . );
|
||||
_heap_bottom = .;
|
||||
__heap_start = .;
|
||||
. = . + _Min_Heap_Size;
|
||||
_heap_top = .;
|
||||
__heap_end = .;
|
||||
. = . + _Min_Stack_Size;
|
||||
. = ALIGN(8);
|
||||
} >RAM
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue