aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2026-01-15 15:04:48 +0000
committerAndrew Turner <andrew@FreeBSD.org>2026-01-15 15:05:28 +0000
commitfb96702a034c663adb4a1b44299af01fa71e29fd (patch)
tree3dd6b44d4452e23360365c9c40fea17907a229f5
parentfaa31fc0e7acc1c53bba2b69a63e9ff55d24faf7 (diff)
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
-rwxr-xr-xtools/build/depend-cleanup.sh6
1 files changed, 6 insertions, 0 deletions
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