Merge pull request #2106 from zhaojuntao/lds-1224

[bsp] 为常用板卡的 gcc 链接脚本增加 utest section 段
This commit is contained in:
Bernard Xiong 2018-12-24 20:00:04 +08:00 committed by GitHub
commit cd4ac30b80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -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 = .;

View File

@ -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 = .;