From: Andrei Tatar Date: Wed, 7 Jun 2023 09:07:17 +0000 (+0200) Subject: Include missing parts of the string library X-Git-Tag: RELEASE-0.14.0~14 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2ac1fb0e53f7bccd070eab31e79774f7ff535bbb;p=unikraft%2Flibs%2Fmusl.git Include missing parts of the string library The string part of libc was previously missing and explicit_bzero.c, which this change fixes. Signed-off-by: Andrei Tatar Reviewed-by: Stefan Jumarea Reviewed-by: Eduard Vintilă Approved-by: Razvan Deaconescu Tested-by: Unikraft CI GitHub-Closes: #55 --- diff --git a/Makefile.uk.musl.string b/Makefile.uk.musl.string index 17cffa1..7b5b83f 100644 --- a/Makefile.uk.musl.string +++ b/Makefile.uk.musl.string @@ -4,6 +4,7 @@ LIBMUSL_STRING_HDRS-y += $(LIBMUSL)/include/errno.h LIBMUSL_STRING_HDRS-y += $(LIBMUSL)/src/internal/libc.h LIBMUSL_STRING_HDRS-y += $(LIBMUSL)/include/limits.h LIBMUSL_STRING_HDRS-y += $(LIBMUSL)/src/internal/locale_impl.h +LIBMUSL_STRING_HDRS-y += $(LIBMUSL)/include/memory.h LIBMUSL_STRING_HDRS-y += $(LIBMUSL)/include/signal.h LIBMUSL_STRING_HDRS-y += $(LIBMUSL)/include/stdint.h LIBMUSL_STRING_HDRS-y += $(LIBMUSL)/include/stdlib.h @@ -16,6 +17,7 @@ LIBMUSL_STRING_HDRS-y += $(LIBMUSL)/include/wctype.h LIBMUSL_STRING_SRCS-y += $(LIBMUSL)/src/string/bcmp.c LIBMUSL_STRING_SRCS-y += $(LIBMUSL)/src/string/bcopy.c LIBMUSL_STRING_SRCS-y += $(LIBMUSL)/src/string/bzero.c +LIBMUSL_STRING_SRCS-y += $(LIBMUSL)/src/string/explicit_bzero.c LIBMUSL_STRING_SRCS-y += $(LIBMUSL)/src/string/index.c LIBMUSL_STRING_SRCS-y += $(LIBMUSL)/src/string/memccpy.c LIBMUSL_STRING_SRCS-y += $(LIBMUSL)/src/string/memchr.c