1995-10-09 08:06:29 +01:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
# This is the `ldd' command, which lists what shared libraries are
|
|
|
|
# used by given dynamically-linked executables. It works by invoking the
|
|
|
|
# run-time dynamic linker as a command and giving it the special `--list'
|
|
|
|
# switch.
|
|
|
|
|
|
|
|
RTLD=@RTLD@
|
|
|
|
|
|
|
|
case $# in
|
|
|
|
0)
|
|
|
|
echo >&2 "Usage: $0 FILE..."
|
|
|
|
exit 1 ;;
|
|
|
|
1)
|
|
|
|
# We don't list the file name when there is only one.
|
1995-10-17 02:08:25 +01:00
|
|
|
case "$1" in
|
|
|
|
/*) file="$1" ;;
|
|
|
|
*) file="./$1" ;;
|
|
|
|
esac
|
1996-07-27 09:29:13 +02:00
|
|
|
if ${RTLD} --verify "$file"; then
|
1996-08-16 03:33:20 +02:00
|
|
|
LD_TRACE_LOADED_OBJECTS=1 exec ${RTLD} "$file" && exit 1
|
1996-07-27 09:29:13 +02:00
|
|
|
else
|
|
|
|
echo ' not a dynamic executable'
|
|
|
|
fi
|
1995-10-09 08:06:29 +01:00
|
|
|
exit ;;
|
|
|
|
*)
|
|
|
|
set -e # Bail out immediately if ${RTLD} loses on any argument.
|
|
|
|
for file; do
|
|
|
|
echo "${file}:"
|
1995-10-17 02:08:25 +01:00
|
|
|
case "$file" in
|
|
|
|
/*) file="$file" ;;
|
|
|
|
*) file="./$file" ;;
|
|
|
|
esac
|
1996-07-27 09:29:13 +02:00
|
|
|
if ${RTLD} --verify "$file"; then
|
1996-08-16 03:33:20 +02:00
|
|
|
LD_TRACE_LOADED_OBJECTS=1 ${RTLD} "$file"
|
1996-07-27 09:29:13 +02:00
|
|
|
else
|
|
|
|
echo ' not a dynamic executable'
|
|
|
|
fi
|
1995-10-09 08:06:29 +01:00
|
|
|
done
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|