* All backends: Added BFD_JUMP_TABLE_DYNAMIC to target vector.
[deliverable/binutils-gdb.git] / binutils / binutils.texi
CommitLineData
765a273f 1\input texinfo @c -*- Texinfo -*-
c72af735
RP
2@setfilename binutils.info
3
9abcc3b8
RP
4@ifinfo
5@format
6START-INFO-DIR-ENTRY
20f774c1
RP
7* Binutils: (binutils). The GNU binary utilities "ar", "objcopy",
8 "objdump", "nm", "nlmconv", "size",
9 "strings", "strip", and "ranlib".
9abcc3b8
RP
10END-INFO-DIR-ENTRY
11@end format
12@end ifinfo
c72af735 13
8b2c2275 14@ifinfo
8981cac5 15Copyright @copyright{} 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
8b2c2275
RP
16
17Permission is granted to make and distribute verbatim copies of
18this manual provided the copyright notice and this permission notice
19are preserved on all copies.
20
21@ignore
22Permission is granted to process this file through TeX and print the
23results, provided the printed document carries a copying permission
24notice identical to this one except for the removal of this paragraph
25(this paragraph not being relevant to the printed manual).
26
27@end ignore
28
29Permission is granted to copy and distribute modified versions of this
30manual under the conditions for verbatim copying, provided also that
31the entire resulting derived work is distributed under the terms of a
32permission notice identical to this one.
33
34Permission is granted to copy and distribute translations of this manual
35into another language, under the above conditions for modified versions.
36@end ifinfo
37
c72af735
RP
38@synindex ky cp
39@c
df14d957 40@c This file documents the GNU binary utilities "ar", "ld", "objcopy",
ba7c8e29 41@c "objdump", "nm", "size", "strings", "strip", and "ranlib".
c72af735 42@c
e32341a7 43@c Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
c72af735
RP
44@c
45@c This text may be freely distributed under the terms of the GNU
46@c General Public License.
47@c
27e94bd5 48
c72af735
RP
49@setchapternewpage odd
50@settitle GNU Binary Utilities
4928b97b
RP
51@titlepage
52@finalout
c72af735 53@title The GNU Binary Utilities
b6216af2 54@subtitle Version 2.2
c72af735 55@sp 1
e32341a7 56@subtitle May 1993
c72af735 57@author Roland H. Pesch
4961ce5b 58@author Jeffrey M. Osier
c72af735
RP
59@author Cygnus Support
60@page
61
62@tex
650a49f0 63{\parskip=0pt \hfill Cygnus Support\par \hfill
c72af735
RP
64\TeX{}info \texinfoversion\par }
65@end tex
66
67@vskip 0pt plus 1filll
8981cac5 68Copyright @copyright{} 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
c72af735
RP
69
70Permission is granted to make and distribute verbatim copies of
71this manual provided the copyright notice and this permission notice
72are preserved on all copies.
73
74Permission is granted to copy and distribute modified versions of this
75manual under the conditions for verbatim copying, provided also that
76the entire resulting derived work is distributed under the terms of a
77permission notice identical to this one.
78
79Permission is granted to copy and distribute translations of this manual
80into another language, under the above conditions for modified versions.
81@end titlepage
82
eae04238 83@node Top
8981cac5 84@top Introduction
c72af735
RP
85
86@cindex version
87This brief manual contains preliminary documentation for the GNU binary
b6216af2 88utilities (collectively version 2.2):
8b2c2275
RP
89
90@iftex
c72af735
RP
91@table @code
92@item ar
93Create, modify, and extract from archives
94
95@item nm
96List symbols from object files
97
eed5eeab
DM
98@item objcopy
99Copy and translate object files
100
c72af735
RP
101@item objdump
102Display information from object files
103
104@item ranlib
105Generate index to archive contents
106
107@item size
eae04238 108List file section sizes and total size
c72af735 109
ba7c8e29
DM
110@item strings
111List printable strings from files
112
c72af735
RP
113@item strip
114Discard symbols
eae04238
DM
115
116@item c++filt
117Demangle encoded C++ symbols
118
119@item nlmconv
120Convert object code into a Netware Loadable Module
c72af735 121@end table
8b2c2275 122@end iftex
c72af735
RP
123
124@menu
8b2c2275 125* ar:: Create, modify, and extract from archives
8b2c2275 126* nm:: List symbols from object files
eed5eeab 127* objcopy:: Copy and translate object files
8b2c2275
RP
128* objdump:: Display information from object files
129* ranlib:: Generate index to archive contents
130* size:: List section sizes and total size
ba7c8e29 131* strings:: List printable strings from files
8b2c2275 132* strip:: Discard symbols
b6216af2 133* c++filt:: Filter to demangle encoded C++ symbols
94e9ad77 134* nlmconv:: Converts object code into an NLM
eae04238 135* Selecting The Target System:: How these utilities determine the target.
8b2c2275 136* Index::
c72af735
RP
137@end menu
138
eae04238 139@node ar
c72af735
RP
140@chapter ar
141
142@kindex ar
143@cindex archives
144@cindex collections of files
145@smallexample
650a49f0 146ar [-]@var{p}[@var{mod} [@var{relpos}]] @var{archive} [@var{member}@dots{}]
4d9b5d5a 147ar -M [ <mri-script ]
c72af735
RP
148@end smallexample
149
150The GNU @code{ar} program creates, modifies, and extracts from
151archives. An @dfn{archive} is a single file holding a collection of
152other files in a structure that makes it possible to retrieve
153the original individual files (called @dfn{members} of the archive).
154
155The original files' contents, mode (permissions), timestamp, owner, and
ec40bbb8 156group are preserved in the archive, and can be restored on
c72af735
RP
157extraction.
158
159@cindex name length
160GNU @code{ar} can maintain archives whose members have names of any
161length; however, depending on how @code{ar} is configured on your
ec40bbb8
DM
162system, a limit on member-name length may be imposed for compatibility
163with archive formats maintained with other tools. If it exists, the
c72af735
RP
164limit is often 15 characters (typical of formats related to a.out) or 16
165characters (typical of formats related to coff).
166
167@cindex libraries
168@code{ar} is considered a binary utility because archives of this sort
169are most often used as @dfn{libraries} holding commonly needed
170subroutines.
171
172@cindex symbol index
e31e9a8d 173@code{ar} creates an index to the symbols defined in relocatable
c72af735
RP
174object modules in the archive when you specify the modifier @samp{s}.
175Once created, this index is updated in the archive whenever @code{ar}
176makes a change to its contents (save for the @samp{q} update operation).
177An archive with such an index speeds up linking to the library, and
178allows routines in the library to call each other without regard to
179their placement in the archive.
180
918c2f61 181You may use @samp{nm -s} or @samp{nm --print-armap} to list this index
c72af735
RP
182table. If an archive lacks the table, another form of @code{ar} called
183@code{ranlib} can be used to add just the table.
184
765a273f
RP
185@cindex compatibility, @code{ar}
186@cindex @code{ar} compatibility
187GNU @code{ar} is designed to be compatible with two different
188facilities. You can control its activity using command-line options,
189like the different varieties of @code{ar} on Unix systems; or, if you
190specify the single command-line option @samp{-M}, you can control it
191with a script supplied via standard input, like the MRI ``librarian''
192program.
193
194@menu
eae04238
DM
195* ar cmdline:: Controlling @code{ar} on the command line
196* ar scripts:: Controlling @code{ar} with a script
765a273f
RP
197@end menu
198
199@page
eae04238 200@node ar cmdline
765a273f
RP
201@section Controlling @code{ar} on the command line
202
203@smallexample
650a49f0 204ar [-]@var{p}[@var{mod} [@var{relpos}]] @var{archive} [@var{member}@dots{}]
765a273f
RP
205@end smallexample
206
207@cindex Unix compatibility, @code{ar}
208When you use @code{ar} in the Unix style, @code{ar} insists on at least two
209arguments to execute: one keyletter specifying the @emph{operation}
210(optionally accompanied by other keyletters specifying
211@emph{modifiers}), and the archive name to act on.
c72af735 212
650a49f0 213Most operations can also accept further @var{member} arguments,
c72af735
RP
214specifying particular files to operate on.
215
216GNU @code{ar} allows you to mix the operation code @var{p} and modifier
217flags @var{mod} in any order, within the first command-line argument.
218
219If you wish, you may begin the first command-line argument with a
220dash.
221
222@cindex operations on archive
223The @var{p} keyletter specifies what operation to execute; it may be
224any of the following, but you must specify only one of them:
225
226@table @code
227@item d
228@cindex deleting from archive
229@emph{Delete} modules from the archive. Specify the names of modules to
650a49f0 230be deleted as @var{member}@dots{}; the archive is untouched if you
c72af735
RP
231specify no files to delete.
232
e31e9a8d 233If you specify the @samp{v} modifier, @code{ar} lists each module
c72af735
RP
234as it is deleted.
235
236@item m
237@cindex moving in archive
238Use this operation to @emph{move} members in an archive.
239
240The ordering of members in an archive can make a difference in how
241programs are linked using the library, if a symbol is defined in more
242than one member.
243
244If no modifiers are used with @code{m}, any members you name in the
650a49f0 245@var{member} arguments are moved to the @emph{end} of the archive;
c72af735
RP
246you can use the @samp{a}, @samp{b}, or @samp{i} modifiers to move them to a
247specified place instead.
248
249@item p
250@cindex printing from archive
251@emph{Print} the specified members of the archive, to the standard
252output file. If the @samp{v} modifier is specified, show the member
253name before copying its contents to standard output.
254
650a49f0 255If you specify no @var{member} arguments, all the files in the archive are
ec40bbb8 256printed.
c72af735
RP
257
258@item q
259@cindex quick append to archive
650a49f0 260@emph{Quick append}; add the files @var{member}@dots{} to the end of
ec40bbb8 261@var{archive}, without checking for replacement.
c72af735
RP
262
263The modifiers @samp{a}, @samp{b}, and @samp{i} do @emph{not} affect this
264operation; new members are always placed at the end of the archive.
265
266The modifier @samp{v} makes @code{ar} list each file as it is appended.
267
268Since the point of this operation is speed, the archive's symbol table
269index is not updated, even if it already existed; you can use @samp{ar s} or
270@code{ranlib} explicitly to update the symbol table index.
271
272@item r
273@cindex replacement in archive
650a49f0 274Insert the files @var{member}@dots{} into @var{archive} (with
ec40bbb8
DM
275@emph{replacement}). This operation differs from @samp{q} in that any
276previously existing members are deleted if their names match those being
277added.
c72af735 278
650a49f0 279If one of the files named in @var{member}@dots{} does not exist, @code{ar}
c72af735
RP
280displays an error message, and leaves undisturbed any existing members
281of the archive matching that name.
282
283By default, new members are added at the end of the file; but you may
284use one of the modifiers @samp{a}, @samp{b}, or @samp{i} to request
285placement relative to some existing member.
286
287The modifier @samp{v} used with this operation elicits a line of
288output for each file inserted, along with one of the letters @samp{a} or
289@samp{r} to indicate whether the file was appended (no old member
290deleted) or replaced.
291
292@item t
293@cindex contents of archive
294Display a @emph{table} listing the contents of @var{archive}, or those
650a49f0 295of the files listed in @var{member}@dots{} that are present in the
c72af735
RP
296archive. Normally only the member name is shown; if you also want to
297see the modes (permissions), timestamp, owner, group, and size, you can
298request that by also specifying the @samp{v} modifier.
299
650a49f0 300If you do not specify a @var{member}, all files in the archive
c72af735
RP
301are listed.
302
303@cindex repeated names in archive
304@cindex name duplication in archive
305If there is more than one file with the same name (say, @samp{fie}) in
e31e9a8d 306an archive (say @samp{b.a}), @samp{ar t b.a fie} lists only the
c72af735
RP
307first instance; to see them all, you must ask for a complete
308listing---in our example, @samp{ar t b.a}.
309@c WRS only; per Gumby, this is implementation-dependent, and in a more
310@c recent case in fact works the other way.
311
312@item x
313@cindex extract from archive
650a49f0 314@emph{Extract} members (named @var{member}) from the archive. You can
c72af735
RP
315use the @samp{v} modifier with this operation, to request that
316@code{ar} list each name as it extracts it.
317
650a49f0 318If you do not specify a @var{member}, all files in the archive
c72af735
RP
319are extracted.
320
321@end table
322
323A number of modifiers (@var{mod}) may immediately follow the @var{p}
324keyletter, to specify variations on an operation's behavior:
325
326@table @code
327@item a
328@cindex relative placement in archive
329Add new files @emph{after} an existing member of the
ec40bbb8 330archive. If you use the modifier @samp{a}, the name of an existing archive
650a49f0 331member must be present as the @var{relpos} argument, before the
c72af735
RP
332@var{archive} specification.
333
334@item b
335Add new files @emph{before} an existing member of the
ec40bbb8 336archive. If you use the modifier @samp{b}, the name of an existing archive
650a49f0 337member must be present as the @var{relpos} argument, before the
c72af735
RP
338@var{archive} specification. (same as @samp{i}).
339
340@item c
341@cindex creating archives
342@emph{Create} the archive. The specified @var{archive} is always
650a49f0 343created if it did not exist, when you request an update. But a warning is
c72af735
RP
344issued unless you specify in advance that you expect to create it, by
345using this modifier.
346
347@item i
348Insert new files @emph{before} an existing member of the
ec40bbb8 349archive. If you use the modifier @samp{i}, the name of an existing archive
650a49f0 350member must be present as the @var{relpos} argument, before the
c72af735
RP
351@var{archive} specification. (same as @samp{b}).
352
353@item l
354This modifier is accepted but not used.
355@c whaffor ar l modifier??? presumably compat; with
356@c what???---pesch@@cygnus.com, 25jan91
357
358@item o
359@cindex dates in archive
360Preserve the @emph{original} dates of members when extracting them. If
361you do not specify this modifier, files extracted from the archive
e31e9a8d 362are stamped with the time of extraction.
c72af735
RP
363
364@item s
365@cindex writing archive index
366Write an object-file index into the archive, or update an existing one,
367even if no other change is made to the archive. You may use this modifier
368flag either with any operation, or alone. Running @samp{ar s} on an
369archive is equivalent to running @samp{ranlib} on it.
370
371@item u
372@cindex updating an archive
b703c078 373Normally, @samp{ar r}@dots{} inserts all files
c72af735
RP
374listed into the archive. If you would like to insert @emph{only} those
375of the files you list that are newer than existing members of the same
376names, use this modifier. The @samp{u} modifier is allowed only for the
377operation @samp{r} (replace). In particular, the combination @samp{qu} is
378not allowed, since checking the timestamps would lose any speed
379advantage from the operation @samp{q}.
380
381@item v
382This modifier requests the @emph{verbose} version of an operation. Many
383operations display additional information, such as filenames processed,
384when the modifier @samp{v} is appended.
4d9b5d5a
DM
385
386@item V
387This modifier shows the version number of @code{ar}.
765a273f
RP
388@end table
389
eae04238 390@node ar scripts
765a273f
RP
391@section Controlling @code{ar} with a script
392
393@smallexample
394ar -M [ <@var{script} ]
395@end smallexample
396
397@cindex MRI compatibility, @code{ar}
398@cindex scripts, @code{ar}
399If you use the single command-line option @samp{-M} with @code{ar}, you
400can control its operation with a rudimentary command language. This
e31e9a8d 401form of @code{ar} operates interactively if standard input is coming
765a273f
RP
402directly from a terminal. During interactive use, @code{ar} prompts for
403input (the prompt is @samp{AR >}), and continues executing even after
404errors. If you redirect standard input to a script file, no prompts are
e31e9a8d 405issued, and @code{ar} abandons execution (with a nonzero exit code)
765a273f
RP
406on any error.
407
408The @code{ar} command language is @emph{not} designed to be equivalent
409to the command-line options; in fact, it provides somewhat less control
410over archives. The only purpose of the command language is to ease the
411transition to GNU @code{ar} for developers who already have scripts
412written for the MRI ``librarian'' program.
413
414The syntax for the @code{ar} command language is straightforward:
415@itemize @bullet
416@item
417commands are recognized in upper or lower case; for example, @code{LIST}
418is the same as @code{list}. In the following descriptions, commands are
419shown in upper case for clarity.
420
421@item
422a single command may appear on each line; it is the first word on the
423line.
424
425@item
426empty lines are allowed, and have no effect.
427
428@item
429comments are allowed; text after either of the characters @samp{*}
430or @samp{;} is ignored.
431
432@item
433Whenever you use a list of names as part of the argument to an @code{ar}
434command, you can separate the individual names with either commas or
435blanks. Commas are shown in the explanations below, for clarity.
436
437@item
438@samp{+} is used as a line continuation character; if @samp{+} appears
439at the end of a line, the text on the following line is considered part
440of the current command.
441@end itemize
442
443Here are the commands you can use in @code{ar} scripts, or when using
444@code{ar} interactively. Three of them have special significance:
445
446@code{OPEN} or @code{CREATE} specify a @dfn{current archive}, which is
447a temporary file required for most of the other commands.
448
449@code{SAVE} commits the changes so far specified by the script. Prior
450to @code{SAVE}, commands affect only the temporary copy of the current
451archive.
452
453@table @code
454@item ADDLIB @var{archive}
455@itemx ADDLIB @var{archive} (@var{module}, @var{module}, @dots{} @var{module})
456Add all the contents of @var{archive} (or, if specified, each named
457@var{module} from @var{archive}) to the current archive.
458
459Requires prior use of @code{OPEN} or @code{CREATE}.
460
650a49f0 461@item ADDMOD @var{member}, @var{member}, @dots{} @var{member}
765a273f
RP
462@c FIXME! w/Replacement?? If so, like "ar r @var{archive} @var{names}"
463@c else like "ar q..."
650a49f0 464Add each named @var{member} as a module in the current archive.
765a273f
RP
465
466Requires prior use of @code{OPEN} or @code{CREATE}.
467
468@item CLEAR
469Discard the contents of the current archive, cancelling the effect of
470any operations since the last @code{SAVE}. May be executed (with no
471effect) even if no current archive is specified.
472
473@item CREATE @var{archive}
474Creates an archive, and makes it the current archive (required for many
475other commands). The new archive is created with a temporary name; it
476is not actually saved as @var{archive} until you use @code{SAVE}.
477You can overwrite existing archives; similarly, the contents of any
478existing file named @var{archive} will not be destroyed until @code{SAVE}.
479
480@item DELETE @var{module}, @var{module}, @dots{} @var{module}
481Delete each listed @var{module} from the current archive; equivalent to
482@samp{ar -d @var{archive} @var{module} @dots{} @var{module}}.
483
484Requires prior use of @code{OPEN} or @code{CREATE}.
485
486@item DIRECTORY @var{archive} (@var{module}, @dots{} @var{module})
487@itemx DIRECTORY @var{archive} (@var{module}, @dots{} @var{module}) @var{outputfile}
488List each named @var{module} present in @var{archive}. The separate
489command @code{VERBOSE} specifies the form of the output: when verbose
490output is off, output is like that of @samp{ar -t @var{archive}
b703c078
DM
491@var{module}@dots{}}. When verbose output is on, the listing is like
492@samp{ar -tv @var{archive} @var{module}@dots{}}.
765a273f
RP
493
494Output normally goes to the standard output stream; however, if you
495specify @var{outputfile} as a final argument, @code{ar} directs the
496output to that file.
497
498@item END
499Exit from @code{ar}, with a @code{0} exit code to indicate successful
500completion. This command does not save the output file; if you have
501changed the current archive since the last @code{SAVE} command, those
502changes are lost.
503
504@item EXTRACT @var{module}, @var{module}, @dots{} @var{module}
505Extract each named @var{module} from the current archive, writing them
506into the current directory as separate files. Equivalent to @samp{ar -x
b703c078 507@var{archive} @var{module}@dots{}}.
765a273f
RP
508
509Requires prior use of @code{OPEN} or @code{CREATE}.
510
511@ignore
512@c FIXME Tokens but no commands???
513@item FULLDIR
514
515@item HELP
516@end ignore
517
518@item LIST
519Display full contents of the current archive, in ``verbose'' style
520regardless of the state of @code{VERBOSE}. The effect is like @samp{ar
521tv @var{archive}}). (This single command is a GNU @code{ld}
522enhancement, rather than present for MRI compatibility.)
523
524Requires prior use of @code{OPEN} or @code{CREATE}.
525
526@item OPEN @var{archive}
527Opens an existing archive for use as the current archive (required for
528many other commands). Any changes as the result of subsequent commands
529will not actually affect @var{archive} until you next use @code{SAVE}.
530
531@item REPLACE @var{module}, @var{module}, @dots{} @var{module}
532In the current archive, replace each existing @var{module} (named in
533the @code{REPLACE} arguments) from files in the current working directory.
534To execute this command without errors, both the file, and the module in
535the current archive, must exist.
536
537Requires prior use of @code{OPEN} or @code{CREATE}.
538
539@item VERBOSE
540Toggle an internal flag governing the output from @code{DIRECTORY}.
541When the flag is on, @code{DIRECTORY} output matches output from
b703c078 542@samp{ar -tv }@dots{}.
765a273f
RP
543
544@item SAVE
545Commit your changes to the current archive, and actually save it as a
546file with the name specified in the last @code{CREATE} or @code{OPEN}
547command.
548
549Requires prior use of @code{OPEN} or @code{CREATE}.
c72af735
RP
550
551@end table
552
8b2c2275
RP
553@iftex
554@node ld
c72af735
RP
555@chapter ld
556@cindex linker
557@kindex ld
558The GNU linker @code{ld} is now described in a separate manual.
27e94bd5 559@xref{Top,, Overview,, Using LD: the GNU linker}.
8b2c2275 560@end iftex
c72af735 561
eae04238 562@node nm
c72af735
RP
563@chapter nm
564@cindex symbols
565@kindex nm
566
567@smallexample
d6a4c375
DM
568nm [ -a | --debug-syms ] [ -g | --extern-only ]
569 [ -B ] [ -C | --demangle ]
6cfbdb50
DM
570 [ -s | --print-armap ] [ -A | -o | --print-file-name ]
571 [ -n | -v | --numeric-sort ] [ -p | --no-sort ]
4d9b5d5a 572 [ -r | --reverse-sort ] [ -u | --undefined-only ]
6cfbdb50
DM
573 [ -t @var{radix} | --radix=@var{radix} ] [ -P | --portability ]
574 [ --target=@var{bfdname} ] [ -f @var{format} | --format=@var{format} ]
b26ac613 575 [ -V | --version ] [ --help ] [ @var{objfile}@dots{} ]
c72af735
RP
576@end smallexample
577
b703c078 578GNU @code{nm} lists the symbols from object files @var{objfile}@dots{}.
6cfbdb50
DM
579If no object files are listed as arguments, @code{nm} assumes
580@file{a.out}.
581
582For each symbol, @code{nm} shows:
583
584@itemize @bullet
585@item
586The symbol value, in the radix selected by options (see below), or
587hexadecimal by default.
588
589@item
590The symbol type. At least the following types are used; others are, as
591well, depending on the object file format. If lowercase, the symbol is
592local; if uppercase, the symbol is global (external).
593
594@c Some more detail on exactly what these symbol types are used for
595@c would be nice.
596@table @code
597@item A
598Absolute.
599
600@item B
601BSS (uninitialized data).
602
603@item C
604Common.
605
606@item D
607Initialized data.
608
609@item I
610Indirect reference.
611
612@item T
613Text (program code).
614
615@item U
616Undefined.
617@end table
618
619@item
620The symbol name.
621@end itemize
c72af735
RP
622
623The long and short forms of options, shown here as alternatives, are
624equivalent.
625
626@table @code
6cfbdb50
DM
627@item -A
628@itemx -o
629@itemx --print-file-name
630@cindex input file name
631@cindex file name
632@cindex source file name
633Precede each symbol by the name of the input file (or archive element)
634in which it was found, rather than identifying the input file once only,
635before all of its symbols.
c72af735
RP
636
637@item -a
918c2f61 638@itemx --debug-syms
c72af735 639@cindex debugging symbols
6cfbdb50
DM
640Display all symbols, even debugger-only symbols; normally these are not
641listed.
642
68dd5295
DM
643@item -B
644@cindex @code{nm} format
645@cindex @code{nm} compatibility
d6a4c375
DM
646The same as @samp{--format=bsd} (for compatibility with the MIPS @code{nm}).
647
648@item -C
649@itemx --demangle
650@cindex demangling C++ symbols
651Decode (@dfn{demangle}) low-level symbol names into user-level names.
652Besides removing any initial underscore prepended by the system, this
653makes C++ function names readable. @xref{c++filt}, for more information
654on demangling.
68dd5295 655
6cfbdb50
DM
656@item -f @var{format}
657@itemx --format=@var{format}
68dd5295
DM
658@cindex @code{nm} format
659@cindex @code{nm} compatibility
6cfbdb50
DM
660Use the output format @var{format}, which can be @code{bsd},
661@code{sysv}, or @code{posix}. The default is @code{bsd}.
b26ac613 662Only the first character of @var{format} is significant; it can be
6cfbdb50 663either upper or lower case.
c72af735
RP
664
665@item -g
918c2f61 666@itemx --extern-only
c72af735
RP
667@cindex external symbols
668Display only external symbols.
669
b26ac613
DM
670@item -n
671@itemx -v
672@itemx --numeric-sort
673Sort symbols numerically by their addresses, rather than alphabetically
674by their names.
675
c72af735 676@item -p
918c2f61 677@itemx --no-sort
c72af735 678@cindex sorting symbols
650a49f0 679Do not bother to sort the symbols in any order; print them in the order
6cfbdb50
DM
680encountered.
681
682@item -P
683@itemx --portability
684Use the POSIX.2 standard output format instead of the default format.
685Equivalent to @samp{-f posix}.
c72af735 686
c72af735 687@item -s
918c2f61 688@itemx --print-armap
c72af735
RP
689@cindex symbol index, listing
690When listing symbols from archive members, include the index: a mapping
ec40bbb8
DM
691(stored in the archive by @code{ar} or @code{ranlib}) of which modules
692contain definitions for which names.
c72af735 693
c72af735 694@item -r
918c2f61 695@itemx --reverse-sort
ec40bbb8 696Reverse the order of the sort (whether numeric or alphabetic); let the
c72af735
RP
697last come first.
698
6cfbdb50
DM
699@item -t @var{radix}
700@itemx --radix=@var{radix}
701Use @var{radix} as the radix for printing the symbol values. It must be
702@samp{d} for decimal, @samp{o} for octal, or @samp{x} for hexadecimal.
703
ec40bbb8 704@item --target=@var{bfdname}
c72af735
RP
705@cindex object code format
706Specify an object code format other than your system's default format.
eae04238 707@xref{Target Selection}, for more information.
c72af735
RP
708
709@item -u
918c2f61 710@itemx --undefined-only
c72af735
RP
711@cindex external symbols
712@cindex undefined symbols
713Display only undefined symbols (those external to each object file).
714
6cfbdb50
DM
715@item -V
716@itemx --version
b26ac613
DM
717Show the version number of @code{nm} and exit.
718
719@item --help
720Show a summary of the options to @code{nm} and exit.
c72af735
RP
721@end table
722
eae04238 723@node objcopy
eed5eeab
DM
724@chapter objcopy
725
726@smallexample
eae04238
DM
727objcopy [ -F @var{bfdname} | --target=@var{bfdname} ]
728 [ -I @var{bfdname} | --input-target=@var{bfdname} ]
729 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
eed5eeab
DM
730 [ -S | --strip-all ] [ -g | --strip-debug ]
731 [ -x | --discard-all ] [ -X | --discard-locals ]
f7b839f7
DM
732 [ -b @var{byte} | --byte=@var{byte} ]
733 [ -i @var{interleave} | --interleave=@var{interleave} ]
734 [ -v | --verbose ] [ -V | --version ] [ --help ]
eed5eeab
DM
735 @var{infile} [@var{outfile}]
736@end smallexample
737
8981cac5
JO
738The @sc{gnu} @code{objcopy} utility copies the contents of an object
739file to another. @code{objcopy} uses the @sc{gnu} @sc{bfd} Library to
740read and write the object files. It can write the destination object
741file in a format different from that of the source object file. The
742exact behavior of @code{objcopy} is controlled by command-line options.
eed5eeab
DM
743
744@code{objcopy} creates temporary files to do its translations and
8981cac5
JO
745deletes them afterward. @code{objcopy} uses @sc{bfd} to do all its
746translation work; it has access to all the formats described in @sc{bfd}
747and thus is able to recognize most formats without being told
748explicitly. @xref{BFD,,BFD,ld.info,Using LD}.
eed5eeab
DM
749
750@table @code
751@item @var{infile}
752@itemx @var{outfile}
8981cac5 753The source and output files, respectively.
eed5eeab
DM
754If you do not specify @var{outfile}, @code{objcopy} creates a
755temporary file and destructively renames the result with
8981cac5 756the name of @var{infile}.
eed5eeab 757
eae04238
DM
758@item -I @var{bfdname}
759@itemx --input-target=@var{bfdname}
760Consider the source file's object format to be @var{bfdname}, rather than
761attempting to deduce it. @xref{Target Selection}, for more information.
eed5eeab 762
eae04238
DM
763@item -O @var{bfdname}
764@itemx --output-target=@var{bfdname}
765Write the output file using the object format @var{bfdname}.
766@xref{Target Selection}, for more information.
eed5eeab 767
eae04238
DM
768@item -F @var{bfdname}
769@itemx --target=@var{bfdname}
770Use @var{bfdname} as the object format for both the input and the output
771file; i.e., simply transfer data from source to destination with no
772translation. @xref{Target Selection}, for more information.
eed5eeab
DM
773
774@item -S
775@itemx --strip-all
776Do not copy relocation and symbol information from the source file.
777
778@item -g
779@itemx --strip-debug
780Do not copy debugging symbols from the source file.
781
782@item -x
783@itemx --discard-all
784Do not copy non-global symbols from the source file.
785@c FIXME any reason to prefer "non-global" to "local" here?
786
787@item -X
788@itemx --discard-locals
789Do not copy compiler-generated local symbols.
790(These usually start with @samp{L} or @samp{.}.)
791
db2e6adb
DM
792@item -b @var{byte}
793@itemx --byte=@var{byte}
794Keep only every @var{byte}th byte of the input file (header data is not
f7b839f7
DM
795affected). @var{byte} can be in the range from 0 to @var{interleave}-1,
796where @var{interleave} is given by the @samp{-i} or @samp{--interleave}
797option, or the default of 4. This option is useful for creating files
8981cac5 798to program @sc{rom}. It is typically used with an @code{srec} output
f7b839f7
DM
799target.
800
801@item -i @var{interleave}
802@itemx --interleave=@var{interleave}
8981cac5
JO
803Only copy one out of every @var{interleave} bytes. Select which byte to
804copy with the @var{-b} or @samp{--byte} option. The default is 4.
805@code{objcopy} ignores this option if you do not specify either @samp{-b} or
806@samp{--byte}.
db2e6adb 807
eed5eeab
DM
808@item -V
809@itemx --version
810Show the version number of @code{objcopy}.
811
812@item -v
813@itemx --verbose
814Verbose output: list all object files modified. In the case of
815archives, @samp{objcopy -V} lists all members of the archive.
816
817@item --help
818Show a summary of the options to @code{objcopy}.
819@end table
820
eae04238 821@node objdump
c72af735
RP
822@chapter objdump
823
824@cindex object file information
825@kindex objdump
826
827@smallexample
10f2a7f6
JO
828objdump [ -a | --archive-headers ]
829 [ -b @var{bfdname} | --target=@var{bfdname} ]
eae04238
DM
830 [ -d | --disassemble ] [ -f | --file-headers ]
831 [ -h | --section-headers | --headers ] [ -i | --info ]
10f2a7f6
JO
832 [ -j @var{section} | --section=@var{section} ]
833 [ -l | --line-numbers ]
eae04238
DM
834 [ -m @var{machine} | --architecture=@var{machine} ] [ -r | --reloc ]
835 [ -s | --full-contents ] [ --stabs ] [ -t | --syms ]
836 [ -x | --all-headers ] [ --version ] [ --help ]
4d9b5d5a 837 @var{objfile}@dots{}
c72af735
RP
838@end smallexample
839
840@code{objdump} displays information about one or more object files.
841The options control what particular information to display. This
842information is mostly useful to programmers who are working on the
843compilation tools, as opposed to programmers who just want their
844program to compile and work.
845
b26ac613
DM
846@var{objfile}@dots{} are the object files to be examined. When you
847specify archives, @code{objdump} shows information on each of the member
848object files.
849
c72af735 850The long and short forms of options, shown here as alternatives, are
ed78872a 851equivalent. At least one option besides @samp{-l} must be given.
c72af735
RP
852
853@table @code
c72af735 854@item -a
eae04238 855@itemx --archive-header
c72af735 856@cindex archive headers
ec40bbb8 857If any of the @var{objfile} files are archives, display the archive
c72af735
RP
858header information (in a format similar to @samp{ls -l}). Besides the
859information you could list with @samp{ar tv}, @samp{objdump -a} shows
860the object file format of each archive member.
861
c72af735 862@item -b @var{bfdname}
eae04238 863@itemx --target=@var{bfdname}
c72af735 864@cindex object code format
ec40bbb8
DM
865Specify that the object-code format for the object files is
866@var{bfdname}. This option may not be necessary; @var{objdump} can
867automatically recognize many formats.
868
869For example,
c72af735
RP
870@example
871objdump -b oasys -m vax -h fu.o
872@end example
873@noindent
ec40bbb8
DM
874displays summary information from the section headers (@samp{-h}) of
875@file{fu.o}, which is explicitly identified (@samp{-m}) as a VAX object
c72af735
RP
876file in the format produced by Oasys compilers. You can list the
877formats available with the @samp{-i} option.
eae04238 878@xref{Target Selection}, for more information.
c72af735
RP
879
880@item -d
eae04238 881@itemx --disassemble
c72af735
RP
882@cindex disassembling object code
883@cindex machine instructions
eae04238 884Display the assembler mnemonics for the machine
ec40bbb8 885instructions from @var{objfile}.
c72af735
RP
886
887@item -f
eae04238 888@itemx --file-header
c72af735 889@cindex object file header
eae04238 890Display summary information from the overall header of
ec40bbb8 891each of the @var{objfile} files.
c72af735
RP
892
893@item -h
eae04238 894@itemx --section-header
c5f0c938 895@itemx --header
c72af735 896@cindex section headers
eae04238 897Display summary information from the section headers of the
c72af735
RP
898object file.
899
db2e6adb
DM
900File segments may be relocated to nonstandard addresses, for example by
901using the @samp{-Ttext}, @samp{-Tdata}, or @samp{-Tbss} options to
902@code{ld}. However, some object file formats, such as a.out, do not
903store the starting address of the file segments. In those situations,
904although @code{ld} relocates the sections correctly, using @samp{objdump
905-h} to list the file section headers cannot show the correct addresses.
906Instead, it shows the usual addresses, which are implicit for the
907target.
908
b26ac613
DM
909@item --help
910Print a summary of the options to @code{objdump} and exit.
911
c72af735 912@item -i
eae04238 913@itemx --info
c72af735
RP
914@cindex architectures available
915@cindex object formats available
916Display a list showing all architectures and object formats available
ec40bbb8 917for specification with @samp{-b} or @samp{-m}.
c72af735 918
c72af735 919@item -j @var{name}
eae04238 920@itemx --section=@var{name}
c72af735 921@cindex section information
ec40bbb8 922Display information only for section @var{name}.
c72af735 923
c72af735 924@item -l
eae04238 925@itemx --line-numbers
c72af735 926@cindex source filenames for object files
eae04238
DM
927Label the display (using debugging information) with the filename
928and source line numbers corresponding to the object code shown.
929Only useful with @samp{-d}.
c72af735 930
c72af735 931@item -m @var{machine}
eae04238 932@itemx --architecture=@var{machine}
c72af735 933@cindex architecture
ec40bbb8 934Specify that the object files @var{objfile} are for architecture
c72af735
RP
935@var{machine}. You can list available architectures using the @samp{-i}
936option.
937
938@item -r
c5f0c938 939@itemx --reloc
c72af735 940@cindex relocation entries, in object file
eae04238 941Print the relocation entries of the file.
c72af735
RP
942
943@item -s
eae04238 944@itemx --full-contents
c72af735
RP
945@cindex sections, full contents
946@cindex object file sections
947Display the full contents of any sections requested.
948
c5f0c938
JG
949@item --stabs
950@cindex stab
951@cindex .stab
952@cindex debug symbols
953@cindex ELF object file format
c3c93fda
JG
954Display the full contents of any sections requested. Display the
955contents of the .stab and .stab.index and .stab.excl sections from an
956ELF file. This is only useful on systems (such as Solaris 2.0) in which
957@code{.stab} debugging symbol-table entries are carried in an ELF
958section. In most other file formats, debugging symbol-table entries are
c5f0c938
JG
959interleaved with linkage symbols, and are visible in the @samp{--syms}
960output.
961
c72af735 962@item -t
c5f0c938 963@itemx --syms
c72af735 964@cindex symbol table entries, printing
eae04238 965Print the symbol table entries of the file.
c72af735
RP
966This is similar to the information provided by the @samp{nm} program.
967
b26ac613
DM
968@item --version
969Print the version number of @code{objdump} and exit.
970
c72af735 971@item -x
eae04238 972@itemx --all-header
c72af735
RP
973@cindex all header information, object file
974@cindex header information, all
975Display all available header information, including the symbol table and
976relocation entries. Using @samp{-x} is equivalent to specifying all of
977@samp{-a -f -h -r -t}.
c72af735
RP
978@end table
979
eae04238 980@node ranlib
c72af735
RP
981@chapter ranlib
982
983@kindex ranlib
984@cindex archive contents
985@cindex symbol index
986
987@smallexample
4d9b5d5a 988ranlib [-vV] @var{archive}
c72af735
RP
989@end smallexample
990
ec40bbb8 991@code{ranlib} generates an index to the contents of an archive and
c72af735
RP
992stores it in the archive. The index lists each symbol defined by a
993member of an archive that is a relocatable object file.
994
918c2f61 995You may use @samp{nm -s} or @samp{nm --print-armap} to list this index.
c72af735 996
ec40bbb8 997An archive with such an index speeds up linking to the library and
c72af735
RP
998allows routines in the library to call each other without regard to
999their placement in the archive.
1000
1001The GNU @code{ranlib} program is another form of GNU @code{ar}; running
1002@code{ranlib} is completely equivalent to executing @samp{ar -s}.
1003@xref{ar}.
1004
4d9b5d5a
DM
1005@table @code
1006@item -v
1007@itemx -V
1008Show the version number of @code{ranlib}.
c3f471a4 1009@end table
4d9b5d5a 1010
eae04238 1011@node size
c72af735
RP
1012@chapter size
1013
1014@kindex size
1015@cindex section sizes
1016
1017@smallexample
4d9b5d5a
DM
1018size [ -A | -B | --format=@var{compatibility} ]
1019 [ --help ] [ -d | -o | -x | --radix=@var{number} ]
1020 [ --target=@var{bfdname} ] [ -V | --version ]
1021 @var{objfile}@dots{}
c72af735
RP
1022@end smallexample
1023
1024The GNU @code{size} utility lists the section sizes---and the total
ec40bbb8
DM
1025size---for each of the object or archive files @var{objfile} in its
1026argument list. By default, one line of output is generated for each
1027object file or each module in an archive.
c72af735 1028
b26ac613
DM
1029@var{objfile}@dots{} are the object files to be examined.
1030
c72af735 1031The command line options have the following meanings:
c72af735 1032
b26ac613 1033@table @code
c72af735
RP
1034@item -A
1035@itemx -B
ec40bbb8 1036@itemx --format=@var{compatibility}
68dd5295 1037@cindex @code{size} display format
c72af735
RP
1038Using one of these options, you can choose whether the output from GNU
1039@code{size} resembles output from System V @code{size} (using @samp{-A},
ec40bbb8
DM
1040or @samp{--format=sysv}), or Berkeley @code{size} (using @samp{-B}, or
1041@samp{--format=berkeley}). The default is the one-line format similar to
c72af735 1042Berkeley's.
918c2f61
PB
1043@c Bonus for doc-source readers: you can also say --format=strange (or
1044@c anything else that starts with 's') for sysv, and --format=boring (or
c72af735
RP
1045@c anything else that starts with 'b') for Berkeley.
1046
1047Here is an example of the Berkeley (default) format of output from
1048@code{size}:
1049@smallexample
eae04238 1050size --format=Berkeley ranlib size
c72af735
RP
1051text data bss dec hex filename
1052294880 81920 11592 388392 5ed28 ranlib
1053294880 81920 11888 388688 5ee50 size
1054@end smallexample
1055
1056@noindent
1057This is the same data, but displayed closer to System V conventions:
1058
1059@smallexample
eae04238 1060size --format=SysV ranlib size
c72af735
RP
1061ranlib :
1062section size addr
1063.text 294880 8192
1064.data 81920 303104
1065.bss 11592 385024
1066Total 388392
1067
1068
1069size :
1070section size addr
1071.text 294880 8192
1072.data 81920 303104
1073.bss 11888 385024
1074Total 388688
1075@end smallexample
1076
918c2f61 1077@item --help
c72af735
RP
1078Show a summary of acceptable arguments and options.
1079
1080@item -d
1081@itemx -o
1082@itemx -x
ec40bbb8 1083@itemx --radix=@var{number}
68dd5295 1084@cindex @code{size} number format
c72af735
RP
1085@cindex radix for section sizes
1086Using one of these options, you can control whether the size of each
ec40bbb8
DM
1087section is given in decimal (@samp{-d}, or @samp{--radix=10}); octal
1088(@samp{-o}, or @samp{--radix=8}); or hexadecimal (@samp{-x}, or
1089@samp{--radix=16}). In @samp{--radix=@var{number}}, only the three
c72af735
RP
1090values (8, 10, 16) are supported. The total size is always given in two
1091radices; decimal and hexadecimal for @samp{-d} or @samp{-x} output, or
1092octal and hexadecimal if you're using @samp{-o}.
1093
ec40bbb8 1094@item --target=@var{bfdname}
c72af735 1095@cindex object code format
ec40bbb8
DM
1096Specify that the object-code format for @var{objfile} is
1097@var{bfdname}. This option may not be necessary; @code{size} can
eae04238
DM
1098automatically recognize many formats.
1099@xref{Target Selection}, for more information.
c72af735
RP
1100
1101@item -V
918c2f61 1102@itemx --version
4d9b5d5a 1103Display the version number of @code{size}.
c72af735
RP
1104@end table
1105
eae04238 1106@node strings
ba7c8e29
DM
1107@chapter strings
1108@kindex strings
1109@cindex listings strings
1110@cindex printing strings
1111@cindex strings, printing
1112
1113@smallexample
b26ac613 1114strings [-afov] [-@var{min-len}] [-n @var{min-len}] [-t @var{radix}] [-]
650a49f0 1115 [--all] [--print-file-name] [--bytes=@var{min-len}]
eae04238
DM
1116 [--radix=@var{radix}] [--target=@var{bfdname}]
1117 [--help] [--version] @var{file}@dots{}
ba7c8e29
DM
1118@end smallexample
1119
1120For each @var{file} given, GNU @code{strings} prints the printable
1121character sequences that are at least 4 characters long (or the number
1122given with the options below) and are followed by a NUL or newline
1123character. By default, it only prints the strings from the initialized
1124data sections of object files; for other types of files, it prints the
1125strings from the whole file.
1126
1127@code{strings} is mainly useful for determining the contents of non-text
1128files.
1129
1130@table @code
1131@item -a
1132@itemx --all
1133@itemx -
1134Do not scan only the initialized data section of object files; scan
1135the whole files.
1136
1137@item -f
1138@itemx --print-file-name
1139Print the name of the file before each string.
1140
b26ac613 1141@item --help
ba7c8e29
DM
1142Print a summary of the program usage on the standard output and exit.
1143
ba7c8e29 1144@itemx -@var{min-len}
b26ac613 1145@item -n @var{min-len}
ba7c8e29
DM
1146@itemx --bytes=@var{min-len}
1147Print sequences of characters that are at least @var{min-len} characters
1148long, instead of the default 4.
1149
1150@item -o
b26ac613
DM
1151Like @samp{-t o}. Some other versions of @code{strings} have @samp{-o}
1152act like @samp{-t d} instead. Since we can not be compatible with both
1153ways, we simply chose one.
ba7c8e29
DM
1154
1155@item -t @var{radix}
1156@itemx --radix=@var{radix}
1157Print the offset within the file before each string. The single
1158character argument specifies the radix of the offset---@samp{o} for
1159octal, @samp{x} for hexadecimal, or @samp{d} for decimal.
1160
eae04238
DM
1161@item --target=@var{bfdname}
1162@cindex object code format
1163Specify an object code format other than your system's default format.
1164@xref{Target Selection}, for more information.
1165
ba7c8e29
DM
1166@item -v
1167@itemx --version
1168Print the program version number on the standard output and exit.
1169@end table
1170
eae04238 1171@node strip
c72af735
RP
1172@chapter strip
1173
1174@kindex strip
1175@cindex removing symbols
1176@cindex discarding symbols
1815e42c 1177@cindex symbols, discarding
c72af735
RP
1178
1179@smallexample
eae04238
DM
1180strip [ -F @var{bfdname} | --target=@var{bfdname} | --target=@var{bfdname} ]
1181 [ -I @var{bfdname} | --input-target=@var{bfdname} ]
1182 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
b703c078
DM
1183 [ -s | --strip-all ] [ -S | -g | --strip-debug ]
1184 [ -x | --discard-all ] [ -X | --discard-locals ]
b26ac613 1185 [ -v | --verbose ] [ -V | --version ] [ --help ]
b703c078 1186 @var{objfile}@dots{}
c72af735
RP
1187@end smallexample
1188
e31e9a8d 1189GNU @code{strip} discards all symbols from object files
ec40bbb8 1190@var{objfile}. The list of object files may include archives.
b26ac613 1191At least one object file must be given.
c72af735 1192
ec40bbb8 1193@code{strip} modifies the files named in its argument,
c72af735 1194rather than writing modified copies under different names.
c72af735 1195
c72af735 1196@table @code
eae04238
DM
1197@item -F @var{bfdname}
1198@itemx --target=@var{bfdname}
b26ac613 1199Treat the original @var{objfile} as a file with the object
eae04238
DM
1200code format @var{bfdname}, and rewrite it in the same format.
1201@xref{Target Selection}, for more information.
b26ac613
DM
1202
1203@item --help
1204Show a summary of the options to @code{strip} and exit.
1205
eae04238
DM
1206@item -I @var{bfdname}
1207@itemx --input-target=@var{bfdname}
ec40bbb8 1208Treat the original @var{objfile} as a file with the object
eae04238
DM
1209code format @var{bfdname}.
1210@xref{Target Selection}, for more information.
918c2f61 1211
eae04238
DM
1212@item -O @var{bfdname}
1213@itemx --output-target=@var{bfdname}
1214Replace @var{objfile} with a file in the output format @var{bfdname}.
1215@xref{Target Selection}, for more information.
918c2f61 1216
b703c078
DM
1217@item -s
1218@itemx --strip-all
1219Remove all symbols.
1220
918c2f61
PB
1221@item -g
1222@itemx -S
1223@itemx --strip-debug
1224Remove debugging symbols only.
1225
1226@item -x
1227@itemx --discard-all
1228Remove non-global symbols.
1229
1230@item -X
1231@itemx --discard-locals
1232Remove compiler-generated local symbols.
ec40bbb8 1233(These usually start with @samp{L} or @samp{.}.)
918c2f61
PB
1234
1235@item -V
1236@itemx --version
ec40bbb8 1237Show the version number for @code{strip}.
918c2f61 1238
1815e42c 1239@item -v
918c2f61
PB
1240@itemx --verbose
1241Verbose output: list all object files modified. In the case of
1269d441 1242archives, @samp{strip -v} lists all members of the archive.
c72af735
RP
1243@end table
1244
eae04238 1245@node c++filt
b6216af2
PB
1246@chapter c++filt
1247
1248@kindex c++filt
1249@cindex demangling C++ symbols
1250
b26ac613
DM
1251@smallexample
1252c++filt [ -_ | --strip-underscores ]
1253 [ -s @var{format} | --format=@var{format} ]
d6a4c375 1254 [ --help ] [ --version ] [ @var{symbol}@dots{} ]
b26ac613
DM
1255@end smallexample
1256
6c69b6bd
JO
1257The C++ language provides function overloading, which means that you can
1258write many functions with the same name (providing each takes parameters
1259of different types). All C++ function names are encoded into a
b26ac613 1260low-level assembly label (this process is known as
6c69b6bd
JO
1261@dfn{mangling}). The @code{c++filt} program does the inverse mapping: it
1262decodes (@dfn{demangles}) low-level names into user-level names so that
1263the linker can keep these overloaded functions from clashing.
1264
1265Every alphanumeric word (consisting of letters, digits, underscores,
1266dollars, or periods) seen in the input is a potential label. If the
1267label decodes into a C++ name, the C++ name replaces the low-level
1268name in the output.
b6216af2 1269
d6a4c375 1270You can use @code{c++filt} to decipher individual symbols:
6c69b6bd
JO
1271
1272@example
1273c++filt @var{symbol}
1274@end example
1275
d6a4c375
DM
1276If no @var{symbol} arguments are given, @code{c++filt} reads symbol
1277names from the standard input and writes the demangled names to the
1278standard output. All results are printed on the standard output.
b6216af2 1279
b26ac613
DM
1280@table @code
1281@item -_
94e9ad77 1282@itemx --strip-underscores
b26ac613
DM
1283On some systems, both the C and C++ compilers put an underscore in front
1284of every name. For example, the C name @code{foo} gets the low-level
1285name @code{_foo}. This option removes the initial underscore.
1286
1287@item -s @var{format}
1288@itemx --format=@var{format}
1289GNU @code{nm} can decode three different methods of mangling, used by
1290different C++ compilers. The argument to this option selects which
1291method it uses:
1292
1293@table @code
1294@item gnu
1295the one used by the GNU compiler (the default method)
1296@item lucid
1297the one used by the Lucid compiler
1298@item arm
1299the one specified by the C++ Annotated Reference Manual
1300@end table
1301
1302@item --help
1303Print a summary of the options to @code{c++filt} and exit.
1304
1305@item --version
1306Print the version number of @code{c++filt} and exit.
1307@end table
b6216af2 1308
5eac46ae
JO
1309@quotation
1310@emph{Warning:} @code{c++filt} is a new utility, and the details of its
1311user interface are subject to change in future releases. In particular,
1312a command-line option may be required in the the future to decode a name
1313passed as an argument on the command line; in other words,
1314
1315@example
b26ac613 1316c++filt @var{symbol}
5eac46ae
JO
1317@end example
1318
1319@noindent
1320may in a future release become
1321
1322@example
b26ac613 1323c++filt @var{option} @var{symbol}
5eac46ae
JO
1324@end example
1325@end quotation
1326
eae04238 1327@node nlmconv
94e9ad77
JO
1328@chapter nlmconv
1329
1330@code{nlmconv} converts a relocatable object file into a NetWare
8981cac5
JO
1331Loadable Module.
1332
1333@ignore
1334@code{nlmconv} currently works with @samp{i386} object
4961ce5b
JO
1335files in @code{coff}, @sc{elf}, or @code{a.out} format, and @sc{SPARC}
1336object files in @sc{elf}, or @code{a.out} format@footnote{
1337@code{nlmconv} should work with any @samp{i386} or @sc{sparc} object
1338format in the Binary File Descriptor library. It has only been tested
1339with the above formats.}.
8981cac5 1340@end ignore
4961ce5b
JO
1341
1342@quotation
1343@emph{Warning:} @code{nlmconv} is not always built as part of the binary
1344utilities, since it is only useful for NLM targets.
1345@end quotation
94e9ad77
JO
1346
1347@smallexample
eae04238
DM
1348nlmconv [ -I @var{bfdname} | --input-target=@var{bfdname} ]
1349 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
94e9ad77 1350 [ -T @var{headerfile} | --header-file=@var{headerfile} ]
20465f8b 1351 [ -d | --debug] [ -l @var{linker} | --linker=@var{linker} ]
94e9ad77
JO
1352 [ -h | --help ] [ -V | --version ]
1353 @var{infile} @var{outfile}
1354@end smallexample
1355
1356@code{nlmconv} converts the relocatable @samp{i386} object file
1357@var{infile} into the NetWare Loadable Module @var{outfile}, optionally
1358reading @var{headerfile} for NLM header information. For instructions
5b0ba16d
JO
1359on writing the NLM command file language used in header files, see the
1360@samp{linkers} section, @samp{NLMLINK} in particular, of the @cite{NLM
1361Development and Tools Overview}, which is part of the NLM Software
1362Developer's Kit (``NLM SDK''), available from Novell, Inc.
1363@code{nlmconv} uses the @sc{gnu} Binary File Descriptor library to read
eae04238 1364@var{infile}; see @ref{BFD,,BFD,ld.info,Using LD}, for
5b0ba16d 1365more information.
94e9ad77 1366
20465f8b
JO
1367@code{nlmconv} can perform a link step. In other words, you can list
1368more than one object file for input if you list them in the definitions
1369file (rather than simply specifying one input file on the command line).
1370In this case, @code{nlmconv} calls the linker for you.
1371
94e9ad77 1372@table @code
eae04238
DM
1373@item -I @var{bfdname}
1374@itemx --input-target=@var{bfdname}
94e9ad77 1375Object format of the input file. @code{nlmconv} can usually determine
eae04238
DM
1376the format of a given file (so no default is necessary).
1377@xref{Target Selection}, for more information.
94e9ad77 1378
eae04238
DM
1379@item -O @var{bfdname}
1380@itemx --output-target=@var{bfdname}
94e9ad77
JO
1381Object format of the output file. @code{nlmconv} infers the output
1382format based on the input format, e.g. for a @samp{i386} input file the
eae04238
DM
1383output format is @samp{nlm32-i386}.
1384@xref{Target Selection}, for more information.
94e9ad77
JO
1385
1386@item -T @var{headerfile}
1387@itemx --header-file=@var{headerfile}
1388Reads @var{headerfile} for NLM header information. For instructions on
5b0ba16d
JO
1389writing the NLM command file language used in header files, see@ see the
1390@samp{linkers} section, of the @cite{NLM Development and Tools
1391Overview}, which is part of the NLM Software Developer's Kit, available
1392from Novell, Inc.
94e9ad77 1393
20465f8b
JO
1394@item -d
1395@itemx --debug
1396Displays (on standard error) the linker command line used by @code{nlmconv}.
1397
1398@item -l @var{linker}
1399@itemx --linker=@var{linker}
1400Use @var{linker} for any linking. @var{linker} can be an abosolute or a
1401relative pathname.
1402
94e9ad77
JO
1403@item -h
1404@itemx --help
1405Prints a usage summary.
1406
1407@item -V
1408@itemx --version
1409Prints the version number for @code{nlmconv}.
1410@end table
1411
eae04238
DM
1412@node Selecting The Target System
1413@chapter Selecting the target system
1414
8981cac5
JO
1415You can specify three aspects of the target system to the @sc{gnu}
1416binary file utilities, each in several ways:
eae04238
DM
1417
1418@itemize @bullet
1419@item
8981cac5 1420the target
eae04238
DM
1421
1422@item
8981cac5 1423the architecture
eae04238
DM
1424
1425@item
8981cac5 1426the linker emulation (which applies to the linker only)
eae04238
DM
1427@end itemize
1428
1429In the following summaries, the lists of ways to specify values are in
8981cac5
JO
1430order of decreasing precedence. The ways listed first override those
1431listed later.
eae04238 1432
8981cac5
JO
1433The commands to list valid values only list the values for which the
1434programs you are running were configured. If they were configured with
eae04238
DM
1435@samp{--with-targets=all}, the commands list most of the available
1436values, but a few are left out; not all targets can be configured in at
8981cac5
JO
1437once because some of them can only be configured @dfn{native} (on hosts
1438with the same type as the target system).
eae04238
DM
1439
1440@menu
1441* Target Selection::
1442* Architecture Selection::
1443* Linker Emulation Selection::
1444@end menu
1445
1446@node Target Selection
8981cac5 1447@section Target Selection
eae04238
DM
1448
1449A @dfn{target} is an object file format. A given target may be
1450supported for multiple architectures (@pxref{Architecture Selection}).
8981cac5
JO
1451A target selection may also have variations for different operating
1452systems or architectures.
eae04238 1453
8981cac5
JO
1454The command to list valid target values is @samp{objdump -i}
1455(the first column of output contains the relevant information).
eae04238 1456
10f2a7f6
JO
1457Some sample values are: @samp{a.out-hp300bsd}, @samp{ecoff-littlemips},
1458@samp{a.out-sunos-big}.
eae04238 1459
8981cac5 1460@subheading @code{objdump} Target
eae04238
DM
1461
1462Ways to specify:
1463
1464@enumerate
1465@item
8981cac5 1466command line option: @samp{-b} or @samp{--target}
eae04238
DM
1467
1468@item
1469environment variable @code{GNUTARGET}
1470
1471@item
1472deduced from the input file
1473@end enumerate
1474
8981cac5 1475@subheading @code{objcopy} and @code{strip} Input Target
eae04238
DM
1476
1477Ways to specify:
1478
1479@enumerate
1480@item
8981cac5 1481command line options: @samp{-I} or @samp{--input-target}, or @samp{-F} or @samp{--target}
eae04238
DM
1482
1483@item
1484environment variable @code{GNUTARGET}
1485
1486@item
1487deduced from the input file
1488@end enumerate
1489
8981cac5 1490@subheading @code{objcopy} and @code{strip} Output Target
eae04238
DM
1491
1492Ways to specify:
1493
1494@enumerate
1495@item
8981cac5 1496command line options: @samp{-O} or @samp{--output-target}, or @samp{-F} or @samp{--target}
eae04238
DM
1497
1498@item
8981cac5 1499the input target (see ``@code{objcopy} and @code{strip} Input Target'' above)
eae04238
DM
1500
1501@item
1502environment variable @code{GNUTARGET}
1503
1504@item
1505deduced from the input file
1506@end enumerate
1507
8981cac5 1508@subheading @code{nm}, @code{size}, and @code{strings} Target
eae04238
DM
1509
1510Ways to specify:
1511
1512@enumerate
1513@item
8981cac5 1514command line option: @samp{--target}
eae04238
DM
1515
1516@item
1517environment variable @code{GNUTARGET}
1518
1519@item
1520deduced from the input file
1521@end enumerate
1522
8981cac5 1523@subheading Linker Input Target
eae04238
DM
1524
1525Ways to specify:
1526
1527@enumerate
1528@item
8981cac5 1529command line option: @samp{-b} or @samp{--format}
eae04238
DM
1530(@pxref{Options,,Options,ld.info,Using LD})
1531
1532@item
1533script command @code{TARGET}
1534(@pxref{Option Commands,,Option Commands,ld.info,Using LD})
1535
1536@item
1537environment variable @code{GNUTARGET}
1538(@pxref{Environment,,Environment,ld.info,Using LD})
1539
1540@item
1541the default target of the selected linker emulation
1542(@pxref{Linker Emulation Selection})
1543@end enumerate
1544
8981cac5 1545@subheading Linker Output Target
eae04238
DM
1546
1547Ways to specify:
1548
1549@enumerate
1550@item
8981cac5 1551command line option: @samp{-oformat}
eae04238
DM
1552(@pxref{Options,,Options,ld.info,Using LD})
1553
1554@item
1555script command @code{OUTPUT_FORMAT}
1556(@pxref{Option Commands,,Option Commands,ld.info,Using LD})
1557
1558@item
8981cac5 1559the linker input target (see ``Linker Input Target'' above)
eae04238
DM
1560@end enumerate
1561
1562@node Architecture Selection
1563@section Architecture selection
1564
8981cac5
JO
1565An @dfn{architecture} is a type of @sc{cpu} on which an object file is
1566to run. Its name may contain a colon, separating the name of the
1567processor family from the name of the particular @sc{cpu}.
eae04238 1568
8981cac5
JO
1569The command to list valid architecture values is @samp{objdump -i} (the
1570second column contains the relevant information).
eae04238
DM
1571
1572Sample values: @samp{m68k:68020}, @samp{mips:3000}, @samp{sparc}.
1573
8981cac5 1574@subheading @code{objdump} Architecture
eae04238
DM
1575
1576Ways to specify:
1577
1578@enumerate
1579@item
8981cac5 1580command line option: @samp{-m} or @samp{--architecture}
eae04238
DM
1581
1582@item
1583deduced from the input file
1584@end enumerate
1585
8981cac5 1586@subheading @code{objcopy}, @code{nm}, @code{size}, @code{strings} Architecture
eae04238
DM
1587
1588Ways to specify:
1589
1590@enumerate
1591@item
1592deduced from the input file
1593@end enumerate
1594
8981cac5 1595@subheading Linker Input Architecture
eae04238
DM
1596
1597Ways to specify:
1598
1599@enumerate
1600@item
1601deduced from the input file
1602@end enumerate
1603
8981cac5 1604@subheading Linker Output Architecture
eae04238
DM
1605
1606Ways to specify:
1607
1608@enumerate
1609@item
1610script command @code{OUTPUT_ARCH}
1611(@pxref{Option Commands,,Option Commands,ld.info,Using LD})
1612
1613@item
1614the default architecture from the linker output target
8981cac5 1615(@pxref{Target Selection})
eae04238
DM
1616@end enumerate
1617
1618@node Linker Emulation Selection
1619@section Linker emulation selection
1620
1621A linker @dfn{emulation} is a ``personality'' of the linker, which gives
1622the linker default values for the other aspects of the target system.
1623In particular, it consists of
1624
1625@itemize @bullet
1626@item
8981cac5 1627the linker script
eae04238
DM
1628
1629@item
8981cac5 1630the target
eae04238
DM
1631
1632@item
1633several ``hook'' functions that are run at certain stages of the linking
8981cac5 1634process to do special things that some targets require
eae04238
DM
1635@end itemize
1636
8981cac5 1637The command to list valid linker emulation values is @samp{ld -V}.
eae04238
DM
1638
1639Sample values: @samp{hp300bsd}, @samp{mipslit}, @samp{sun4}.
1640
1641Ways to specify:
1642
1643@enumerate
1644@item
8981cac5 1645command line option: @samp{-m}
eae04238
DM
1646(@pxref{Options,,Options,ld.info,Using LD})
1647
1648@item
1649environment variable @code{LDEMULATION}
1650
1651@item
1652compiled-in @code{DEFAULT_EMULATION} from @file{Makefile},
1653which comes from @code{EMUL} in @file{config/@var{target}.mt}
1654@end enumerate
1655
1656@node Index
c72af735
RP
1657@unnumbered Index
1658
1659@printindex cp
1660
1661@contents
1662@bye
This page took 0.174954 seconds and 4 git commands to generate.