From a1c16faebd465902a1f21792731c3e9293bcdc2c Mon Sep 17 00:00:00 2001 From: richardbarry Date: Fri, 17 Oct 2008 14:16:38 +0000 Subject: [PATCH] Correct the .bss end setting. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@496 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Demo/ARM7_LPC2368_Eclipse/RTOSDemo/lpc2368.ld | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Demo/ARM7_LPC2368_Eclipse/RTOSDemo/lpc2368.ld b/Demo/ARM7_LPC2368_Eclipse/RTOSDemo/lpc2368.ld index 79a37e6ec..98dec1aaa 100644 --- a/Demo/ARM7_LPC2368_Eclipse/RTOSDemo/lpc2368.ld +++ b/Demo/ARM7_LPC2368_Eclipse/RTOSDemo/lpc2368.ld @@ -42,6 +42,7 @@ SECTIONS _end. Align after .bss to ensure correct alignment even if the .bss section disappears because there are no input sections. */ . = ALIGN(32 / 8); + _bss_end__ = . ; __bss_end__ = . ; __end__ = . ; .usbram (NOLOAD): { @@ -61,7 +62,7 @@ SECTIONS } . = ALIGN(32 / 8); _end = .; - _bss_end__ = . ; __bss_end__ = . ; __end__ = . ; + PROVIDE (end = .); -- 2.39.5