Deleted Added
full compact
ldd.1 (180236) ldd.1 (181136)
1.\" $FreeBSD: head/usr.bin/ldd/ldd.1 180236 2008-07-03 22:37:51Z edwin $
1.\" $FreeBSD: head/usr.bin/ldd/ldd.1 181136 2008-08-01 21:52:41Z jhb $
2.\"
3.Dd May 15, 2008
4.Dt LDD 1
5.Os
6.Sh NAME
7.Nm ldd
8.Nd list dynamic object dependencies
9.Sh SYNOPSIS

--- 49 unchanged lines hidden (view full) ---

59files for the definitive meaning of all the fields.
60.Sh EXAMPLES
61The following is an example of a shell pipeline which uses the
62.Fl f
63option.
64It will print a report of all ELF binaries in the current directory,
65which link against libc.so.6:
66.Dl "find . -type f | xargs -n1 file -F " " | grep ELF | cut -f1 -d' ' | xargs ldd -f '%A %o\en' | grep libc.so.6"
2.\"
3.Dd May 15, 2008
4.Dt LDD 1
5.Os
6.Sh NAME
7.Nm ldd
8.Nd list dynamic object dependencies
9.Sh SYNOPSIS

--- 49 unchanged lines hidden (view full) ---

59files for the definitive meaning of all the fields.
60.Sh EXAMPLES
61The following is an example of a shell pipeline which uses the
62.Fl f
63option.
64It will print a report of all ELF binaries in the current directory,
65which link against libc.so.6:
66.Dl "find . -type f | xargs -n1 file -F " " | grep ELF | cut -f1 -d' ' | xargs ldd -f '%A %o\en' | grep libc.so.6"
67.Sh BUGS
68On 64 bit architectures, dlopen() cannot open 32 bit dynamic libraries,
69so
70.Nm
71will show the error
72.Qq "unsupported file layout" .
73.Sh SEE ALSO
74.Xr ld 1 ,
75.Xr nm 1 ,
76.Xr rtld 1
77.Sh HISTORY
78A
79.Nm
80utility first appeared in SunOS 4.0, it appeared in its current form in
81.Fx 1.1 .
82.Pp
83The
84.Fl v
85support is based on code written by
86.An John Polstra Aq jdp@polstra.com
67.Sh SEE ALSO
68.Xr ld 1 ,
69.Xr nm 1 ,
70.Xr rtld 1
71.Sh HISTORY
72A
73.Nm
74utility first appeared in SunOS 4.0, it appeared in its current form in
75.Fx 1.1 .
76.Pp
77The
78.Fl v
79support is based on code written by
80.An John Polstra Aq jdp@polstra.com