Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 02 Apr 2026 10:03:23 +0000
From:      Jessica Clarke <jrtc27@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 2bc5bc14a8b2 - stable/14 - cross-build: Provide mempcpy when building on macOS
Message-ID:  <69ce3eeb.3d0dc.5c50e619@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/14 has been updated by jrtc27:

URL: https://cgit.FreeBSD.org/src/commit/?id=2bc5bc14a8b218ee876bf43a16ef15abaff83e7b

commit 2bc5bc14a8b218ee876bf43a16ef15abaff83e7b
Author:     Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2026-03-23 16:56:09 +0000
Commit:     Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2026-04-02 10:02:16 +0000

    cross-build: Provide mempcpy when building on macOS
    
    We could patch the tzcode config to not use it, but it's simple to
    provide an implementation of it and avoid spreading cross-build
    bootstrapping special cases.
    
    Fixes:          ff2c98b30b57 ("tzcode: Update to 2026a")
    MFC after:      1 week
    
    (cherry picked from commit 47402c9422ec6c9ba76d96414f5a08bd35a9e1fd)
---
 tools/build/Makefile                         | 3 +++
 tools/build/cross-build/include/mac/string.h | 2 ++
 2 files changed, 5 insertions(+)

diff --git a/tools/build/Makefile b/tools/build/Makefile
index 51a349ac0277..98ee8b5bda9c 100644
--- a/tools/build/Makefile
+++ b/tools/build/Makefile
@@ -223,6 +223,9 @@ SYSINCS+=	${SRCTOP}/sys/sys/linker_set.h
 .if ${.MAKE.OS} == "Darwin"
 # Standalone implementation of secure_getenv(), not available on MacOS.
 SRCS+=	secure_getenv.c
+# macOS currently lacks mempcpy
+.PATH: ${LIBC_SRCTOP}/string
+SRCS+=	mempcpy.c
 .endif # ${MAKE.OS} == "Darwin"
 
 # Provide the same arc4random implementation on Linux/macOS
diff --git a/tools/build/cross-build/include/mac/string.h b/tools/build/cross-build/include/mac/string.h
index 58464f1f9834..8a36bb1f392d 100644
--- a/tools/build/cross-build/include/mac/string.h
+++ b/tools/build/cross-build/include/mac/string.h
@@ -37,6 +37,8 @@
 
 #include_next <string.h>
 
+void	*(mempcpy)(void * __restrict, const void * __restrict, size_t);
+
 /*
  * strchrnul is provided by macOS 15.4 and later.  However, there is
  * no good way to detect the current host version at compile time, so


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69ce3eeb.3d0dc.5c50e619>