mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Correct the .bss end setting.
This commit is contained in:
parent
60c87c8364
commit
5c189beb42
|
@ -42,6 +42,7 @@ SECTIONS
|
||||||
_end. Align after .bss to ensure correct alignment even if the
|
_end. Align after .bss to ensure correct alignment even if the
|
||||||
.bss section disappears because there are no input sections. */
|
.bss section disappears because there are no input sections. */
|
||||||
. = ALIGN(32 / 8);
|
. = ALIGN(32 / 8);
|
||||||
|
_bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
|
||||||
|
|
||||||
.usbram (NOLOAD):
|
.usbram (NOLOAD):
|
||||||
{
|
{
|
||||||
|
@ -61,7 +62,7 @@ SECTIONS
|
||||||
}
|
}
|
||||||
. = ALIGN(32 / 8);
|
. = ALIGN(32 / 8);
|
||||||
_end = .;
|
_end = .;
|
||||||
_bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
|
|
||||||
PROVIDE (end = .);
|
PROVIDE (end = .);
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue