From 7c56e917e752736ec4df3e10765327bdaa9bcc2c Mon Sep 17 00:00:00 2001 From: chenxiaoyi Date: Thu, 13 Jun 2024 15:27:52 +0800 Subject: [PATCH] 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 Co-authored-by: xuxin19 --- 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