提交 ba0e1f6f 编写于 作者: B Bernard Xiong

Merge pull request #128 from prife/sim-init

simulator: update code for new component initialization support on mingw
......@@ -30,6 +30,10 @@ void rt_init_thread_entry(void *parameter)
/* initialization RT-Thread Components */
rt_components_init();
#if defined(RT_USING_COMPONENTS_INIT) && defined(__GNUC__) && defined(RT_USING_FINSH)
finsh_set_device(RT_CONSOLE_DEVICE_NAME);
#endif
/* File system Initialization */
#ifdef RT_USING_DFS
{
......
......@@ -40,6 +40,14 @@ SECTIONS
KEEP(*(VSymTab))
___vsymtab_end = .; __vsymtab_end = .;
}
. = ALIGN(__section_alignment__);
rti_fn () :
{
__rt_init_start = .;
KEEP(*(SORT(.rti_fn*)))
__rt_init_end = .;
}
. = ALIGN(__section_alignment__);
/* setction information for finsh shell end */
/* The Cygwin32 library uses a section to avoid copying certain data
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册