386BSD 0.1 development
[unix-history] / usr / src / usr.bin / nm / nm.1
CommitLineData
7b089094
WJ
1.\" Copyright (c) 1980, 1990 The Regents of the University of California.
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\" must display the following acknowledgement:
14.\" This product includes software developed by the University of
15.\" California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\" may be used to endorse or promote products derived from this software
18.\" without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)nm.1 6.7 (Berkeley) 7/30/91
33.\"
34.Dd July 30, 1991
35.Dt NM 1
36.Os BSD 4
37.Sh NAME
38.Nm nm
39.Nd display name list (symbol table)
40.Sh SYNOPSIS
41.Nm nm
42.Op Fl agnopruw
43.Ar
44.Sh DESCRIPTION
45The symbol table (name list) of each object in
46.Ar file(s)
47is displayed.
48If a library (archive) is given,
49.Nm
50displays a list for each
51object archive member.
52If
53.Ar file
54is not present,
55.Nm
56searches for the file
57.Pa a.out
58and if present, displays the symbol
59table for
60.Pa a.out .
61.Bl -tag -width flag
62.It Fl a
63Display symbol table entries inserted for use by debuggers.
64.It Fl g
65Restrict display to external (global) symbols.
66.It Fl n
67Present results in numerical order.
68.It Fl o
69Display full path or library name of object on every line.
70.It Fl p
71Do not sort at all.
72.It Fl r
73Reverse order sort.
74.It Fl u
75Display undefined symbols only.
76.It Fl w
77Warn about non-object archive members.
78Normally, nm will silently ignore all archive members which are not
79object files.
80.El
81.Pp
82Each symbol name is preceded by its value (a blank field if the symbol
83is undefined) and one of the following letters:
84.Pp
85.Bl -tag -width Ds -compact -offset indent
86.It Fl
87debugger symbol table entries (see the
88.Fl a
89option).
90.It Li A
91absolute
92.It Li B
93bss segment symbol
94.It Li C
95common symbol
96.It Li D
97data segment symbol
98.It Li f
99file name
100.It Li T
101text segment symbol
102.It Li U
103undefined
104.El
105.Pp
106If the symbol is local (non-external) the type letter is in lower case.
107The output is sorted alphabetically.
108.Sh SEE ALSO
109.Xr ar 1 ,
110.Xr ar 5 ,
111.Xr a.out 5 ,
112.Xr stab 5
113.Sh HISTORY
114An
115.Nm nm
116command appeared in
117.At v6 .