diff --git a/components/libc/newlib/syscalls.c b/components/libc/newlib/syscalls.c index 388d240c9449c136b7611c4fe075fef1ec3c8147..239d208520aa2736181131fb0141b326f907c324 100644 --- a/components/libc/newlib/syscalls.c +++ b/components/libc/newlib/syscalls.c @@ -442,3 +442,8 @@ _system(const char *s) /* not support this call */ return; } + +void __libc_init_array(void) +{ + /* we not use __libc init_aray to initialize C++ objects */ +}