mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-06-16 04:23:04 +08:00
Merge pull request #791 from Yohozzy/master
fix the end of module symbol bug when using iar compiler
This commit is contained in:
+1
-1
@@ -116,7 +116,7 @@ int rt_system_module_init(void)
|
||||
_rt_module_symtab_end = (struct rt_module_symtab *)&RTMSymTab$$Limit;
|
||||
#elif defined (__IAR_SYSTEMS_ICC__)
|
||||
_rt_module_symtab_begin = __section_begin("RTMSymTab");
|
||||
_rt_module_symtab_end = __section_begin("RTMSymTab");
|
||||
_rt_module_symtab_end = __section_end("RTMSymTab");
|
||||
#endif
|
||||
|
||||
#ifdef RT_USING_SLAB
|
||||
|
||||
Reference in New Issue
Block a user