git: fb96702a034c - main - depend-cleanup.sh: Clean up the old arm64 memset.S
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 15 Jan 2026 15:14:41 UTC
The branch main has been updated by andrew:
URL: https://cgit.FreeBSD.org/src/commit/?id=fb96702a034c663adb4a1b44299af01fa71e29fd
commit fb96702a034c663adb4a1b44299af01fa71e29fd
Author: Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2026-01-15 15:04:48 +0000
Commit: Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2026-01-15 15:05:28 +0000
depend-cleanup.sh: Clean up the old arm64 memset.S
This has moved from a generated file in objdir to the source tree.
Remove the old file and any .depend files that reference it.
Reviewed by: bapt (via IRC)
Fixes: 41ccf82b29f3 ("libc/aarch64: Use MOPS implementations of memcpy/memmove/memset where availble")
Sponsored by: Arm Ltd
Differential Revision: https://reviews.freebsd.org/D54729
---
tools/build/depend-cleanup.sh | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tools/build/depend-cleanup.sh b/tools/build/depend-cleanup.sh
index e7b62510a4e5..abdb0afb4b55 100755
--- a/tools/build/depend-cleanup.sh
+++ b/tools/build/depend-cleanup.sh
@@ -349,3 +349,9 @@ if [ ${MACHINE} = riscv ]; then
clean_dep lib/libc bcopy c "libc.string.bcopy.c"
clean_dep lib/libc bzero c "libc.string.bzero.c"
fi
+
+if [ ${MACHINE_ARCH} = "aarch64" ]; then
+ # 20260113 41ccf82b29f3 libc/aarch64: Use MOPS implementations of memcpy/memmove/memset where availble
+ clean_dep lib/libc memset S "[^/]memset.S"
+ run rm -fv "$OBJTOP"/lib/libc/memset.S
+fi