提交 d68291d4 编写于 作者: M MurphyZhao

[bsp] 为常用板卡的 gcc 链接脚本增加 utest section 段

Signed-off-by: NMurphyZhao <d2014zjt@163.com>
上级 6db31e30
......@@ -11,6 +11,12 @@ SECTIONS
*(.text)
*(.text.*)
/* section information for utest */
. = ALIGN(4);
__rt_utest_tc_tab_start = .;
KEEP(*(UtestTcTab))
__rt_utest_tc_tab_end = .;
/* section information for finsh shell */
. = ALIGN(4);
__fsymtab_start = .;
......
......@@ -31,6 +31,12 @@ SECTIONS
*(.glue_7t)
*(.gnu.linkonce.t*)
/* section information for utest */
. = ALIGN(4);
__rt_utest_tc_tab_start = .;
KEEP(*(UtestTcTab))
__rt_utest_tc_tab_end = .;
/* section information for finsh shell */
. = ALIGN(4);
__fsymtab_start = .;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册