2020-03-30 22:20:15 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Our current make(1)-based approach to dependency tracking cannot cope with
|
|
|
|
# certain source tree changes, including:
|
|
|
|
# - removing source files
|
|
|
|
# - replacing generated files with files committed to the tree
|
|
|
|
# - changing file extensions (e.g. a C source file rewritten in C++)
|
|
|
|
#
|
|
|
|
# We handle those cases here in an ad-hoc fashion by looking for the known-
|
|
|
|
# bad case in the main .depend file, and if found deleting all of the related
|
|
|
|
# .depend files (including for example the lib32 version).
|
2020-08-26 05:41:29 +02:00
|
|
|
#
|
|
|
|
# These tests increase the build time (albeit by a small amount), so they
|
|
|
|
# should be removed once enough time has passed and it is extremely unlikely
|
|
|
|
# anyone would try a NO_CLEAN build against an object tree from before the
|
|
|
|
# related change. One year should be sufficient.
|
2020-03-30 22:20:15 +02:00
|
|
|
|
2023-07-11 02:53:04 +02:00
|
|
|
set -e
|
|
|
|
set -u
|
|
|
|
|
|
|
|
warn()
|
|
|
|
{
|
|
|
|
echo "$(basename "$0"):" "$@" >&2
|
|
|
|
}
|
|
|
|
|
|
|
|
err()
|
|
|
|
{
|
|
|
|
warn "$@"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
usage()
|
|
|
|
{
|
|
|
|
echo "usage: $(basename $0) [-v] [-n] objtop" >&2
|
|
|
|
}
|
|
|
|
|
|
|
|
VERBOSE=
|
|
|
|
PRETEND=
|
|
|
|
while getopts vn o; do
|
|
|
|
case "$o" in
|
|
|
|
v)
|
|
|
|
VERBOSE=1
|
|
|
|
;;
|
|
|
|
n)
|
|
|
|
PRETEND=1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift $((OPTIND-1))
|
|
|
|
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-03-30 22:20:15 +02:00
|
|
|
OBJTOP=$1
|
2023-07-11 02:53:04 +02:00
|
|
|
shift
|
2020-03-30 22:20:15 +02:00
|
|
|
if [ ! -d "$OBJTOP" ]; then
|
2023-07-11 02:53:04 +02:00
|
|
|
err "$OBJTOP: Not a directory"
|
2020-03-30 22:20:15 +02:00
|
|
|
fi
|
|
|
|
|
2023-07-11 02:53:04 +02:00
|
|
|
if [ -z "${MACHINE+set}" ]; then
|
2023-07-11 02:53:04 +02:00
|
|
|
err "MACHINE not set"
|
2023-07-11 02:53:04 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${MACHINE_ARCH+set}" ]; then
|
2023-07-11 02:53:04 +02:00
|
|
|
err "MACHINE_ARCH not set"
|
2023-07-11 02:53:04 +02:00
|
|
|
fi
|
|
|
|
|
2023-07-27 06:10:47 +02:00
|
|
|
if [ -z "${ALL_libcompats+set}" ]; then
|
|
|
|
err "ALL_libcompats not set"
|
|
|
|
fi
|
|
|
|
|
2023-07-11 02:53:04 +02:00
|
|
|
run()
|
|
|
|
{
|
|
|
|
if [ "$VERBOSE" ]; then
|
|
|
|
echo "$@"
|
|
|
|
fi
|
|
|
|
if ! [ "$PRETEND" ]; then
|
|
|
|
"$@"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:20:15 +02:00
|
|
|
# $1 directory
|
|
|
|
# $2 source filename w/o extension
|
|
|
|
# $3 source extension
|
2024-09-10 19:54:44 +02:00
|
|
|
# $4 optional regex for egrep -w
|
2020-03-30 22:20:15 +02:00
|
|
|
clean_dep()
|
|
|
|
{
|
2023-07-27 06:10:47 +02:00
|
|
|
for libcompat in "" $ALL_libcompats; do
|
|
|
|
dirprfx=${libcompat:+obj-lib${libcompat}/}
|
2024-09-10 19:54:44 +02:00
|
|
|
if egrep -qw "${4:-$2\.$3}" "$OBJTOP"/$dirprfx$1/.depend.$2.*o 2>/dev/null; then
|
2023-07-27 06:10:47 +02:00
|
|
|
echo "Removing stale ${libcompat:+lib${libcompat} }dependencies and objects for $2.$3"
|
|
|
|
run rm -f \
|
|
|
|
"$OBJTOP"/$dirprfx$1/.depend.$2.* \
|
|
|
|
"$OBJTOP"/$dirprfx$1/$2.*o
|
|
|
|
fi
|
|
|
|
done
|
2020-03-30 22:20:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Date Rev Description
|
2022-03-25 19:03:18 +01:00
|
|
|
|
2022-03-26 10:11:31 +01:00
|
|
|
# 20220326 fbc002cb72d2 move from bcmp.c to bcmp.S
|
2022-03-25 19:03:18 +01:00
|
|
|
if [ "$MACHINE_ARCH" = "amd64" ]; then
|
2023-07-11 01:18:15 +02:00
|
|
|
clean_dep lib/libc bcmp c
|
2022-03-25 19:03:18 +01:00
|
|
|
fi
|
2022-07-14 22:03:59 +02:00
|
|
|
|
|
|
|
# 20220524 68fe988a40ca kqueue_test binary replaced shell script
|
|
|
|
if stat "$OBJTOP"/tests/sys/kqueue/libkqueue/*kqtest* \
|
|
|
|
"$OBJTOP"/tests/sys/kqueue/libkqueue/.depend.kqtest* >/dev/null 2>&1; then
|
|
|
|
echo "Removing old kqtest"
|
2023-07-11 02:53:04 +02:00
|
|
|
run rm -f "$OBJTOP"/tests/sys/kqueue/libkqueue/.depend.* \
|
2022-07-14 22:03:59 +02:00
|
|
|
"$OBJTOP"/tests/sys/kqueue/libkqueue/*
|
|
|
|
fi
|
2022-11-16 06:17:28 +01:00
|
|
|
|
|
|
|
# 20221115 42d10b1b56f2 move from rs.c to rs.cc
|
|
|
|
clean_dep usr.bin/rs rs c
|
2023-01-13 19:09:51 +01:00
|
|
|
|
|
|
|
# 20230110 bc42155199b5 usr.sbin/zic/zic -> usr.sbin/zic
|
|
|
|
if [ -d "$OBJTOP"/usr.sbin/zic/zic ] ; then
|
|
|
|
echo "Removing old zic directory"
|
2023-07-11 02:53:04 +02:00
|
|
|
run rm -rf "$OBJTOP"/usr.sbin/zic/zic
|
2023-01-13 19:09:51 +01:00
|
|
|
fi
|
2023-02-08 07:05:58 +01:00
|
|
|
|
|
|
|
# 20230208 29c5f8bf9a01 move from mkmakefile.c to mkmakefile.cc
|
|
|
|
clean_dep usr.sbin/config mkmakefile c
|
2023-02-09 05:56:11 +01:00
|
|
|
# 20230209 83d7ed8af3d9 convert to main.cc and mkoptions.cc
|
|
|
|
clean_dep usr.sbin/config main c
|
|
|
|
clean_dep usr.sbin/config mkoptions c
|
2023-04-24 23:05:18 +02:00
|
|
|
|
|
|
|
# 20230401 54579376c05e kqueue1 from syscall to C wrapper
|
|
|
|
clean_dep lib/libc kqueue1 S
|
2023-06-24 20:12:06 +02:00
|
|
|
|
|
|
|
# 20230623 b077aed33b7b OpenSSL 3.0 update
|
|
|
|
if [ -f "$OBJTOP"/secure/lib/libcrypto/aria.o ]; then
|
|
|
|
echo "Removing old OpenSSL 1.1.1 tree"
|
2023-07-27 06:10:47 +02:00
|
|
|
for libcompat in "" $ALL_libcompats; do
|
|
|
|
dirprfx=${libcompat:+obj-lib${libcompat}/}
|
|
|
|
run rm -rf "$OBJTOP"/${dirprfx}secure/lib/libcrypto \
|
|
|
|
"$OBJTOP"/${dirprfx}secure/lib/libssl
|
|
|
|
done
|
2023-06-24 20:12:06 +02:00
|
|
|
fi
|
2023-07-11 00:50:31 +02:00
|
|
|
|
2023-07-07 20:59:26 +02:00
|
|
|
# 20230714 ee8b0c436d72 replace ffs/fls implementations with clang builtins
|
|
|
|
clean_dep lib/libc ffs S
|
|
|
|
clean_dep lib/libc ffsl S
|
|
|
|
clean_dep lib/libc ffsll S
|
|
|
|
clean_dep lib/libc fls S
|
|
|
|
clean_dep lib/libc flsl S
|
|
|
|
clean_dep lib/libc flsll S
|
2023-08-15 23:14:26 +02:00
|
|
|
|
|
|
|
# 20230815 28f6c2f29280 GoogleTest update
|
|
|
|
if [ -e "$OBJTOP"/tests/sys/fs/fusefs/mockfs.o ] && \
|
|
|
|
grep -q '_ZN7testing8internal18g_linked_ptr_mutexE' "$OBJTOP"/tests/sys/fs/fusefs/mockfs.o; then
|
|
|
|
echo "Removing stale fusefs GoogleTest objects"
|
|
|
|
run rm -rf "$OBJTOP"/tests/sys/fs/fusefs
|
|
|
|
fi
|
2023-11-02 19:06:19 +01:00
|
|
|
|
|
|
|
# 20231031 0527c9bdc718 Remove forward compat ino64 stuff
|
|
|
|
clean_dep lib/libc fstat c
|
|
|
|
clean_dep lib/libc fstatat c
|
|
|
|
clean_dep lib/libc fstatfs c
|
|
|
|
clean_dep lib/libc getdirentries c
|
|
|
|
clean_dep lib/libc getfsstat c
|
|
|
|
clean_dep lib/libc statfs c
|
2024-03-08 20:14:24 +01:00
|
|
|
|
|
|
|
# 20240308 e6ffc7669a56 Remove pointless MD syscall(2)
|
|
|
|
# 20240308 0ee0ae237324 Remove pointless MD syscall(2)
|
|
|
|
# 20240308 7b3836c28188 Remove pointless MD syscall(2)
|
2024-08-05 21:49:06 +02:00
|
|
|
if [ ${MACHINE} != i386 ]; then
|
2024-09-10 19:54:45 +02:00
|
|
|
libcompats=
|
|
|
|
for libcompat in $ALL_libcompats; do
|
|
|
|
if [ $MACHINE = amd64 ] && [ $libcompat = 32 ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
libcompats="${libcompats+$libcompats }$libcompat"
|
|
|
|
done
|
|
|
|
ALL_libcompats="$libcompats" clean_dep lib/libsys syscall S ".*/syscall\.S"
|
|
|
|
ALL_libcompats="$libcompats" clean_dep lib/libc syscall S ".*/syscall\.S"
|
2024-03-08 20:14:24 +01:00
|
|
|
fi
|
2024-04-18 15:57:38 +02:00
|
|
|
|
|
|
|
# 20240416 2fda3ab0ac19 WITH_NVME: Remove from broken
|
|
|
|
if [ -f "$OBJTOP"/rescue/rescue/rescue.mk ] && \
|
2024-09-10 18:33:06 +02:00
|
|
|
! grep -q 'nvme_util.o' "$OBJTOP"/rescue/rescue/rescue.mk; then
|
2024-04-18 16:31:13 +02:00
|
|
|
echo "removing rescue.mk without nvme_util.o"
|
2024-09-10 18:14:37 +02:00
|
|
|
run rm -f "$OBJTOP"/rescue/rescue/rescue.mk
|
2024-04-18 15:57:38 +02:00
|
|
|
fi
|
2024-09-10 17:29:39 +02:00
|
|
|
|
|
|
|
# 20240910 e2df9bb44109
|
2024-09-10 19:54:45 +02:00
|
|
|
clean_dep cddl/lib/libzpool abd_os c "linux/zfs/abd_os\.c"
|
2024-10-11 08:39:18 +02:00
|
|
|
|
|
|
|
# 20241007
|
|
|
|
clean_dep cddl/lib/libzpool zfs_debug c "linux/zfs/zfs_debug\.c"
|
2024-10-11 09:22:15 +02:00
|
|
|
|
|
|
|
# 20241011
|
|
|
|
clean_dep cddl/lib/libzpool arc_os c "linux/zfs/arc_os\.c"
|
2024-10-18 20:15:30 +02:00
|
|
|
|
|
|
|
# 20241018 1363acbf25de libc/csu: Support IFUNCs on riscv
|
|
|
|
if [ ${MACHINE} = riscv ]; then
|
|
|
|
for f in "$OBJTOP"/lib/libc/.depend.libc_start1.*o; do
|
|
|
|
if [ ! -f "$f" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
if ! grep -q 'lib/libc/csu/riscv/reloc\.c' "$f"; then
|
|
|
|
echo "Removing stale dependencies and objects for libc_start1.c"
|
|
|
|
run rm -f \
|
|
|
|
"$OBJTOP"/lib/libc/.depend.libc_start1.* \
|
|
|
|
"$OBJTOP"/lib/libc/libc_start1.*o
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|