From 1d20e11c84353905f47f7b8a9dc6c0f4ab27fbcf Mon Sep 17 00:00:00 2001 From: "bernard.xiong@gmail.com" Date: Fri, 1 Jul 2011 13:29:32 +0000 Subject: [PATCH] fix GNU GCC ld script. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1575 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- bsp/stm32f107/stm32_rom.ld | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bsp/stm32f107/stm32_rom.ld b/bsp/stm32f107/stm32_rom.ld index 703e7acd0a..55d71d0c58 100644 --- a/bsp/stm32f107/stm32_rom.ld +++ b/bsp/stm32f107/stm32_rom.ld @@ -10,6 +10,7 @@ MEMORY DATA (rw) : ORIGIN = 0x20000000, LENGTH = 0x00010000 } ENTRY(Reset_Handler) +_system_tack_size = 0x100; SECTIONS { @@ -83,6 +84,8 @@ SECTIONS . = ALIGN(4); /* This is used by the startup in order to initialize the .bss secion */ _ebss = . ; + . = . + _system_tack_size; + . = ALIGN(4); _estack = .; *(.bss.init) -- GitLab