kopia lustrzana https://github.com/bristol-seds/pico-tracker
Added linker variable needed by c libraries
rodzic
be177abbc1
commit
2a5072c3cd
|
@ -44,7 +44,9 @@
|
||||||
* __data_start
|
* __data_start
|
||||||
* __data_end
|
* __data_end
|
||||||
* __bss_start
|
* __bss_start
|
||||||
|
* __bss_start__
|
||||||
* __bss_end
|
* __bss_end
|
||||||
|
* __bss_end__
|
||||||
* __end__
|
* __end__
|
||||||
* end
|
* end
|
||||||
* __heap_start
|
* __heap_start
|
||||||
|
@ -134,10 +136,12 @@ SECTIONS
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__bss_start = .;
|
__bss_start = .;
|
||||||
|
__bss_start__ = __bss_start;
|
||||||
*(.bss .bss.*)
|
*(.bss .bss.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__bss_end = .;
|
__bss_end = .;
|
||||||
|
__bss_end__ = __bss_end;
|
||||||
} > RAM
|
} > RAM
|
||||||
|
|
||||||
.heap (COPY):
|
.heap (COPY):
|
||||||
|
|
Ładowanie…
Reference in New Issue