Merge pull request #365 from BernardXiong/master

[BSP] fix GCC compiling issue in LPC408x bsp
This commit is contained in:
Bernard Xiong 2014-11-02 09:38:22 +08:00
commit cbf02c076e
2 changed files with 8 additions and 1 deletions

View File

@ -15,8 +15,9 @@
#include <rtthread.h>
#include <board.h>
#ifdef RT_USING_COMPONENTS_INIT
#include <components.h>
#endif
/* thread phase init */
void rt_init_thread_entry(void *parameter)

View File

@ -38,6 +38,12 @@ SECTIONS
__vsymtab_end = .;
. = ALIGN(4);
. = ALIGN(4);
__rt_init_start = .;
KEEP(*(SORT(.rti_fn*)))
__rt_init_end = .;
. = ALIGN(4);
PROVIDE(__ctors_start__ = .);
/* old GCC version uses .ctors */
KEEP(*(SORT(.ctors.*)))