4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-24 04:18:52 +08:00

[utest][stm32f412][gcc] add __rt_utest_tc_tab_start to support utest

This commit is contained in:
Meco Man 2024-11-17 13:09:12 -05:00 committed by GuEe-GUI
parent 78c5cbb73b
commit 61256f6856

View File

@ -40,6 +40,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 = .;