[BSP] fix ls1b compiling issue
This commit is contained in:
parent
3d9ee80f4a
commit
fd69283f3a
|
@ -53,6 +53,13 @@ SECTIONS
|
||||||
__rt_init_end = .;
|
__rt_init_end = .;
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.eh_frame_hdr :
|
||||||
|
{
|
||||||
|
*(.eh_frame_hdr)
|
||||||
|
*(.eh_frame_entry)
|
||||||
|
}
|
||||||
|
.eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.data :
|
.data :
|
||||||
|
|
|
@ -93,13 +93,10 @@
|
||||||
#define FINSH_THREAD_STACK_SIZE 4096
|
#define FINSH_THREAD_STACK_SIZE 4096
|
||||||
// </section>
|
// </section>
|
||||||
|
|
||||||
|
// <section name="RT_USING_LIBC" description="C Runtime library setting" default="true" >
|
||||||
#define RT_USING_LIBC
|
#define RT_USING_LIBC
|
||||||
|
|
||||||
// <section name="LIBC" description="C Runtime library setting" default="always" >
|
|
||||||
// <bool name="RT_USING_NEWLIB" description="Using newlib library, only available under GNU GCC" default="true" />
|
|
||||||
//#define RT_USING_NEWLIB
|
|
||||||
// <bool name="RT_USING_PTHREADS" description="Using POSIX threads library" default="true" />
|
// <bool name="RT_USING_PTHREADS" description="Using POSIX threads library" default="true" />
|
||||||
// #define RT_USING_PTHREADS
|
#define RT_USING_PTHREADS
|
||||||
// </section>
|
// </section>
|
||||||
|
|
||||||
// <section name="RT_USING_DFS" description="Device file system" default="true" >
|
// <section name="RT_USING_DFS" description="Device file system" default="true" >
|
||||||
|
|
Loading…
Reference in New Issue