]> git.sur5r.net Git - freertos/commitdiff
Correct the .bss end setting.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 17 Oct 2008 14:16:38 +0000 (14:16 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 17 Oct 2008 14:16:38 +0000 (14:16 +0000)
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

index 79a37e6ece3de993f1d376d0a56e6baec5cade76..98dec1aaaff2f978b2ccf90fb6e689b886b7aa2a 100644 (file)
@@ -42,6 +42,7 @@ SECTIONS
        _end.  Align after .bss to ensure correct alignment even if the\r
        .bss section disappears because there are no input sections.  */\r
        . = ALIGN(32 / 8);\r
+       _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;\r
 \r
        .usbram (NOLOAD):\r
        {\r
@@ -61,7 +62,7 @@ SECTIONS
 }\r
        . = ALIGN(32 / 8);\r
        _end = .;\r
-       _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;\r
+       \r
        PROVIDE (end = .);\r
 \r
 \r