* rcparse.y: Add a couple of missing semicolons (accepted by bison
[deliverable/binutils-gdb.git] / binutils / binutils.texi
CommitLineData
765a273f 1\input texinfo @c -*- Texinfo -*-
c72af735 2@setfilename binutils.info
9bae56c5 3@include config.texi
c72af735 4
9abcc3b8
RP
5@ifinfo
6@format
7START-INFO-DIR-ENTRY
20f774c1
RP
8* Binutils: (binutils). The GNU binary utilities "ar", "objcopy",
9 "objdump", "nm", "nlmconv", "size",
10 "strings", "strip", and "ranlib".
9abcc3b8
RP
11END-INFO-DIR-ENTRY
12@end format
13@end ifinfo
c72af735 14
8b2c2275 15@ifinfo
54f74247 16Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
8b2c2275
RP
17
18Permission is granted to make and distribute verbatim copies of
19this manual provided the copyright notice and this permission notice
20are preserved on all copies.
21
22@ignore
23Permission is granted to process this file through TeX and print the
24results, provided the printed document carries a copying permission
25notice identical to this one except for the removal of this paragraph
26(this paragraph not being relevant to the printed manual).
27
28@end ignore
29
30Permission is granted to copy and distribute modified versions of this
31manual under the conditions for verbatim copying, provided also that
32the entire resulting derived work is distributed under the terms of a
33permission notice identical to this one.
34
35Permission is granted to copy and distribute translations of this manual
36into another language, under the above conditions for modified versions.
37@end ifinfo
38
c72af735
RP
39@synindex ky cp
40@c
df14d957 41@c This file documents the GNU binary utilities "ar", "ld", "objcopy",
ba7c8e29 42@c "objdump", "nm", "size", "strings", "strip", and "ranlib".
c72af735 43@c
54f74247 44@c Copyright (C) 1991, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
c72af735
RP
45@c
46@c This text may be freely distributed under the terms of the GNU
47@c General Public License.
48@c
27e94bd5 49
c72af735 50@setchapternewpage odd
b94ff924 51@settitle @sc{gnu} Binary Utilities
4928b97b
RP
52@titlepage
53@finalout
b94ff924 54@title The @sc{gnu} Binary Utilities
9bae56c5 55@subtitle Version @value{VERSION}
c72af735 56@sp 1
e32341a7 57@subtitle May 1993
c72af735 58@author Roland H. Pesch
4961ce5b 59@author Jeffrey M. Osier
c72af735
RP
60@author Cygnus Support
61@page
62
63@tex
650a49f0 64{\parskip=0pt \hfill Cygnus Support\par \hfill
c72af735
RP
65\TeX{}info \texinfoversion\par }
66@end tex
67
68@vskip 0pt plus 1filll
54f74247 69Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
c72af735
RP
70
71Permission is granted to make and distribute verbatim copies of
72this manual provided the copyright notice and this permission notice
73are preserved on all copies.
74
75Permission is granted to copy and distribute modified versions of this
76manual under the conditions for verbatim copying, provided also that
77the entire resulting derived work is distributed under the terms of a
78permission notice identical to this one.
79
80Permission is granted to copy and distribute translations of this manual
81into another language, under the above conditions for modified versions.
82@end titlepage
83
eae04238 84@node Top
8981cac5 85@top Introduction
c72af735
RP
86
87@cindex version
b94ff924 88This brief manual contains preliminary documentation for the @sc{gnu} binary
9bae56c5 89utilities (collectively version @value{VERSION}):
8b2c2275
RP
90
91@iftex
c72af735
RP
92@table @code
93@item ar
94Create, modify, and extract from archives
95
96@item nm
97List symbols from object files
98
eed5eeab
DM
99@item objcopy
100Copy and translate object files
101
c72af735
RP
102@item objdump
103Display information from object files
104
105@item ranlib
106Generate index to archive contents
107
108@item size
eae04238 109List file section sizes and total size
c72af735 110
ba7c8e29
DM
111@item strings
112List printable strings from files
113
c72af735
RP
114@item strip
115Discard symbols
eae04238
DM
116
117@item c++filt
118Demangle encoded C++ symbols
119
fb38844d
ILT
120@item addr2line
121Convert addresses into file names and line numbers
122
eae04238
DM
123@item nlmconv
124Convert object code into a Netware Loadable Module
c72af735 125@end table
8b2c2275 126@end iftex
c72af735
RP
127
128@menu
8b2c2275 129* ar:: Create, modify, and extract from archives
8b2c2275 130* nm:: List symbols from object files
eed5eeab 131* objcopy:: Copy and translate object files
8b2c2275
RP
132* objdump:: Display information from object files
133* ranlib:: Generate index to archive contents
134* size:: List section sizes and total size
ba7c8e29 135* strings:: List printable strings from files
8b2c2275 136* strip:: Discard symbols
b6216af2 137* c++filt:: Filter to demangle encoded C++ symbols
fb38844d 138* addr2line:: Convert addresses to file and line
94e9ad77 139* nlmconv:: Converts object code into an NLM
eae04238 140* Selecting The Target System:: How these utilities determine the target.
cbcfa129
ILT
141* Reporting Bugs:: Reporting Bugs
142* Index:: Index
c72af735
RP
143@end menu
144
eae04238 145@node ar
c72af735
RP
146@chapter ar
147
148@kindex ar
149@cindex archives
150@cindex collections of files
151@smallexample
650a49f0 152ar [-]@var{p}[@var{mod} [@var{relpos}]] @var{archive} [@var{member}@dots{}]
4d9b5d5a 153ar -M [ <mri-script ]
c72af735
RP
154@end smallexample
155
b94ff924 156The @sc{gnu} @code{ar} program creates, modifies, and extracts from
c72af735
RP
157archives. An @dfn{archive} is a single file holding a collection of
158other files in a structure that makes it possible to retrieve
159the original individual files (called @dfn{members} of the archive).
160
161The original files' contents, mode (permissions), timestamp, owner, and
ec40bbb8 162group are preserved in the archive, and can be restored on
c72af735
RP
163extraction.
164
165@cindex name length
b94ff924 166@sc{gnu} @code{ar} can maintain archives whose members have names of any
c72af735 167length; however, depending on how @code{ar} is configured on your
ec40bbb8
DM
168system, a limit on member-name length may be imposed for compatibility
169with archive formats maintained with other tools. If it exists, the
c72af735
RP
170limit is often 15 characters (typical of formats related to a.out) or 16
171characters (typical of formats related to coff).
172
173@cindex libraries
174@code{ar} is considered a binary utility because archives of this sort
175are most often used as @dfn{libraries} holding commonly needed
176subroutines.
177
178@cindex symbol index
e31e9a8d 179@code{ar} creates an index to the symbols defined in relocatable
c72af735
RP
180object modules in the archive when you specify the modifier @samp{s}.
181Once created, this index is updated in the archive whenever @code{ar}
182makes a change to its contents (save for the @samp{q} update operation).
183An archive with such an index speeds up linking to the library, and
184allows routines in the library to call each other without regard to
185their placement in the archive.
186
918c2f61 187You may use @samp{nm -s} or @samp{nm --print-armap} to list this index
c72af735
RP
188table. If an archive lacks the table, another form of @code{ar} called
189@code{ranlib} can be used to add just the table.
190
765a273f
RP
191@cindex compatibility, @code{ar}
192@cindex @code{ar} compatibility
b94ff924 193@sc{gnu} @code{ar} is designed to be compatible with two different
765a273f
RP
194facilities. You can control its activity using command-line options,
195like the different varieties of @code{ar} on Unix systems; or, if you
196specify the single command-line option @samp{-M}, you can control it
197with a script supplied via standard input, like the MRI ``librarian''
198program.
199
200@menu
eae04238
DM
201* ar cmdline:: Controlling @code{ar} on the command line
202* ar scripts:: Controlling @code{ar} with a script
765a273f
RP
203@end menu
204
205@page
eae04238 206@node ar cmdline
765a273f
RP
207@section Controlling @code{ar} on the command line
208
209@smallexample
650a49f0 210ar [-]@var{p}[@var{mod} [@var{relpos}]] @var{archive} [@var{member}@dots{}]
765a273f
RP
211@end smallexample
212
213@cindex Unix compatibility, @code{ar}
214When you use @code{ar} in the Unix style, @code{ar} insists on at least two
215arguments to execute: one keyletter specifying the @emph{operation}
216(optionally accompanied by other keyletters specifying
217@emph{modifiers}), and the archive name to act on.
c72af735 218
650a49f0 219Most operations can also accept further @var{member} arguments,
c72af735
RP
220specifying particular files to operate on.
221
b94ff924 222@sc{gnu} @code{ar} allows you to mix the operation code @var{p} and modifier
c72af735
RP
223flags @var{mod} in any order, within the first command-line argument.
224
225If you wish, you may begin the first command-line argument with a
226dash.
227
228@cindex operations on archive
229The @var{p} keyletter specifies what operation to execute; it may be
230any of the following, but you must specify only one of them:
231
232@table @code
233@item d
234@cindex deleting from archive
235@emph{Delete} modules from the archive. Specify the names of modules to
650a49f0 236be deleted as @var{member}@dots{}; the archive is untouched if you
c72af735
RP
237specify no files to delete.
238
e31e9a8d 239If you specify the @samp{v} modifier, @code{ar} lists each module
c72af735
RP
240as it is deleted.
241
242@item m
243@cindex moving in archive
244Use this operation to @emph{move} members in an archive.
245
246The ordering of members in an archive can make a difference in how
247programs are linked using the library, if a symbol is defined in more
248than one member.
249
250If no modifiers are used with @code{m}, any members you name in the
650a49f0 251@var{member} arguments are moved to the @emph{end} of the archive;
c72af735
RP
252you can use the @samp{a}, @samp{b}, or @samp{i} modifiers to move them to a
253specified place instead.
254
255@item p
256@cindex printing from archive
257@emph{Print} the specified members of the archive, to the standard
258output file. If the @samp{v} modifier is specified, show the member
259name before copying its contents to standard output.
260
650a49f0 261If you specify no @var{member} arguments, all the files in the archive are
ec40bbb8 262printed.
c72af735
RP
263
264@item q
265@cindex quick append to archive
650a49f0 266@emph{Quick append}; add the files @var{member}@dots{} to the end of
ec40bbb8 267@var{archive}, without checking for replacement.
c72af735
RP
268
269The modifiers @samp{a}, @samp{b}, and @samp{i} do @emph{not} affect this
270operation; new members are always placed at the end of the archive.
271
272The modifier @samp{v} makes @code{ar} list each file as it is appended.
273
274Since the point of this operation is speed, the archive's symbol table
275index is not updated, even if it already existed; you can use @samp{ar s} or
276@code{ranlib} explicitly to update the symbol table index.
277
278@item r
279@cindex replacement in archive
650a49f0 280Insert the files @var{member}@dots{} into @var{archive} (with
ec40bbb8
DM
281@emph{replacement}). This operation differs from @samp{q} in that any
282previously existing members are deleted if their names match those being
283added.
c72af735 284
650a49f0 285If one of the files named in @var{member}@dots{} does not exist, @code{ar}
c72af735
RP
286displays an error message, and leaves undisturbed any existing members
287of the archive matching that name.
288
289By default, new members are added at the end of the file; but you may
290use one of the modifiers @samp{a}, @samp{b}, or @samp{i} to request
291placement relative to some existing member.
292
293The modifier @samp{v} used with this operation elicits a line of
294output for each file inserted, along with one of the letters @samp{a} or
295@samp{r} to indicate whether the file was appended (no old member
296deleted) or replaced.
297
298@item t
299@cindex contents of archive
300Display a @emph{table} listing the contents of @var{archive}, or those
650a49f0 301of the files listed in @var{member}@dots{} that are present in the
c72af735
RP
302archive. Normally only the member name is shown; if you also want to
303see the modes (permissions), timestamp, owner, group, and size, you can
304request that by also specifying the @samp{v} modifier.
305
650a49f0 306If you do not specify a @var{member}, all files in the archive
c72af735
RP
307are listed.
308
309@cindex repeated names in archive
310@cindex name duplication in archive
311If there is more than one file with the same name (say, @samp{fie}) in
e31e9a8d 312an archive (say @samp{b.a}), @samp{ar t b.a fie} lists only the
c72af735
RP
313first instance; to see them all, you must ask for a complete
314listing---in our example, @samp{ar t b.a}.
315@c WRS only; per Gumby, this is implementation-dependent, and in a more
316@c recent case in fact works the other way.
317
318@item x
319@cindex extract from archive
650a49f0 320@emph{Extract} members (named @var{member}) from the archive. You can
c72af735
RP
321use the @samp{v} modifier with this operation, to request that
322@code{ar} list each name as it extracts it.
323
650a49f0 324If you do not specify a @var{member}, all files in the archive
c72af735
RP
325are extracted.
326
327@end table
328
329A number of modifiers (@var{mod}) may immediately follow the @var{p}
330keyletter, to specify variations on an operation's behavior:
331
332@table @code
333@item a
334@cindex relative placement in archive
335Add new files @emph{after} an existing member of the
ec40bbb8 336archive. If you use the modifier @samp{a}, the name of an existing archive
650a49f0 337member must be present as the @var{relpos} argument, before the
c72af735
RP
338@var{archive} specification.
339
340@item b
341Add new files @emph{before} an existing member of the
ec40bbb8 342archive. If you use the modifier @samp{b}, the name of an existing archive
650a49f0 343member must be present as the @var{relpos} argument, before the
c72af735
RP
344@var{archive} specification. (same as @samp{i}).
345
346@item c
347@cindex creating archives
348@emph{Create} the archive. The specified @var{archive} is always
650a49f0 349created if it did not exist, when you request an update. But a warning is
c72af735
RP
350issued unless you specify in advance that you expect to create it, by
351using this modifier.
352
52af6a44 353@item f
b94ff924 354Truncate names in the archive. @sc{gnu} @code{ar} will normally permit file
52af6a44
ILT
355names of any length. This will cause it to create archives which are
356not compatible with the native @code{ar} program on some systems. If
357this is a concern, the @samp{f} modifier may be used to truncate file
358names when putting them in the archive.
359
c72af735
RP
360@item i
361Insert new files @emph{before} an existing member of the
ec40bbb8 362archive. If you use the modifier @samp{i}, the name of an existing archive
650a49f0 363member must be present as the @var{relpos} argument, before the
c72af735
RP
364@var{archive} specification. (same as @samp{b}).
365
366@item l
367This modifier is accepted but not used.
368@c whaffor ar l modifier??? presumably compat; with
b94ff924 369@c what???---doc@@cygnus.com, 25jan91
c72af735
RP
370
371@item o
372@cindex dates in archive
373Preserve the @emph{original} dates of members when extracting them. If
374you do not specify this modifier, files extracted from the archive
e31e9a8d 375are stamped with the time of extraction.
c72af735
RP
376
377@item s
378@cindex writing archive index
379Write an object-file index into the archive, or update an existing one,
380even if no other change is made to the archive. You may use this modifier
381flag either with any operation, or alone. Running @samp{ar s} on an
382archive is equivalent to running @samp{ranlib} on it.
383
384@item u
385@cindex updating an archive
b703c078 386Normally, @samp{ar r}@dots{} inserts all files
c72af735
RP
387listed into the archive. If you would like to insert @emph{only} those
388of the files you list that are newer than existing members of the same
389names, use this modifier. The @samp{u} modifier is allowed only for the
390operation @samp{r} (replace). In particular, the combination @samp{qu} is
391not allowed, since checking the timestamps would lose any speed
392advantage from the operation @samp{q}.
393
394@item v
395This modifier requests the @emph{verbose} version of an operation. Many
396operations display additional information, such as filenames processed,
397when the modifier @samp{v} is appended.
4d9b5d5a
DM
398
399@item V
400This modifier shows the version number of @code{ar}.
765a273f
RP
401@end table
402
eae04238 403@node ar scripts
765a273f
RP
404@section Controlling @code{ar} with a script
405
406@smallexample
407ar -M [ <@var{script} ]
408@end smallexample
409
410@cindex MRI compatibility, @code{ar}
411@cindex scripts, @code{ar}
412If you use the single command-line option @samp{-M} with @code{ar}, you
413can control its operation with a rudimentary command language. This
e31e9a8d 414form of @code{ar} operates interactively if standard input is coming
765a273f
RP
415directly from a terminal. During interactive use, @code{ar} prompts for
416input (the prompt is @samp{AR >}), and continues executing even after
417errors. If you redirect standard input to a script file, no prompts are
e31e9a8d 418issued, and @code{ar} abandons execution (with a nonzero exit code)
765a273f
RP
419on any error.
420
421The @code{ar} command language is @emph{not} designed to be equivalent
422to the command-line options; in fact, it provides somewhat less control
423over archives. The only purpose of the command language is to ease the
b94ff924 424transition to @sc{gnu} @code{ar} for developers who already have scripts
765a273f
RP
425written for the MRI ``librarian'' program.
426
427The syntax for the @code{ar} command language is straightforward:
428@itemize @bullet
429@item
430commands are recognized in upper or lower case; for example, @code{LIST}
431is the same as @code{list}. In the following descriptions, commands are
432shown in upper case for clarity.
433
434@item
435a single command may appear on each line; it is the first word on the
436line.
437
438@item
439empty lines are allowed, and have no effect.
440
441@item
442comments are allowed; text after either of the characters @samp{*}
443or @samp{;} is ignored.
444
445@item
446Whenever you use a list of names as part of the argument to an @code{ar}
447command, you can separate the individual names with either commas or
448blanks. Commas are shown in the explanations below, for clarity.
449
450@item
451@samp{+} is used as a line continuation character; if @samp{+} appears
452at the end of a line, the text on the following line is considered part
453of the current command.
454@end itemize
455
456Here are the commands you can use in @code{ar} scripts, or when using
457@code{ar} interactively. Three of them have special significance:
458
459@code{OPEN} or @code{CREATE} specify a @dfn{current archive}, which is
460a temporary file required for most of the other commands.
461
462@code{SAVE} commits the changes so far specified by the script. Prior
463to @code{SAVE}, commands affect only the temporary copy of the current
464archive.
465
466@table @code
467@item ADDLIB @var{archive}
468@itemx ADDLIB @var{archive} (@var{module}, @var{module}, @dots{} @var{module})
469Add all the contents of @var{archive} (or, if specified, each named
470@var{module} from @var{archive}) to the current archive.
471
472Requires prior use of @code{OPEN} or @code{CREATE}.
473
650a49f0 474@item ADDMOD @var{member}, @var{member}, @dots{} @var{member}
765a273f
RP
475@c FIXME! w/Replacement?? If so, like "ar r @var{archive} @var{names}"
476@c else like "ar q..."
650a49f0 477Add each named @var{member} as a module in the current archive.
765a273f
RP
478
479Requires prior use of @code{OPEN} or @code{CREATE}.
480
481@item CLEAR
482Discard the contents of the current archive, cancelling the effect of
483any operations since the last @code{SAVE}. May be executed (with no
484effect) even if no current archive is specified.
485
486@item CREATE @var{archive}
487Creates an archive, and makes it the current archive (required for many
488other commands). The new archive is created with a temporary name; it
489is not actually saved as @var{archive} until you use @code{SAVE}.
490You can overwrite existing archives; similarly, the contents of any
491existing file named @var{archive} will not be destroyed until @code{SAVE}.
492
493@item DELETE @var{module}, @var{module}, @dots{} @var{module}
494Delete each listed @var{module} from the current archive; equivalent to
495@samp{ar -d @var{archive} @var{module} @dots{} @var{module}}.
496
497Requires prior use of @code{OPEN} or @code{CREATE}.
498
499@item DIRECTORY @var{archive} (@var{module}, @dots{} @var{module})
500@itemx DIRECTORY @var{archive} (@var{module}, @dots{} @var{module}) @var{outputfile}
501List each named @var{module} present in @var{archive}. The separate
502command @code{VERBOSE} specifies the form of the output: when verbose
503output is off, output is like that of @samp{ar -t @var{archive}
b703c078
DM
504@var{module}@dots{}}. When verbose output is on, the listing is like
505@samp{ar -tv @var{archive} @var{module}@dots{}}.
765a273f
RP
506
507Output normally goes to the standard output stream; however, if you
508specify @var{outputfile} as a final argument, @code{ar} directs the
509output to that file.
510
511@item END
512Exit from @code{ar}, with a @code{0} exit code to indicate successful
513completion. This command does not save the output file; if you have
514changed the current archive since the last @code{SAVE} command, those
515changes are lost.
516
517@item EXTRACT @var{module}, @var{module}, @dots{} @var{module}
518Extract each named @var{module} from the current archive, writing them
519into the current directory as separate files. Equivalent to @samp{ar -x
b703c078 520@var{archive} @var{module}@dots{}}.
765a273f
RP
521
522Requires prior use of @code{OPEN} or @code{CREATE}.
523
524@ignore
525@c FIXME Tokens but no commands???
526@item FULLDIR
527
528@item HELP
529@end ignore
530
531@item LIST
532Display full contents of the current archive, in ``verbose'' style
533regardless of the state of @code{VERBOSE}. The effect is like @samp{ar
b94ff924 534tv @var{archive}}). (This single command is a @sc{gnu} @code{ld}
765a273f
RP
535enhancement, rather than present for MRI compatibility.)
536
537Requires prior use of @code{OPEN} or @code{CREATE}.
538
539@item OPEN @var{archive}
540Opens an existing archive for use as the current archive (required for
541many other commands). Any changes as the result of subsequent commands
542will not actually affect @var{archive} until you next use @code{SAVE}.
543
544@item REPLACE @var{module}, @var{module}, @dots{} @var{module}
545In the current archive, replace each existing @var{module} (named in
546the @code{REPLACE} arguments) from files in the current working directory.
547To execute this command without errors, both the file, and the module in
548the current archive, must exist.
549
550Requires prior use of @code{OPEN} or @code{CREATE}.
551
552@item VERBOSE
553Toggle an internal flag governing the output from @code{DIRECTORY}.
554When the flag is on, @code{DIRECTORY} output matches output from
b703c078 555@samp{ar -tv }@dots{}.
765a273f
RP
556
557@item SAVE
558Commit your changes to the current archive, and actually save it as a
559file with the name specified in the last @code{CREATE} or @code{OPEN}
560command.
561
562Requires prior use of @code{OPEN} or @code{CREATE}.
c72af735
RP
563
564@end table
565
8b2c2275
RP
566@iftex
567@node ld
c72af735
RP
568@chapter ld
569@cindex linker
570@kindex ld
b94ff924
VM
571The @sc{gnu} linker @code{ld} is now described in a separate manual.
572@xref{Top,, Overview,, Using LD: the @sc{gnu} linker}.
8b2c2275 573@end iftex
c72af735 574
eae04238 575@node nm
c72af735
RP
576@chapter nm
577@cindex symbols
578@kindex nm
579
580@smallexample
d6a4c375 581nm [ -a | --debug-syms ] [ -g | --extern-only ]
de3b08ac 582 [ -B ] [ -C | --demangle ] [ -D | --dynamic ]
1896790e 583 [ -s | --print-armap ] [ -A | -o | --print-file-name ]
6cfbdb50 584 [ -n | -v | --numeric-sort ] [ -p | --no-sort ]
1896790e 585 [ -r | --reverse-sort ] [ --size-sort ] [ -u | --undefined-only ]
6cfbdb50
DM
586 [ -t @var{radix} | --radix=@var{radix} ] [ -P | --portability ]
587 [ --target=@var{bfdname} ] [ -f @var{format} | --format=@var{format} ]
77dd4469 588 [ --defined-only ] [-l | --line-numbers ]
9eb39bca 589 [ --no-demangle ] [ -V | --version ] [ --help ] [ @var{objfile}@dots{} ]
c72af735
RP
590@end smallexample
591
b94ff924 592@sc{gnu} @code{nm} lists the symbols from object files @var{objfile}@dots{}.
6cfbdb50
DM
593If no object files are listed as arguments, @code{nm} assumes
594@file{a.out}.
595
596For each symbol, @code{nm} shows:
597
598@itemize @bullet
599@item
600The symbol value, in the radix selected by options (see below), or
601hexadecimal by default.
602
603@item
604The symbol type. At least the following types are used; others are, as
605well, depending on the object file format. If lowercase, the symbol is
606local; if uppercase, the symbol is global (external).
607
608@c Some more detail on exactly what these symbol types are used for
609@c would be nice.
610@table @code
611@item A
85d4b870
ILT
612The symbol's value is absolute, and will not be changed by further
613linking.
6cfbdb50
DM
614
615@item B
85d4b870 616The symbol is in the uninitialized data section (known as BSS).
6cfbdb50
DM
617
618@item C
85d4b870
ILT
619The symbol is common. Common symbols are uninitialized data. When
620linking, multiple common symbols may appear with the same name. If the
621symbol is defined anywhere, the common symbols are treated as undefined
622references. For more details on common symbols, see the discussion of
623--warn-common in @ref{Options,,Linker options,ld.info,The GNU linker}.
6cfbdb50
DM
624
625@item D
85d4b870
ILT
626The symbol is in the initialized data section.
627
628@item G
392e2505 629The symbol is in an initialized data section for small objects. Some
85d4b870
ILT
630object file formats permit more efficient access to small data objects,
631such as a global int variable as opposed to a large global array.
6cfbdb50
DM
632
633@item I
85d4b870
ILT
634The symbol is an indirect reference to another symbol. This is a GNU
635extension to the a.out object file format which is rarely used.
636
637@item N
638The symbol is a debugging symbol.
639
640@item R
641The symbol is in a read only data section.
642
643@item S
392e2505 644The symbol is in an uninitialized data section for small objects.
6cfbdb50
DM
645
646@item T
85d4b870 647The symbol is in the text (code) section.
6cfbdb50
DM
648
649@item U
85d4b870
ILT
650The symbol is undefined.
651
652@item W
653The symbol is weak. When a weak defined symbol is linked with a normal
654defined symbol, the normal defined symbol is used with no error. When a
655weak undefined symbol is linked and the symbol is not defined, the value
656of the weak symbol becomes zero with no error.
657
658@item -
659The symbol is a stabs symbol in an a.out object file. In this case, the
660next values printed are the stabs other field, the stabs desc field, and
661the stab type. Stabs symbols are used to hold debugging information;
662for more information, see @ref{Top,Stabs,Stabs Overview,stabs.info, The
663``stabs'' debug format}.
664
665@item ?
666The symbol type is unknown, or object file format specific.
6cfbdb50
DM
667@end table
668
669@item
670The symbol name.
671@end itemize
c72af735
RP
672
673The long and short forms of options, shown here as alternatives, are
674equivalent.
675
676@table @code
6cfbdb50
DM
677@item -A
678@itemx -o
679@itemx --print-file-name
680@cindex input file name
681@cindex file name
682@cindex source file name
683Precede each symbol by the name of the input file (or archive element)
684in which it was found, rather than identifying the input file once only,
685before all of its symbols.
c72af735
RP
686
687@item -a
918c2f61 688@itemx --debug-syms
c72af735 689@cindex debugging symbols
6cfbdb50
DM
690Display all symbols, even debugger-only symbols; normally these are not
691listed.
692
68dd5295
DM
693@item -B
694@cindex @code{nm} format
695@cindex @code{nm} compatibility
d6a4c375
DM
696The same as @samp{--format=bsd} (for compatibility with the MIPS @code{nm}).
697
698@item -C
699@itemx --demangle
9793039f 700@cindex demangling in nm
d6a4c375
DM
701Decode (@dfn{demangle}) low-level symbol names into user-level names.
702Besides removing any initial underscore prepended by the system, this
703makes C++ function names readable. @xref{c++filt}, for more information
704on demangling.
68dd5295 705
9eb39bca
ILT
706@item --no-demangle
707Do not demangle low-level symbol names. This is the default.
708
de3b08ac
ILT
709@item -D
710@itemx --dynamic
711@cindex dynamic symbols
712Display the dynamic symbols rather than the normal symbols. This is
713only meaningful for dynamic objects, such as certain types of shared
714libraries.
715
6cfbdb50
DM
716@item -f @var{format}
717@itemx --format=@var{format}
68dd5295
DM
718@cindex @code{nm} format
719@cindex @code{nm} compatibility
6cfbdb50
DM
720Use the output format @var{format}, which can be @code{bsd},
721@code{sysv}, or @code{posix}. The default is @code{bsd}.
b26ac613 722Only the first character of @var{format} is significant; it can be
6cfbdb50 723either upper or lower case.
c72af735
RP
724
725@item -g
918c2f61 726@itemx --extern-only
c72af735
RP
727@cindex external symbols
728Display only external symbols.
729
77dd4469
ILT
730@item -l
731@itemx --line-numbers
732@cindex symbol line numbers
733For each symbol, use debugging information to try to find a filename and
734line number. For a defined symbol, look for the line number of the
735address of the symbol. For an undefined symbol, look for the line
736number of a relocation entry which refers to the symbol. If line number
737information can be found, print it after the other symbol information.
738
b26ac613
DM
739@item -n
740@itemx -v
741@itemx --numeric-sort
742Sort symbols numerically by their addresses, rather than alphabetically
743by their names.
744
c72af735 745@item -p
918c2f61 746@itemx --no-sort
c72af735 747@cindex sorting symbols
650a49f0 748Do not bother to sort the symbols in any order; print them in the order
6cfbdb50
DM
749encountered.
750
751@item -P
752@itemx --portability
753Use the POSIX.2 standard output format instead of the default format.
754Equivalent to @samp{-f posix}.
c72af735 755
c72af735 756@item -s
918c2f61 757@itemx --print-armap
c72af735
RP
758@cindex symbol index, listing
759When listing symbols from archive members, include the index: a mapping
ec40bbb8
DM
760(stored in the archive by @code{ar} or @code{ranlib}) of which modules
761contain definitions for which names.
c72af735 762
c72af735 763@item -r
918c2f61 764@itemx --reverse-sort
ec40bbb8 765Reverse the order of the sort (whether numeric or alphabetic); let the
c72af735
RP
766last come first.
767
1896790e
ILT
768@item --size-sort
769Sort symbols by size. The size is computed as the difference between
770the value of the symbol and the value of the symbol with the next higher
771value. The size of the symbol is printed, rather than the value.
772
6cfbdb50
DM
773@item -t @var{radix}
774@itemx --radix=@var{radix}
775Use @var{radix} as the radix for printing the symbol values. It must be
776@samp{d} for decimal, @samp{o} for octal, or @samp{x} for hexadecimal.
777
ec40bbb8 778@item --target=@var{bfdname}
c72af735
RP
779@cindex object code format
780Specify an object code format other than your system's default format.
eae04238 781@xref{Target Selection}, for more information.
c72af735
RP
782
783@item -u
918c2f61 784@itemx --undefined-only
c72af735
RP
785@cindex external symbols
786@cindex undefined symbols
787Display only undefined symbols (those external to each object file).
788
dcd6706b
JL
789@item --defined-only
790@cindex external symbols
791@cindex undefined symbols
792Display only defined symbols for each object file.
793
6cfbdb50
DM
794@item -V
795@itemx --version
b26ac613
DM
796Show the version number of @code{nm} and exit.
797
798@item --help
799Show a summary of the options to @code{nm} and exit.
c72af735
RP
800@end table
801
eae04238 802@node objcopy
eed5eeab
DM
803@chapter objcopy
804
805@smallexample
eae04238
DM
806objcopy [ -F @var{bfdname} | --target=@var{bfdname} ]
807 [ -I @var{bfdname} | --input-target=@var{bfdname} ]
808 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
eed5eeab 809 [ -S | --strip-all ] [ -g | --strip-debug ]
dff604a7 810 [ -K @var{symbolname} | --keep-symbol=@var{symbolname} ]
29c0d15c 811 [ -N @var{symbolname} | --strip-symbol=@var{symbolname} ]
eed5eeab 812 [ -x | --discard-all ] [ -X | --discard-locals ]
f7b839f7
DM
813 [ -b @var{byte} | --byte=@var{byte} ]
814 [ -i @var{interleave} | --interleave=@var{interleave} ]
0aca460e 815 [ -R @var{sectionname} | --remove-section=@var{sectionname} ]
2483354d 816 [ -p | --preserve-dates ] [ --debugging ]
33e0a06d
ILT
817 [ --gap-fill=@var{val} ] [ --pad-to=@var{address} ]
818 [ --set-start=@var{val} ] [ --adjust-start=@var{incr} ]
819 [ --adjust-vma=@var{incr} ]
6c7ed084
ILT
820 [ --adjust-section-vma=@var{section}@{=,+,-@}@var{val} ]
821 [ --adjust-warnings ] [ --no-adjust-warnings ]
5ab41086 822 [ --set-section-flags=@var{section}=@var{flags} ]
d0130cc8 823 [ --add-section=@var{sectionname}=@var{filename} ]
decf2865 824 [ --change-leading-char ] [ --remove-leading-char ]
9a442fe8 825 [ --weaken ]
f7b839f7 826 [ -v | --verbose ] [ -V | --version ] [ --help ]
eed5eeab
DM
827 @var{infile} [@var{outfile}]
828@end smallexample
829
8981cac5
JO
830The @sc{gnu} @code{objcopy} utility copies the contents of an object
831file to another. @code{objcopy} uses the @sc{gnu} @sc{bfd} Library to
832read and write the object files. It can write the destination object
833file in a format different from that of the source object file. The
834exact behavior of @code{objcopy} is controlled by command-line options.
eed5eeab
DM
835
836@code{objcopy} creates temporary files to do its translations and
8981cac5
JO
837deletes them afterward. @code{objcopy} uses @sc{bfd} to do all its
838translation work; it has access to all the formats described in @sc{bfd}
839and thus is able to recognize most formats without being told
840explicitly. @xref{BFD,,BFD,ld.info,Using LD}.
eed5eeab 841
67f67ed9
ILT
842@code{objcopy} can be used to generate S-records by using an output
843target of @samp{srec} (e.g., use @samp{-O srec}).
844
845@code{objcopy} can be used to generate a raw binary file by using an
846output target of @samp{binary} (e.g., use @samp{-O binary}). When
847@code{objcopy} generates a raw binary file, it will essentially produce
848a memory dump of the contents of the input object file. All symbols and
a6afc090 849relocation information will be discarded. The memory dump will start at
11de29d0 850the load address of the lowest section copied into the output file.
67f67ed9
ILT
851
852When generating an S-record or a raw binary file, it may be helpful to
853use @samp{-S} to remove sections containing debugging information. In
854some cases @samp{-R} will be useful to remove sections which contain
855information which is not needed by the binary file.
856
eed5eeab
DM
857@table @code
858@item @var{infile}
859@itemx @var{outfile}
8981cac5 860The source and output files, respectively.
eed5eeab
DM
861If you do not specify @var{outfile}, @code{objcopy} creates a
862temporary file and destructively renames the result with
8981cac5 863the name of @var{infile}.
eed5eeab 864
eae04238
DM
865@item -I @var{bfdname}
866@itemx --input-target=@var{bfdname}
867Consider the source file's object format to be @var{bfdname}, rather than
868attempting to deduce it. @xref{Target Selection}, for more information.
eed5eeab 869
eae04238
DM
870@item -O @var{bfdname}
871@itemx --output-target=@var{bfdname}
872Write the output file using the object format @var{bfdname}.
873@xref{Target Selection}, for more information.
eed5eeab 874
eae04238
DM
875@item -F @var{bfdname}
876@itemx --target=@var{bfdname}
877Use @var{bfdname} as the object format for both the input and the output
878file; i.e., simply transfer data from source to destination with no
879translation. @xref{Target Selection}, for more information.
eed5eeab 880
0aca460e
ILT
881@item -R @var{sectionname}
882@itemx --remove-section=@var{sectionname}
883Remove any section named @var{sectionname} from the output file. This
884option may be given more than once. Note that using this option
885inappropriately may make the output file unusable.
886
eed5eeab
DM
887@item -S
888@itemx --strip-all
889Do not copy relocation and symbol information from the source file.
890
891@item -g
892@itemx --strip-debug
893Do not copy debugging symbols from the source file.
894
9135e5f8
ILT
895@item --strip-unneeded
896Strip all symbols that are not needed for relocation processing.
897
dff604a7
ILT
898@item -K @var{symbolname}
899@itemx --keep-symbol=@var{symbolname}
900Copy only symbol @var{symbolname} from the source file. This option may
901be given more than once.
902
29c0d15c
ILT
903@item -N @var{symbolname}
904@itemx --strip-symbol=@var{symbolname}
dff604a7
ILT
905Do not copy symbol @var{symbolname} from the source file. This option
906may be given more than once, and may be combined with strip options
907other than @code{-K}.
29c0d15c 908
eed5eeab
DM
909@item -x
910@itemx --discard-all
911Do not copy non-global symbols from the source file.
912@c FIXME any reason to prefer "non-global" to "local" here?
913
914@item -X
915@itemx --discard-locals
916Do not copy compiler-generated local symbols.
917(These usually start with @samp{L} or @samp{.}.)
918
db2e6adb
DM
919@item -b @var{byte}
920@itemx --byte=@var{byte}
921Keep only every @var{byte}th byte of the input file (header data is not
f7b839f7
DM
922affected). @var{byte} can be in the range from 0 to @var{interleave}-1,
923where @var{interleave} is given by the @samp{-i} or @samp{--interleave}
924option, or the default of 4. This option is useful for creating files
8981cac5 925to program @sc{rom}. It is typically used with an @code{srec} output
f7b839f7
DM
926target.
927
928@item -i @var{interleave}
929@itemx --interleave=@var{interleave}
8981cac5
JO
930Only copy one out of every @var{interleave} bytes. Select which byte to
931copy with the @var{-b} or @samp{--byte} option. The default is 4.
932@code{objcopy} ignores this option if you do not specify either @samp{-b} or
933@samp{--byte}.
db2e6adb 934
2483354d
ILT
935@item -p
936@itemx --preserve-dates
937Set the access and modification dates of the output file to be the same
938as those of the input file.
939
f5818d79
ILT
940@item --debugging
941Convert debugging information, if possible. This is not the default
942because only certain debugging formats are supported, and the
943conversion process can be time consuming.
944
596d99ba
ILT
945@item --gap-fill @var{val}
946Fill gaps between sections with @var{val}. This is done by increasing
947the size of the section with the lower address, and filling in the extra
948space created with @var{val}.
949
33e0a06d
ILT
950@item --pad-to @var{address}
951Pad the output file up to the virtual address @var{address}. This is
952done by increasing the size of the last section. The extra space is
953filled in with the value specified by @samp{--gap-fill} (default zero).
954
6c7ed084
ILT
955@item --set-start @var{val}
956Set the address of the new file to @var{val}. Not all object file
a6afc090 957formats support setting the start address.
6c7ed084
ILT
958
959@item --adjust-start @var{incr}
960Adjust the start address by adding @var{incr}. Not all object file
961formats support setting the start address.
962
963@item --adjust-vma @var{incr}
964Adjust the address of all sections, as well as the start address, by
965adding @var{incr}. Some object file formats do not permit section
966addresses to be changed arbitrarily. Note that this does not relocate
967the sections; if the program expects sections to be loaded at a certain
968address, and this option is used to change the sections such that they
969are loaded at a different address, the program may fail.
970
971@item --adjust-section-vma @var{section}@{=,+,-@}@var{val}
972Set or adjust the address of the named @var{section}. If @samp{=} is
973used, the section address is set to @var{val}. Otherwise, @var{val} is
974added to or subtracted from the section address. See the comments under
975@samp{--adjust-vma}, above. If @var{section} does not exist in the
976input file, a warning will be issued, unless @samp{--no-adjust-warnings}
977is used.
978
979@item --adjust-warnings
980If @samp{--adjust-section-vma} is used, and the named section does not
981exist, issue a warning. This is the default.
982
983@item --no-adjust-warnings
984Do not issue a warning if @samp{--adjust-section-vma} is used, even if
985the named section does not exist.
986
5ab41086
ILT
987@item --set-section-flags @var{section}=@var{flags}
988Set the flags for the named section. The @var{flags} argument is a
989comma separated string of flag names. The recognized names are
990@samp{alloc}, @samp{load}, @samp{readonly}, @samp{code}, @samp{data},
991and @samp{rom}. Not all flags are meaningful for all object file
992formats.
993
d0130cc8
ILT
994@item --add-section @var{sectionname}=@var{filename}
995Add a new section named @var{sectionname} while copying the file. The
996contents of the new section are taken from the file @var{filename}. The
997size of the section will be the size of the file. This option only
998works on file formats which can support sections with arbitrary names.
999
decf2865
ILT
1000@item --change-leading-char
1001Some object file formats use special characters at the start of
1002symbols. The most common such character is underscore, which compilers
1003often add before every symbol. This option tells @code{objcopy} to
1004change the leading character of every symbol when it converts between
1005object file formats. If the object file formats use the same leading
1006character, this option has no effect. Otherwise, it will add a
1007character, or remove a character, or change a character, as
1008appropriate.
1009
5da470b2
ILT
1010@item --remove-leading-char
1011If the first character of a global symbol is a special symbol leading
1012character used by the object file format, remove the character. The
1013most common symbol leading character is underscore. This option will
1014remove a leading underscore from all global symbols. This can be useful
1015if you want to link together objects of different file formats with
decf2865
ILT
1016different conventions for symbol names. This is different from
1017@code{--change-leading-char} because it always changes the symbol name
1018when appropriate, regardless of the object file format of the output
1019file.
5da470b2 1020
9a442fe8
ILT
1021@item --weaken
1022Change all global symbols in the file to be weak. This can be useful
1023when building an object which will be linked against other objects using
1024the @code{-R} option to the linker. This option is only effective when
1025using an object file format which supports weak symbols.
1026
eed5eeab
DM
1027@item -V
1028@itemx --version
1029Show the version number of @code{objcopy}.
1030
1031@item -v
1032@itemx --verbose
1033Verbose output: list all object files modified. In the case of
1034archives, @samp{objcopy -V} lists all members of the archive.
1035
1036@item --help
1037Show a summary of the options to @code{objcopy}.
1038@end table
1039
eae04238 1040@node objdump
c72af735
RP
1041@chapter objdump
1042
1043@cindex object file information
1044@kindex objdump
1045
1046@smallexample
10f2a7f6 1047objdump [ -a | --archive-headers ]
e1c14599 1048 [ -b @var{bfdname} | --target=@var{bfdname} ] [ --debugging ]
9793039f
ILT
1049 [ -C | --demangle ] [ -d | --disassemble ]
1050 [ -D | --disassemble-all ] [ --disassemble-zeroes ]
67c8c901 1051 [ -EB | -EL | --endian=@{big | little @} ]
d5464baa 1052 [ -f | --file-headers ]
eae04238 1053 [ -h | --section-headers | --headers ] [ -i | --info ]
10f2a7f6 1054 [ -j @var{section} | --section=@var{section} ]
a8e27cc6 1055 [ -l | --line-numbers ] [ -S | --source ]
7e5e9619
JO
1056 [ -m @var{machine} | --architecture=@var{machine} ]
1057 [ -r | --reloc ] [ -R | --dynamic-reloc ]
1058 [ -s | --full-contents ] [ --stabs ]
de3b08ac 1059 [ -t | --syms ] [ -T | --dynamic-syms ] [ -x | --all-headers ]
aa21a2a9 1060 [ -w | --wide ] [ --start-address=@var{address} ]
4cb99ff2 1061 [ --stop-address=@var{address} ]
5c59269f 1062 [ --prefix-addresses] [ --[no-]show-raw-insn ]
ab3a59cf 1063 [ --adjust-vma=@var{offset} ]
458bbd1f 1064 [ --version ] [ --help ]
aa21a2a9 1065 @var{objfile}@dots{}
c72af735
RP
1066@end smallexample
1067
1068@code{objdump} displays information about one or more object files.
1069The options control what particular information to display. This
1070information is mostly useful to programmers who are working on the
1071compilation tools, as opposed to programmers who just want their
1072program to compile and work.
1073
b26ac613
DM
1074@var{objfile}@dots{} are the object files to be examined. When you
1075specify archives, @code{objdump} shows information on each of the member
1076object files.
1077
c72af735 1078The long and short forms of options, shown here as alternatives, are
ed78872a 1079equivalent. At least one option besides @samp{-l} must be given.
c72af735
RP
1080
1081@table @code
c72af735 1082@item -a
eae04238 1083@itemx --archive-header
c72af735 1084@cindex archive headers
ec40bbb8 1085If any of the @var{objfile} files are archives, display the archive
c72af735
RP
1086header information (in a format similar to @samp{ls -l}). Besides the
1087information you could list with @samp{ar tv}, @samp{objdump -a} shows
1088the object file format of each archive member.
1089
ab3a59cf
ILT
1090@item --adjust-vma=@var{offset}
1091@cindex section addresses in objdump
1092@cindex VMA in objdump
1093When dumping information, first add @var{offset} to all the section
1094addresses. This is useful if the section addresses do not correspond to
1095the symbol table, which can happen when putting sections at particular
1096addresses when using a format which can not represent section addresses,
1097such as a.out.
1098
c72af735 1099@item -b @var{bfdname}
eae04238 1100@itemx --target=@var{bfdname}
c72af735 1101@cindex object code format
ec40bbb8
DM
1102Specify that the object-code format for the object files is
1103@var{bfdname}. This option may not be necessary; @var{objdump} can
1104automatically recognize many formats.
1105
1106For example,
c72af735
RP
1107@example
1108objdump -b oasys -m vax -h fu.o
1109@end example
1110@noindent
ec40bbb8
DM
1111displays summary information from the section headers (@samp{-h}) of
1112@file{fu.o}, which is explicitly identified (@samp{-m}) as a VAX object
c72af735
RP
1113file in the format produced by Oasys compilers. You can list the
1114formats available with the @samp{-i} option.
eae04238 1115@xref{Target Selection}, for more information.
c72af735 1116
9793039f
ILT
1117@item -C
1118@itemx --demangle
1119@cindex demangling in objdump
1120Decode (@dfn{demangle}) low-level symbol names into user-level names.
1121Besides removing any initial underscore prepended by the system, this
1122makes C++ function names readable. @xref{c++filt}, for more information
1123on demangling.
1124
e1c14599
ILT
1125@item --debugging
1126Display debugging information. This attempts to parse debugging
1127information stored in the file and print it out using a C like syntax.
1128Only certain types of debugging information have been implemented.
1129
c72af735 1130@item -d
eae04238 1131@itemx --disassemble
c72af735
RP
1132@cindex disassembling object code
1133@cindex machine instructions
d5464baa
ILT
1134Display the assembler mnemonics for the machine instructions from
1135@var{objfile}. This option only disassembles those sections which are
1136expected to contain instructions.
1137
1138@item -D
1139@itemx --disassemble-all
1140Like @samp{-d}, but disassemble the contents of all sections, not just
1141those expected to contain instructions.
c72af735 1142
51b8c416
ILT
1143@item --prefix-addresses
1144When disassembling, print the complete address on each line. This is
1145the older disassembly format.
1146
1147@item --disassemble-zeroes
1148Normally the disassembly output will skip blocks of zeroes. This
1149option directs the disassembler to disassemble those blocks, just like
1150any other data.
1151
67c8c901
ILT
1152@item -EB
1153@itemx -EL
1154@itemx --endian=@{big|little@}
1155@cindex endianness
1156@cindex disassembly endianness
1157Specify the endianness of the object files. This only affects
1158disassembly. This can be useful when disassembling a file format which
1159does not describe endianness information, such as S-records.
1160
c72af735 1161@item -f
eae04238 1162@itemx --file-header
c72af735 1163@cindex object file header
eae04238 1164Display summary information from the overall header of
ec40bbb8 1165each of the @var{objfile} files.
c72af735
RP
1166
1167@item -h
eae04238 1168@itemx --section-header
c5f0c938 1169@itemx --header
c72af735 1170@cindex section headers
eae04238 1171Display summary information from the section headers of the
c72af735
RP
1172object file.
1173
db2e6adb
DM
1174File segments may be relocated to nonstandard addresses, for example by
1175using the @samp{-Ttext}, @samp{-Tdata}, or @samp{-Tbss} options to
1176@code{ld}. However, some object file formats, such as a.out, do not
1177store the starting address of the file segments. In those situations,
1178although @code{ld} relocates the sections correctly, using @samp{objdump
1179-h} to list the file section headers cannot show the correct addresses.
1180Instead, it shows the usual addresses, which are implicit for the
1181target.
1182
b26ac613
DM
1183@item --help
1184Print a summary of the options to @code{objdump} and exit.
1185
c72af735 1186@item -i
eae04238 1187@itemx --info
c72af735
RP
1188@cindex architectures available
1189@cindex object formats available
1190Display a list showing all architectures and object formats available
ec40bbb8 1191for specification with @samp{-b} or @samp{-m}.
c72af735 1192
c72af735 1193@item -j @var{name}
eae04238 1194@itemx --section=@var{name}
c72af735 1195@cindex section information
ec40bbb8 1196Display information only for section @var{name}.
c72af735 1197
c72af735 1198@item -l
eae04238 1199@itemx --line-numbers
c72af735 1200@cindex source filenames for object files
11548211
ILT
1201Label the display (using debugging information) with the filename and
1202source line numbers corresponding to the object code or relocs shown.
1203Only useful with @samp{-d}, @samp{-D}, or @samp{-r}.
c72af735 1204
c72af735 1205@item -m @var{machine}
eae04238 1206@itemx --architecture=@var{machine}
c72af735 1207@cindex architecture
67c8c901
ILT
1208@cindex disassembly architecture
1209Specify the architecture to use when disassembling object files. This
1210can be useful when disasembling object files which do not describe
1211architecture information, such as S-records. You can list the available
1212architectures with the @samp{-i} option.
c72af735
RP
1213
1214@item -r
c5f0c938 1215@itemx --reloc
c72af735 1216@cindex relocation entries, in object file
d5464baa
ILT
1217Print the relocation entries of the file. If used with @samp{-d} or
1218@samp{-D}, the relocations are printed interspersed with the
1219disassembly.
c72af735 1220
de3b08ac
ILT
1221@item -R
1222@itemx --dynamic-reloc
1223@cindex dynamic relocation entries, in object file
1224Print the dynamic relocation entries of the file. This is only
1225meaningful for dynamic objects, such as certain types of shared
1226libraries.
1227
c72af735 1228@item -s
eae04238 1229@itemx --full-contents
c72af735
RP
1230@cindex sections, full contents
1231@cindex object file sections
1232Display the full contents of any sections requested.
1233
a8e27cc6
ILT
1234@item -S
1235@itemx --source
1236@cindex source disassembly
1237@cindex disassembly, with source
1238Display source code intermixed with disassembly, if possible. Implies
1239@samp{-d}.
1240
458bbd1f
DE
1241@item --show-raw-insn
1242When disassembling instructions, print the instruction in hex as well as
4cb99ff2
ILT
1243in symbolic form. This is the default except when
1244@code{--prefix-addresses} is used.
458bbd1f 1245
5c59269f
ILT
1246@item --no-show-raw-insn
1247When disassembling instructions, do not print the instruction bytes.
1248This is the default when @code{--prefix-addresses} is used.
1249
c5f0c938
JG
1250@item --stabs
1251@cindex stab
1252@cindex .stab
1253@cindex debug symbols
1254@cindex ELF object file format
c3c93fda
JG
1255Display the full contents of any sections requested. Display the
1256contents of the .stab and .stab.index and .stab.excl sections from an
1257ELF file. This is only useful on systems (such as Solaris 2.0) in which
1258@code{.stab} debugging symbol-table entries are carried in an ELF
1259section. In most other file formats, debugging symbol-table entries are
c5f0c938 1260interleaved with linkage symbols, and are visible in the @samp{--syms}
85d4b870
ILT
1261output. For more information on stabs symbols, see @ref{Top,Stabs,Stabs
1262Overview,stabs.info, The ``stabs'' debug format}.
c5f0c938 1263
aa21a2a9
ILT
1264@item --start-address=@var{address}
1265@cindex start-address
1266Start displaying data at the specified address. This affects the output
1267of the @code{-d}, @code{-r} and @code{-s} options.
1268
1269@item --stop-address=@var{address}
1270@cindex stop-address
1271Stop displaying data at the specified address. This affects the output
1272of the @code{-d}, @code{-r} and @code{-s} options.
1273
c72af735 1274@item -t
c5f0c938 1275@itemx --syms
c72af735 1276@cindex symbol table entries, printing
eae04238 1277Print the symbol table entries of the file.
c72af735
RP
1278This is similar to the information provided by the @samp{nm} program.
1279
de3b08ac
ILT
1280@item -T
1281@itemx --dynamic-syms
1282@cindex dynamic symbol table entries, printing
1283Print the dynamic symbol table entries of the file. This is only
1284meaningful for dynamic objects, such as certain types of shared
1285libraries. This is similar to the information provided by the @samp{nm}
1286program when given the @samp{-D} (@samp{--dynamic}) option.
1287
b26ac613
DM
1288@item --version
1289Print the version number of @code{objdump} and exit.
1290
c72af735 1291@item -x
eae04238 1292@itemx --all-header
c72af735
RP
1293@cindex all header information, object file
1294@cindex header information, all
1295Display all available header information, including the symbol table and
1296relocation entries. Using @samp{-x} is equivalent to specifying all of
1297@samp{-a -f -h -r -t}.
4b6d0f78
MM
1298
1299@item -w
1300@item --wide
1301@cindex wide output, printing
1302Format some lines for output devices that have more than 80 columns.
c72af735
RP
1303@end table
1304
eae04238 1305@node ranlib
c72af735
RP
1306@chapter ranlib
1307
1308@kindex ranlib
1309@cindex archive contents
1310@cindex symbol index
1311
1312@smallexample
4d9b5d5a 1313ranlib [-vV] @var{archive}
c72af735
RP
1314@end smallexample
1315
ec40bbb8 1316@code{ranlib} generates an index to the contents of an archive and
c72af735
RP
1317stores it in the archive. The index lists each symbol defined by a
1318member of an archive that is a relocatable object file.
1319
918c2f61 1320You may use @samp{nm -s} or @samp{nm --print-armap} to list this index.
c72af735 1321
ec40bbb8 1322An archive with such an index speeds up linking to the library and
c72af735
RP
1323allows routines in the library to call each other without regard to
1324their placement in the archive.
1325
b94ff924 1326The @sc{gnu} @code{ranlib} program is another form of @sc{gnu} @code{ar}; running
c72af735
RP
1327@code{ranlib} is completely equivalent to executing @samp{ar -s}.
1328@xref{ar}.
1329
4d9b5d5a
DM
1330@table @code
1331@item -v
1332@itemx -V
1333Show the version number of @code{ranlib}.
c3f471a4 1334@end table
4d9b5d5a 1335
eae04238 1336@node size
c72af735
RP
1337@chapter size
1338
1339@kindex size
1340@cindex section sizes
1341
1342@smallexample
4d9b5d5a
DM
1343size [ -A | -B | --format=@var{compatibility} ]
1344 [ --help ] [ -d | -o | -x | --radix=@var{number} ]
1345 [ --target=@var{bfdname} ] [ -V | --version ]
1346 @var{objfile}@dots{}
c72af735
RP
1347@end smallexample
1348
b94ff924 1349The @sc{gnu} @code{size} utility lists the section sizes---and the total
ec40bbb8
DM
1350size---for each of the object or archive files @var{objfile} in its
1351argument list. By default, one line of output is generated for each
1352object file or each module in an archive.
c72af735 1353
b26ac613
DM
1354@var{objfile}@dots{} are the object files to be examined.
1355
c72af735 1356The command line options have the following meanings:
c72af735 1357
b26ac613 1358@table @code
c72af735
RP
1359@item -A
1360@itemx -B
ec40bbb8 1361@itemx --format=@var{compatibility}
68dd5295 1362@cindex @code{size} display format
b94ff924 1363Using one of these options, you can choose whether the output from @sc{gnu}
c72af735 1364@code{size} resembles output from System V @code{size} (using @samp{-A},
ec40bbb8
DM
1365or @samp{--format=sysv}), or Berkeley @code{size} (using @samp{-B}, or
1366@samp{--format=berkeley}). The default is the one-line format similar to
c72af735 1367Berkeley's.
918c2f61
PB
1368@c Bonus for doc-source readers: you can also say --format=strange (or
1369@c anything else that starts with 's') for sysv, and --format=boring (or
c72af735
RP
1370@c anything else that starts with 'b') for Berkeley.
1371
1372Here is an example of the Berkeley (default) format of output from
1373@code{size}:
1374@smallexample
eae04238 1375size --format=Berkeley ranlib size
c72af735
RP
1376text data bss dec hex filename
1377294880 81920 11592 388392 5ed28 ranlib
1378294880 81920 11888 388688 5ee50 size
1379@end smallexample
1380
1381@noindent
1382This is the same data, but displayed closer to System V conventions:
1383
1384@smallexample
eae04238 1385size --format=SysV ranlib size
c72af735
RP
1386ranlib :
1387section size addr
1388.text 294880 8192
1389.data 81920 303104
1390.bss 11592 385024
1391Total 388392
1392
1393
1394size :
1395section size addr
1396.text 294880 8192
1397.data 81920 303104
1398.bss 11888 385024
1399Total 388688
1400@end smallexample
1401
918c2f61 1402@item --help
c72af735
RP
1403Show a summary of acceptable arguments and options.
1404
1405@item -d
1406@itemx -o
1407@itemx -x
ec40bbb8 1408@itemx --radix=@var{number}
68dd5295 1409@cindex @code{size} number format
c72af735
RP
1410@cindex radix for section sizes
1411Using one of these options, you can control whether the size of each
ec40bbb8
DM
1412section is given in decimal (@samp{-d}, or @samp{--radix=10}); octal
1413(@samp{-o}, or @samp{--radix=8}); or hexadecimal (@samp{-x}, or
1414@samp{--radix=16}). In @samp{--radix=@var{number}}, only the three
c72af735
RP
1415values (8, 10, 16) are supported. The total size is always given in two
1416radices; decimal and hexadecimal for @samp{-d} or @samp{-x} output, or
1417octal and hexadecimal if you're using @samp{-o}.
1418
ec40bbb8 1419@item --target=@var{bfdname}
c72af735 1420@cindex object code format
ec40bbb8
DM
1421Specify that the object-code format for @var{objfile} is
1422@var{bfdname}. This option may not be necessary; @code{size} can
eae04238
DM
1423automatically recognize many formats.
1424@xref{Target Selection}, for more information.
c72af735
RP
1425
1426@item -V
918c2f61 1427@itemx --version
4d9b5d5a 1428Display the version number of @code{size}.
c72af735
RP
1429@end table
1430
eae04238 1431@node strings
ba7c8e29
DM
1432@chapter strings
1433@kindex strings
1434@cindex listings strings
1435@cindex printing strings
1436@cindex strings, printing
1437
1438@smallexample
b26ac613 1439strings [-afov] [-@var{min-len}] [-n @var{min-len}] [-t @var{radix}] [-]
650a49f0 1440 [--all] [--print-file-name] [--bytes=@var{min-len}]
eae04238
DM
1441 [--radix=@var{radix}] [--target=@var{bfdname}]
1442 [--help] [--version] @var{file}@dots{}
ba7c8e29
DM
1443@end smallexample
1444
b94ff924 1445For each @var{file} given, @sc{gnu} @code{strings} prints the printable
ba7c8e29 1446character sequences that are at least 4 characters long (or the number
67ace729 1447given with the options below) and are followed by an unprintable
ba7c8e29 1448character. By default, it only prints the strings from the initialized
5f057047
ILT
1449and loaded sections of object files; for other types of files, it prints
1450the strings from the whole file.
ba7c8e29
DM
1451
1452@code{strings} is mainly useful for determining the contents of non-text
1453files.
1454
1455@table @code
1456@item -a
1457@itemx --all
1458@itemx -
5f057047
ILT
1459Do not scan only the initialized and loaded sections of object files;
1460scan the whole files.
ba7c8e29
DM
1461
1462@item -f
1463@itemx --print-file-name
1464Print the name of the file before each string.
1465
b26ac613 1466@item --help
ba7c8e29
DM
1467Print a summary of the program usage on the standard output and exit.
1468
ba7c8e29 1469@itemx -@var{min-len}
b26ac613 1470@item -n @var{min-len}
ba7c8e29
DM
1471@itemx --bytes=@var{min-len}
1472Print sequences of characters that are at least @var{min-len} characters
1473long, instead of the default 4.
1474
1475@item -o
b26ac613
DM
1476Like @samp{-t o}. Some other versions of @code{strings} have @samp{-o}
1477act like @samp{-t d} instead. Since we can not be compatible with both
1478ways, we simply chose one.
ba7c8e29
DM
1479
1480@item -t @var{radix}
1481@itemx --radix=@var{radix}
1482Print the offset within the file before each string. The single
1483character argument specifies the radix of the offset---@samp{o} for
1484octal, @samp{x} for hexadecimal, or @samp{d} for decimal.
1485
eae04238
DM
1486@item --target=@var{bfdname}
1487@cindex object code format
1488Specify an object code format other than your system's default format.
1489@xref{Target Selection}, for more information.
1490
ba7c8e29
DM
1491@item -v
1492@itemx --version
1493Print the program version number on the standard output and exit.
1494@end table
1495
eae04238 1496@node strip
c72af735
RP
1497@chapter strip
1498
1499@kindex strip
1500@cindex removing symbols
1501@cindex discarding symbols
1815e42c 1502@cindex symbols, discarding
c72af735
RP
1503
1504@smallexample
eae04238
DM
1505strip [ -F @var{bfdname} | --target=@var{bfdname} | --target=@var{bfdname} ]
1506 [ -I @var{bfdname} | --input-target=@var{bfdname} ]
1507 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
b703c078 1508 [ -s | --strip-all ] [ -S | -g | --strip-debug ]
dff604a7 1509 [ -K @var{symbolname} | --keep-symbol=@var{symbolname} ]
29c0d15c 1510 [ -N @var{symbolname} | --strip-symbol=@var{symbolname} ]
b703c078 1511 [ -x | --discard-all ] [ -X | --discard-locals ]
0aca460e 1512 [ -R @var{sectionname} | --remove-section=@var{sectionname} ]
2483354d 1513 [ -o @var{file} ] [ -p | --preserve-dates ]
b26ac613 1514 [ -v | --verbose ] [ -V | --version ] [ --help ]
b703c078 1515 @var{objfile}@dots{}
c72af735
RP
1516@end smallexample
1517
b94ff924 1518@sc{gnu} @code{strip} discards all symbols from object files
ec40bbb8 1519@var{objfile}. The list of object files may include archives.
b26ac613 1520At least one object file must be given.
c72af735 1521
ec40bbb8 1522@code{strip} modifies the files named in its argument,
c72af735 1523rather than writing modified copies under different names.
c72af735 1524
c72af735 1525@table @code
eae04238
DM
1526@item -F @var{bfdname}
1527@itemx --target=@var{bfdname}
b26ac613 1528Treat the original @var{objfile} as a file with the object
eae04238
DM
1529code format @var{bfdname}, and rewrite it in the same format.
1530@xref{Target Selection}, for more information.
b26ac613
DM
1531
1532@item --help
1533Show a summary of the options to @code{strip} and exit.
1534
eae04238
DM
1535@item -I @var{bfdname}
1536@itemx --input-target=@var{bfdname}
ec40bbb8 1537Treat the original @var{objfile} as a file with the object
eae04238
DM
1538code format @var{bfdname}.
1539@xref{Target Selection}, for more information.
918c2f61 1540
eae04238
DM
1541@item -O @var{bfdname}
1542@itemx --output-target=@var{bfdname}
1543Replace @var{objfile} with a file in the output format @var{bfdname}.
1544@xref{Target Selection}, for more information.
918c2f61 1545
0aca460e
ILT
1546@item -R @var{sectionname}
1547@itemx --remove-section=@var{sectionname}
1548Remove any section named @var{sectionname} from the output file. This
1549option may be given more than once. Note that using this option
1550inappropriately may make the output file unusable.
1551
b703c078
DM
1552@item -s
1553@itemx --strip-all
1554Remove all symbols.
1555
918c2f61
PB
1556@item -g
1557@itemx -S
1558@itemx --strip-debug
1559Remove debugging symbols only.
1560
9135e5f8
ILT
1561@item --strip-unneeded
1562Remove all symbols that are not needed for relocation processing.
1563
dff604a7
ILT
1564@item -K @var{symbolname}
1565@itemx --keep-symbol=@var{symbolname}
1566Keep only symbol @var{symbolname} from the source file. This option may
1567be given more than once.
1568
29c0d15c
ILT
1569@item -N @var{symbolname}
1570@itemx --strip-symbol=@var{symbolname}
dff604a7
ILT
1571Remove symbol @var{symbolname} from the source file. This option may be
1572given more than once, and may be combined with strip options other than
1573@code{-K}.
29c0d15c 1574
16c3e32a
ILT
1575@item -o @var{file}
1576Put the stripped output in @var{file}, rather than replacing the
1577existing file. When this argument is used, only one @var{objfile}
1578argument may be specified.
1579
2483354d
ILT
1580@item -p
1581@itemx --preserve-dates
1582Preserve the access and modification dates of the file.
1583
918c2f61
PB
1584@item -x
1585@itemx --discard-all
1586Remove non-global symbols.
1587
1588@item -X
1589@itemx --discard-locals
1590Remove compiler-generated local symbols.
ec40bbb8 1591(These usually start with @samp{L} or @samp{.}.)
918c2f61
PB
1592
1593@item -V
1594@itemx --version
ec40bbb8 1595Show the version number for @code{strip}.
918c2f61 1596
1815e42c 1597@item -v
918c2f61
PB
1598@itemx --verbose
1599Verbose output: list all object files modified. In the case of
1269d441 1600archives, @samp{strip -v} lists all members of the archive.
c72af735
RP
1601@end table
1602
eae04238 1603@node c++filt
b6216af2
PB
1604@chapter c++filt
1605
1606@kindex c++filt
1607@cindex demangling C++ symbols
1608
b26ac613
DM
1609@smallexample
1610c++filt [ -_ | --strip-underscores ]
6f88f031 1611 [ -n | --no-strip-underscores ]
b26ac613 1612 [ -s @var{format} | --format=@var{format} ]
d6a4c375 1613 [ --help ] [ --version ] [ @var{symbol}@dots{} ]
b26ac613
DM
1614@end smallexample
1615
6c69b6bd
JO
1616The C++ language provides function overloading, which means that you can
1617write many functions with the same name (providing each takes parameters
1618of different types). All C++ function names are encoded into a
b26ac613 1619low-level assembly label (this process is known as
6c69b6bd
JO
1620@dfn{mangling}). The @code{c++filt} program does the inverse mapping: it
1621decodes (@dfn{demangles}) low-level names into user-level names so that
1622the linker can keep these overloaded functions from clashing.
1623
1624Every alphanumeric word (consisting of letters, digits, underscores,
1625dollars, or periods) seen in the input is a potential label. If the
1626label decodes into a C++ name, the C++ name replaces the low-level
1627name in the output.
b6216af2 1628
d6a4c375 1629You can use @code{c++filt} to decipher individual symbols:
6c69b6bd
JO
1630
1631@example
1632c++filt @var{symbol}
1633@end example
1634
d6a4c375
DM
1635If no @var{symbol} arguments are given, @code{c++filt} reads symbol
1636names from the standard input and writes the demangled names to the
1637standard output. All results are printed on the standard output.
b6216af2 1638
b26ac613
DM
1639@table @code
1640@item -_
94e9ad77 1641@itemx --strip-underscores
b26ac613
DM
1642On some systems, both the C and C++ compilers put an underscore in front
1643of every name. For example, the C name @code{foo} gets the low-level
6f88f031
ILT
1644name @code{_foo}. This option removes the initial underscore. Whether
1645@code{c++filt} removes the underscore by default is target dependent.
1646
1647@item -n
1648@itemx --no-strip-underscores
1649Do not remove the initial underscore.
b26ac613
DM
1650
1651@item -s @var{format}
1652@itemx --format=@var{format}
b94ff924 1653@sc{gnu} @code{nm} can decode three different methods of mangling, used by
b26ac613
DM
1654different C++ compilers. The argument to this option selects which
1655method it uses:
1656
1657@table @code
1658@item gnu
b94ff924 1659the one used by the @sc{gnu} compiler (the default method)
b26ac613
DM
1660@item lucid
1661the one used by the Lucid compiler
1662@item arm
1663the one specified by the C++ Annotated Reference Manual
1664@end table
1665
1666@item --help
1667Print a summary of the options to @code{c++filt} and exit.
1668
1669@item --version
1670Print the version number of @code{c++filt} and exit.
1671@end table
b6216af2 1672
5eac46ae
JO
1673@quotation
1674@emph{Warning:} @code{c++filt} is a new utility, and the details of its
1675user interface are subject to change in future releases. In particular,
1676a command-line option may be required in the the future to decode a name
1677passed as an argument on the command line; in other words,
1678
1679@example
b26ac613 1680c++filt @var{symbol}
5eac46ae
JO
1681@end example
1682
1683@noindent
1684may in a future release become
1685
1686@example
b26ac613 1687c++filt @var{option} @var{symbol}
5eac46ae
JO
1688@end example
1689@end quotation
1690
fb38844d
ILT
1691@node addr2line
1692@chapter addr2line
1693
1694@kindex addr2line
1695@cindex address to file name and line number
1696
1697@smallexample
1698addr2line [ -b @var{bfdname} | --target=@var{bfdname} ]
1699 [ -C | --demangle ]
1700 [ -e @var{filename} | --exe=@var{filename} ]
1701 [ -f | --functions ] [ -s | --basename ]
1702 [ -H | --help ] [ -V | --version ]
1703 [ addr addr ... ]
1704@end smallexample
1705
1706@code{addr2line} translates program addresses into file names and line
1707numbers. Given an address and an executable, it uses the debugging
1708information in the executable to figure out which file name and line
1709number are associated with a given address.
1710
1711The executable to use is specified with the @code{-e} option. The
1712default is @file{a.out}.
1713
1714@code{addr2line} has two modes of operation.
1715
1716In the first, hexadecimal addresses are specified on the command line,
1717and @code{addr2line} displays the file name and line number for each
1718address.
1719
1720In the second, @code{addr2line} reads hexadecimal addresses from
1721standard input, and prints the file name and line number for each
1722address on standard output. In this mode, @code{addr2line} may be used
1723in a pipe to convert dynamically chosen addresses.
1724
1725The format of the output is @samp{FILENAME:LINENO}. The file name and
1726line number for each address is printed on a separate line. If the
1727@code{-f} option is used, then each @samp{FILENAME:LINENO} line is
1728preceded by a @samp{FUNCTIONNAME} line which is the name of the function
1729containing the address.
1730
1731If the file name or function name can not be determined,
1732@code{addr2line} will print two question marks in their place. If the
1733line number can not be determined, @code{addr2line} will print 0.
1734
1735The long and short forms of options, shown here as alternatives, are
1736equivalent.
1737
1738@table @code
1739@item -b @var{bfdname}
1740@itemx --target=@var{bfdname}
1741@cindex object code format
1742Specify that the object-code format for the object files is
1743@var{bfdname}.
1744
1745@item -C
1746@itemx --demangle
1747@cindex demangling in objdump
1748Decode (@dfn{demangle}) low-level symbol names into user-level names.
1749Besides removing any initial underscore prepended by the system, this
1750makes C++ function names readable. @xref{c++filt}, for more information
1751on demangling.
1752
1753@item -e @var{filename}
1754@itemx --exe=@var{filename}
1755Specify the name of the executable for which addresses should be
1756translated. The default file is @file{a.out}.
1757
1758@item -f
1759@itemx --functions
1760Display function names as well as file and line number information.
1761
1762@item -s
1763@itemx --basenames
1764Display only the base of each file name.
1765@end table
1766
eae04238 1767@node nlmconv
94e9ad77
JO
1768@chapter nlmconv
1769
1770@code{nlmconv} converts a relocatable object file into a NetWare
8981cac5
JO
1771Loadable Module.
1772
1773@ignore
1774@code{nlmconv} currently works with @samp{i386} object
4961ce5b
JO
1775files in @code{coff}, @sc{elf}, or @code{a.out} format, and @sc{SPARC}
1776object files in @sc{elf}, or @code{a.out} format@footnote{
1777@code{nlmconv} should work with any @samp{i386} or @sc{sparc} object
1778format in the Binary File Descriptor library. It has only been tested
1779with the above formats.}.
8981cac5 1780@end ignore
4961ce5b
JO
1781
1782@quotation
1783@emph{Warning:} @code{nlmconv} is not always built as part of the binary
1784utilities, since it is only useful for NLM targets.
1785@end quotation
94e9ad77
JO
1786
1787@smallexample
eae04238
DM
1788nlmconv [ -I @var{bfdname} | --input-target=@var{bfdname} ]
1789 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
94e9ad77 1790 [ -T @var{headerfile} | --header-file=@var{headerfile} ]
20465f8b 1791 [ -d | --debug] [ -l @var{linker} | --linker=@var{linker} ]
94e9ad77
JO
1792 [ -h | --help ] [ -V | --version ]
1793 @var{infile} @var{outfile}
1794@end smallexample
1795
1796@code{nlmconv} converts the relocatable @samp{i386} object file
1797@var{infile} into the NetWare Loadable Module @var{outfile}, optionally
1798reading @var{headerfile} for NLM header information. For instructions
5b0ba16d
JO
1799on writing the NLM command file language used in header files, see the
1800@samp{linkers} section, @samp{NLMLINK} in particular, of the @cite{NLM
1801Development and Tools Overview}, which is part of the NLM Software
1802Developer's Kit (``NLM SDK''), available from Novell, Inc.
1803@code{nlmconv} uses the @sc{gnu} Binary File Descriptor library to read
eae04238 1804@var{infile}; see @ref{BFD,,BFD,ld.info,Using LD}, for
5b0ba16d 1805more information.
94e9ad77 1806
20465f8b
JO
1807@code{nlmconv} can perform a link step. In other words, you can list
1808more than one object file for input if you list them in the definitions
1809file (rather than simply specifying one input file on the command line).
1810In this case, @code{nlmconv} calls the linker for you.
1811
94e9ad77 1812@table @code
eae04238
DM
1813@item -I @var{bfdname}
1814@itemx --input-target=@var{bfdname}
94e9ad77 1815Object format of the input file. @code{nlmconv} can usually determine
eae04238
DM
1816the format of a given file (so no default is necessary).
1817@xref{Target Selection}, for more information.
94e9ad77 1818
eae04238
DM
1819@item -O @var{bfdname}
1820@itemx --output-target=@var{bfdname}
94e9ad77
JO
1821Object format of the output file. @code{nlmconv} infers the output
1822format based on the input format, e.g. for a @samp{i386} input file the
eae04238
DM
1823output format is @samp{nlm32-i386}.
1824@xref{Target Selection}, for more information.
94e9ad77
JO
1825
1826@item -T @var{headerfile}
1827@itemx --header-file=@var{headerfile}
1828Reads @var{headerfile} for NLM header information. For instructions on
5b0ba16d
JO
1829writing the NLM command file language used in header files, see@ see the
1830@samp{linkers} section, of the @cite{NLM Development and Tools
1831Overview}, which is part of the NLM Software Developer's Kit, available
1832from Novell, Inc.
94e9ad77 1833
20465f8b
JO
1834@item -d
1835@itemx --debug
1836Displays (on standard error) the linker command line used by @code{nlmconv}.
1837
1838@item -l @var{linker}
1839@itemx --linker=@var{linker}
1840Use @var{linker} for any linking. @var{linker} can be an abosolute or a
1841relative pathname.
1842
94e9ad77
JO
1843@item -h
1844@itemx --help
1845Prints a usage summary.
1846
1847@item -V
1848@itemx --version
1849Prints the version number for @code{nlmconv}.
1850@end table
1851
eae04238
DM
1852@node Selecting The Target System
1853@chapter Selecting the target system
1854
8981cac5
JO
1855You can specify three aspects of the target system to the @sc{gnu}
1856binary file utilities, each in several ways:
eae04238
DM
1857
1858@itemize @bullet
1859@item
8981cac5 1860the target
eae04238
DM
1861
1862@item
8981cac5 1863the architecture
eae04238
DM
1864
1865@item
8981cac5 1866the linker emulation (which applies to the linker only)
eae04238
DM
1867@end itemize
1868
1869In the following summaries, the lists of ways to specify values are in
8981cac5
JO
1870order of decreasing precedence. The ways listed first override those
1871listed later.
eae04238 1872
8981cac5
JO
1873The commands to list valid values only list the values for which the
1874programs you are running were configured. If they were configured with
8490169d 1875@samp{--enable-targets=all}, the commands list most of the available
eae04238 1876values, but a few are left out; not all targets can be configured in at
8981cac5
JO
1877once because some of them can only be configured @dfn{native} (on hosts
1878with the same type as the target system).
eae04238
DM
1879
1880@menu
1881* Target Selection::
1882* Architecture Selection::
1883* Linker Emulation Selection::
1884@end menu
1885
1886@node Target Selection
8981cac5 1887@section Target Selection
eae04238
DM
1888
1889A @dfn{target} is an object file format. A given target may be
1890supported for multiple architectures (@pxref{Architecture Selection}).
8981cac5
JO
1891A target selection may also have variations for different operating
1892systems or architectures.
eae04238 1893
8981cac5
JO
1894The command to list valid target values is @samp{objdump -i}
1895(the first column of output contains the relevant information).
eae04238 1896
10f2a7f6
JO
1897Some sample values are: @samp{a.out-hp300bsd}, @samp{ecoff-littlemips},
1898@samp{a.out-sunos-big}.
eae04238 1899
55311d1c
ILT
1900You can also specify a target using a configuration triplet. This is
1901the same sort of name that is passed to configure to specify a target.
1902When you use a configuration triplet as an argument, it must be fully
1903canonicalized. You can see the canonical version of a triplet by
1904running the shell script @file{config.sub} which is included with the
1905sources.
1906
1907Some sample configuration triplets are: @samp{m68k-hp-bsd},
1908@samp{mips-dec-ultrix}, @samp{sparc-sun-sunos}.
1909
8981cac5 1910@subheading @code{objdump} Target
eae04238
DM
1911
1912Ways to specify:
1913
1914@enumerate
1915@item
8981cac5 1916command line option: @samp{-b} or @samp{--target}
eae04238
DM
1917
1918@item
1919environment variable @code{GNUTARGET}
1920
1921@item
1922deduced from the input file
1923@end enumerate
1924
8981cac5 1925@subheading @code{objcopy} and @code{strip} Input Target
eae04238
DM
1926
1927Ways to specify:
1928
1929@enumerate
1930@item
8981cac5 1931command line options: @samp{-I} or @samp{--input-target}, or @samp{-F} or @samp{--target}
eae04238
DM
1932
1933@item
1934environment variable @code{GNUTARGET}
1935
1936@item
1937deduced from the input file
1938@end enumerate
1939
8981cac5 1940@subheading @code{objcopy} and @code{strip} Output Target
eae04238
DM
1941
1942Ways to specify:
1943
1944@enumerate
1945@item
8981cac5 1946command line options: @samp{-O} or @samp{--output-target}, or @samp{-F} or @samp{--target}
eae04238
DM
1947
1948@item
8981cac5 1949the input target (see ``@code{objcopy} and @code{strip} Input Target'' above)
eae04238
DM
1950
1951@item
1952environment variable @code{GNUTARGET}
1953
1954@item
1955deduced from the input file
1956@end enumerate
1957
8981cac5 1958@subheading @code{nm}, @code{size}, and @code{strings} Target
eae04238
DM
1959
1960Ways to specify:
1961
1962@enumerate
1963@item
8981cac5 1964command line option: @samp{--target}
eae04238
DM
1965
1966@item
1967environment variable @code{GNUTARGET}
1968
1969@item
1970deduced from the input file
1971@end enumerate
1972
8981cac5 1973@subheading Linker Input Target
eae04238
DM
1974
1975Ways to specify:
1976
1977@enumerate
1978@item
8981cac5 1979command line option: @samp{-b} or @samp{--format}
eae04238
DM
1980(@pxref{Options,,Options,ld.info,Using LD})
1981
1982@item
1983script command @code{TARGET}
1984(@pxref{Option Commands,,Option Commands,ld.info,Using LD})
1985
1986@item
1987environment variable @code{GNUTARGET}
1988(@pxref{Environment,,Environment,ld.info,Using LD})
1989
1990@item
1991the default target of the selected linker emulation
1992(@pxref{Linker Emulation Selection})
1993@end enumerate
1994
8981cac5 1995@subheading Linker Output Target
eae04238
DM
1996
1997Ways to specify:
1998
1999@enumerate
2000@item
8981cac5 2001command line option: @samp{-oformat}
eae04238
DM
2002(@pxref{Options,,Options,ld.info,Using LD})
2003
2004@item
2005script command @code{OUTPUT_FORMAT}
2006(@pxref{Option Commands,,Option Commands,ld.info,Using LD})
2007
2008@item
8981cac5 2009the linker input target (see ``Linker Input Target'' above)
eae04238
DM
2010@end enumerate
2011
2012@node Architecture Selection
2013@section Architecture selection
2014
8981cac5
JO
2015An @dfn{architecture} is a type of @sc{cpu} on which an object file is
2016to run. Its name may contain a colon, separating the name of the
2017processor family from the name of the particular @sc{cpu}.
eae04238 2018
8981cac5
JO
2019The command to list valid architecture values is @samp{objdump -i} (the
2020second column contains the relevant information).
eae04238
DM
2021
2022Sample values: @samp{m68k:68020}, @samp{mips:3000}, @samp{sparc}.
2023
8981cac5 2024@subheading @code{objdump} Architecture
eae04238
DM
2025
2026Ways to specify:
2027
2028@enumerate
2029@item
8981cac5 2030command line option: @samp{-m} or @samp{--architecture}
eae04238
DM
2031
2032@item
2033deduced from the input file
2034@end enumerate
2035
8981cac5 2036@subheading @code{objcopy}, @code{nm}, @code{size}, @code{strings} Architecture
eae04238
DM
2037
2038Ways to specify:
2039
2040@enumerate
2041@item
2042deduced from the input file
2043@end enumerate
2044
8981cac5 2045@subheading Linker Input Architecture
eae04238
DM
2046
2047Ways to specify:
2048
2049@enumerate
2050@item
2051deduced from the input file
2052@end enumerate
2053
8981cac5 2054@subheading Linker Output Architecture
eae04238
DM
2055
2056Ways to specify:
2057
2058@enumerate
2059@item
2060script command @code{OUTPUT_ARCH}
2061(@pxref{Option Commands,,Option Commands,ld.info,Using LD})
2062
2063@item
2064the default architecture from the linker output target
8981cac5 2065(@pxref{Target Selection})
eae04238
DM
2066@end enumerate
2067
2068@node Linker Emulation Selection
2069@section Linker emulation selection
2070
2071A linker @dfn{emulation} is a ``personality'' of the linker, which gives
2072the linker default values for the other aspects of the target system.
2073In particular, it consists of
2074
2075@itemize @bullet
2076@item
8981cac5 2077the linker script
eae04238
DM
2078
2079@item
8981cac5 2080the target
eae04238
DM
2081
2082@item
2083several ``hook'' functions that are run at certain stages of the linking
8981cac5 2084process to do special things that some targets require
eae04238
DM
2085@end itemize
2086
8981cac5 2087The command to list valid linker emulation values is @samp{ld -V}.
eae04238
DM
2088
2089Sample values: @samp{hp300bsd}, @samp{mipslit}, @samp{sun4}.
2090
2091Ways to specify:
2092
2093@enumerate
2094@item
8981cac5 2095command line option: @samp{-m}
eae04238
DM
2096(@pxref{Options,,Options,ld.info,Using LD})
2097
2098@item
2099environment variable @code{LDEMULATION}
2100
2101@item
2102compiled-in @code{DEFAULT_EMULATION} from @file{Makefile},
2103which comes from @code{EMUL} in @file{config/@var{target}.mt}
2104@end enumerate
2105
cbcfa129
ILT
2106@node Reporting Bugs
2107@chapter Reporting Bugs
2108@cindex bugs
2109@cindex reporting bugs
2110
2111Your bug reports play an essential role in making the binary utilities
2112reliable.
2113
2114Reporting a bug may help you by bringing a solution to your problem, or
2115it may not. But in any case the principal function of a bug report is
2116to help the entire community by making the next version of the binary
2117utilities work better. Bug reports are your contribution to their
2118maintenance.
2119
2120In order for a bug report to serve its purpose, you must include the
2121information that enables us to fix the bug.
2122
2123@menu
2124* Bug Criteria:: Have you found a bug?
2125* Bug Reporting:: How to report bugs
2126@end menu
2127
2128@node Bug Criteria
2129@section Have you found a bug?
2130@cindex bug criteria
2131
2132If you are not sure whether you have found a bug, here are some guidelines:
2133
2134@itemize @bullet
2135@cindex fatal signal
2136@cindex crash
2137@item
2138If a binary utility gets a fatal signal, for any input whatever, that is
2139a bug. Reliable utilities never crash.
2140
2141@cindex error on valid input
2142@item
2143If a binary utility produces an error message for valid input, that is a
2144bug.
2145
2146@item
2147If you are an experienced user of binary utilities, your suggestions for
2148improvement are welcome in any case.
2149@end itemize
2150
2151@node Bug Reporting
2152@section How to report bugs
2153@cindex bug reports
2154@cindex bugs, reporting
2155
2156A number of companies and individuals offer support for @sc{gnu}
2157products. If you obtained the binary utilities from a support
2158organization, we recommend you contact that organization first.
2159
2160You can find contact information for many support companies and
2161individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
2162distribution.
2163
2164In any event, we also recommend that you send bug reports for the binary
2165utilities to @samp{bug-gnu-utils@@prep.ai.mit.edu}.
2166
2167The fundamental principle of reporting bugs usefully is this:
2168@strong{report all the facts}. If you are not sure whether to state a
2169fact or leave it out, state it!
2170
2171Often people omit facts because they think they know what causes the
2172problem and assume that some details do not matter. Thus, you might
2173assume that the name of a file you use in an example does not matter.
2174Well, probably it does not, but one cannot be sure. Perhaps the bug is
2175a stray memory reference which happens to fetch from the location where
2176that pathname is stored in memory; perhaps, if the pathname were
2177different, the contents of that location would fool the utility into
2178doing the right thing despite the bug. Play it safe and give a
2179specific, complete example. That is the easiest thing for you to do,
2180and the most helpful.
2181
2182Keep in mind that the purpose of a bug report is to enable us to fix the bug if
2183it is new to us. Therefore, always write your bug reports on the assumption
2184that the bug has not been reported previously.
2185
2186Sometimes people give a few sketchy facts and ask, ``Does this ring a
2187bell?'' Those bug reports are useless, and we urge everyone to
2188@emph{refuse to respond to them} except to chide the sender to report
2189bugs properly.
2190
2191To enable us to fix the bug, you should include all these things:
2192
2193@itemize @bullet
2194@item
2195The version of the utility. Each utility announces it if you start it
2196with the @samp{--version} argument.
2197
2198Without this, we will not know whether there is any point in looking for
2199the bug in the current version of the binary utilities.
2200
2201@item
2202Any patches you may have applied to the source, including any patches
2203made to the @code{BFD} library.
2204
2205@item
2206The type of machine you are using, and the operating system name and
2207version number.
2208
2209@item
2210What compiler (and its version) was used to compile the utilities---e.g.
2211``@code{gcc-2.7}''.
2212
2213@item
2214The command arguments you gave the utility to observe the bug. To
2215guarantee you will not omit something important, list them all. A copy
2216of the Makefile (or the output from make) is sufficient.
2217
2218If we were to try to guess the arguments, we would probably guess wrong
2219and then we might not encounter the bug.
2220
2221@item
2222A complete input file, or set of input files, that will reproduce the
2223bug. If the utility is reading an object file or files, then it is
2224generally most helpful to send the actual object files, uuencoded if
2225necessary to get them through the mail system. Making them available
2226for anonymous FTP is not as good, but may be the only reasonable choice
2227for large object files.
2228
2229If the source files were produced exclusively using @sc{gnu} programs
2230(e.g., @code{gcc}, @code{gas}, and/or the @sc{gnu} @code{ld}), then it
2231may be OK to send the source files rather than the object files. In
2232this case, be sure to say exactly what version of @code{gcc}, or
2233whatever, was used to produce the object files. Also say how
2234@code{gcc}, or whatever, was configured.
2235
2236@item
2237A description of what behavior you observe that you believe is
2238incorrect. For example, ``It gets a fatal signal.''
2239
2240Of course, if the bug is that the utility gets a fatal signal, then we
2241will certainly notice it. But if the bug is incorrect output, we might
2242not notice unless it is glaringly wrong. You might as well not give us
2243a chance to make a mistake.
2244
2245Even if the problem you experience is a fatal signal, you should still
2246say so explicitly. Suppose something strange is going on, such as, your
2247copy of the utility is out of synch, or you have encountered a bug in
2248the C library on your system. (This has happened!) Your copy might
2249crash and ours would not. If you told us to expect a crash, then when
2250ours fails to crash, we would know that the bug was not happening for
2251us. If you had not told us to expect a crash, then we would not be able
2252to draw any conclusion from our observations.
2253
2254@item
2255If you wish to suggest changes to the source, send us context diffs, as
2256generated by @code{diff} with the @samp{-u}, @samp{-c}, or @samp{-p}
2257option. Always send diffs from the old file to the new file. If you
2258even discuss something in the @code{ld} source, refer to it by context,
2259not by line number.
2260
2261The line numbers in our development sources will not match those in your
2262sources. Your line numbers would convey no useful information to us.
2263@end itemize
2264
2265Here are some things that are not necessary:
2266
2267@itemize @bullet
2268@item
2269A description of the envelope of the bug.
2270
2271Often people who encounter a bug spend a lot of time investigating
2272which changes to the input file will make the bug go away and which
2273changes will not affect it.
2274
2275This is often time consuming and not very useful, because the way we
2276will find the bug is by running a single example under the debugger
2277with breakpoints, not by pure deduction from a series of examples.
2278We recommend that you save your time for something else.
2279
2280Of course, if you can find a simpler example to report @emph{instead}
2281of the original one, that is a convenience for us. Errors in the
2282output will be easier to spot, running under the debugger will take
2283less time, and so on.
2284
2285However, simplification is not vital; if you do not want to do this,
2286report the bug anyway and send us the entire test case you used.
2287
2288@item
2289A patch for the bug.
2290
2291A patch for the bug does help us if it is a good one. But do not omit
2292the necessary information, such as the test case, on the assumption that
2293a patch is all we need. We might see problems with your patch and decide
2294to fix the problem another way, or we might not understand it at all.
2295
2296Sometimes with programs as complicated as the binary utilities it is
2297very hard to construct an example that will make the program follow a
2298certain path through the code. If you do not send us the example, we
2299will not be able to construct one, so we will not be able to verify that
2300the bug is fixed.
2301
2302And if we cannot understand what bug you are trying to fix, or why your
2303patch should be an improvement, we will not install it. A test case will
2304help us to understand.
2305
2306@item
2307A guess about what the bug is or what it depends on.
2308
2309Such guesses are usually wrong. Even we cannot guess right about such
2310things without first using the debugger to find the facts.
2311@end itemize
2312
eae04238 2313@node Index
c72af735
RP
2314@unnumbered Index
2315
2316@printindex cp
2317
2318@contents
2319@bye
This page took 0.323568 seconds and 4 git commands to generate.