Added linker variable needed by c libraries

rocketry
Richard Eoin Meadows 2014-07-30 20:21:19 +01:00
rodzic be177abbc1
commit 2a5072c3cd
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -44,7 +44,9 @@
* __data_start
* __data_end
* __bss_start
* __bss_start__
* __bss_end
* __bss_end__
* __end__
* end
* __heap_start
@ -134,10 +136,12 @@ SECTIONS
{
. = ALIGN(4);
__bss_start = .;
__bss_start__ = __bss_start;
*(.bss .bss.*)
*(COMMON)
. = ALIGN(4);
__bss_end = .;
__bss_end__ = __bss_end;
} > RAM
.heap (COPY):