bsp,abstract-machine: fix the order of .rti_fn* sections
* now initcall can work successfully, and msh can show prompt
This commit is contained in:
parent
fed1897b98
commit
624077b98c
4 changed files with 32 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
|||
#include <am.h>
|
||||
#include <rtthread.h>
|
||||
|
||||
void *__fsymtab_start = NULL;
|
||||
void *__fsymtab_end = NULL;
|
||||
|
||||
#define RT_HW_HEAP_BEGIN heap.start
|
||||
#define RT_HW_HEAP_END heap.end
|
||||
|
||||
|
|
9
bsp/abstract-machine/src/libc.c
Normal file
9
bsp/abstract-machine/src/libc.c
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include <klib.h>
|
||||
|
||||
char *strchr(const char *s, int c) {
|
||||
assert(0);
|
||||
}
|
||||
|
||||
char *strstr(const char *haystack, const char *needle) {
|
||||
assert(0);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue