summaryrefslogtreecommitdiff
path: root/elf/ldd.sh.in
blob: ed43789cfa52e1ef55f3f80ab808ef1275df5cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /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.
  case "$1" in
  /*) file="$1" ;;
  *) file="./$1" ;;
  esac
  exec ${RTLD} --list "$file" && exit 1
  exit ;;
*)
  set -e	# Bail out immediately if ${RTLD} loses on any argument.
  for file; do
    echo "${file}:"
    case "$file" in
    /*) file="$file" ;;
    *) file="./$file" ;;
    esac
    ${RTLD} --list "$file"
  done
esac

exit 0