4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-03-02 10:15:26 +08:00

[bsp][utest] 添加 rt-spark 在 gcc 下运行 utest 链接代码段

This commit is contained in:
wangyuqiang 2023-09-25 16:25:23 +08:00 committed by guo
parent 3592bdea0d
commit c8790c72e4

View File

@ -43,6 +43,12 @@ SECTIONS
KEEP(*(VSymTab)) KEEP(*(VSymTab))
__vsymtab_end = .; __vsymtab_end = .;
/* section information for utest */
. = ALIGN(4);
__rt_utest_tc_tab_start = .;
KEEP(*(UtestTcTab))
__rt_utest_tc_tab_end = .;
/* section information for initial. */ /* section information for initial. */
. = ALIGN(4); . = ALIGN(4);
__rt_init_start = .; __rt_init_start = .;