2023-07-12 12:07 AM
I have just updated the IDE from 1.12.1 and updated my project as requested but I have encountered an issue when compiling.
I get 3 errors on previously compiling source code. as follows
Can you help with what might be the problem?
PhilW
Solved! Go to Solution.
2024-01-26 1:10 AM
you should add
__attribute__((weak)) void _gettimeofday(void){}
as well.
2025-06-25 7:51 PM
i am add this code in my project and fit it!
#if 1
__attribute__((weak)) void _close(void){}
__attribute__((weak)) void _lseek(void){}
__attribute__((weak)) void _read(void){}
__attribute__((weak)) void _write(void){}
__attribute__((weak)) void _fstat(void){}
__attribute__((weak)) void _isatty(void){}
__attribute__((weak)) void _getpid(void){}
__attribute__((weak)) void _kill(void){}
#endif