This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 8c93783feee52ec983b680bd81617d5a67f91629 Author: buxiasen <buxia...@xiaomi.com> AuthorDate: Wed Apr 16 17:16:47 2025 +0800 gcov: fix link undefined error undefined reference to `__gcov_execle' Signed-off-by: buxiasen <buxia...@xiaomi.com> --- libs/libbuiltin/libgcc/gcov.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/libbuiltin/libgcc/gcov.c b/libs/libbuiltin/libgcc/gcov.c index 5039fdde6f..02d41d7132 100644 --- a/libs/libbuiltin/libgcc/gcov.c +++ b/libs/libbuiltin/libgcc/gcov.c @@ -464,6 +464,10 @@ void __gcov_execv(void) { } +void __gcov_execle(void) +{ +} + pid_t __gcov_fork(void) { return fork();