提交 1d20e11c 编写于 作者: B bernard.xiong@gmail.com

fix GNU GCC ld script.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1575 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 f0c20eb0
......@@ -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)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册