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 7c56e917e752736ec4df3e10765327bdaa9bcc2c
Author: chenxiaoyi <[email protected]>
AuthorDate: Thu Jun 13 15:27:52 2024 +0800

    libc:add missing source to fix windows build error
    
    nuttx_all.lib(netlib_setipv4dnsaddr.obj) : error LNK2019: unresolved 
external symbol _bzero referenced in function _netlib_set_ipv4dnsaddr
    
    Co-authored-by: chenxiaoyi <[email protected]>
    Co-authored-by: xuxin19 <[email protected]>
---
 libs/libc/string/CMakeLists.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libs/libc/string/CMakeLists.txt b/libs/libc/string/CMakeLists.txt
index aa25dc5ad6..c893384de2 100644
--- a/libs/libc/string/CMakeLists.txt
+++ b/libs/libc/string/CMakeLists.txt
@@ -57,6 +57,7 @@ set(SRCS
     lib_strsep.c
     lib_strerrorr.c
     lib_explicit_bzero.c
+    lib_bzero.c
     lib_strsignal.c
     lib_timingsafe_bcmp.c
     lib_index.c

Reply via email to