* ar.c (ranlib_usage): Describe -D.
[deliverable/binutils-gdb.git] / binutils / doc / binutils.texi
CommitLineData
252b5132
RH
1\input texinfo @c -*- Texinfo -*-
2@setfilename binutils.info
e016ec1f
NC
3@settitle @sc{gnu} Binary Utilities
4@finalout
5@synindex ky cp
8c2bc687 6
dff70155 7@c man begin INCLUDE
c428fa83 8@include bfdver.texi
dff70155 9@c man end
252b5132 10
0e9517a9 11@copying
0285c67d 12@c man begin COPYRIGHT
2423fbe6 13Copyright @copyright{} 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
ec25acb3 142000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
ed22650e 15Free Software Foundation, Inc.
252b5132 16
0285c67d 17Permission is granted to copy, distribute and/or modify this document
793c5807 18under the terms of the GNU Free Documentation License, Version 1.3
0285c67d
NC
19or any later version published by the Free Software Foundation;
20with no Invariant Sections, with no Front-Cover Texts, and with no
21Back-Cover Texts. A copy of the license is included in the
947ed062 22section entitled ``GNU Free Documentation License''.
252b5132 23
0285c67d 24@c man end
0e9517a9 25@end copying
252b5132 26
e016ec1f
NC
27@dircategory Software development
28@direntry
29* Binutils: (binutils). The GNU binary utilities.
30@end direntry
31
32@dircategory Individual utilities
33@direntry
34* addr2line: (binutils)addr2line. Convert addresses to file and line.
35* ar: (binutils)ar. Create, modify, and extract from archives.
36* c++filt: (binutils)c++filt. Filter to demangle encoded C++ symbols.
37* cxxfilt: (binutils)c++filt. MS-DOS name for c++filt.
38* dlltool: (binutils)dlltool. Create files needed to build and use DLLs.
39* nlmconv: (binutils)nlmconv. Converts object code into an NLM.
40* nm: (binutils)nm. List symbols from object files.
41* objcopy: (binutils)objcopy. Copy and translate object files.
42* objdump: (binutils)objdump. Display information from object files.
43* ranlib: (binutils)ranlib. Generate index to archive contents.
44* readelf: (binutils)readelf. Display the contents of ELF format files.
45* size: (binutils)size. List section sizes and total size.
46* strings: (binutils)strings. List printable strings from files.
47* strip: (binutils)strip. Discard symbols.
30fd33bb 48* elfedit: (binutils)elfedit. Update the ELF header of ELF files.
e016ec1f
NC
49* windmc: (binutils)windmc. Generator for Windows message resources.
50* windres: (binutils)windres. Manipulate Windows resources.
51@end direntry
52
252b5132 53@titlepage
252b5132 54@title The @sc{gnu} Binary Utilities
e49e529d
JM
55@ifset VERSION_PACKAGE
56@subtitle @value{VERSION_PACKAGE}
57@end ifset
252b5132
RH
58@subtitle Version @value{VERSION}
59@sp 1
36607f99 60@subtitle @value{UPDATED}
252b5132
RH
61@author Roland H. Pesch
62@author Jeffrey M. Osier
63@author Cygnus Support
64@page
65
66@tex
67{\parskip=0pt \hfill Cygnus Support\par \hfill
e016ec1f 68Texinfo \texinfoversion\par }
252b5132
RH
69@end tex
70
71@vskip 0pt plus 1filll
e016ec1f 72@insertcopying
252b5132 73@end titlepage
4ecceb71 74@contents
252b5132
RH
75
76@node Top
77@top Introduction
78
79@cindex version
947ed062 80This brief manual contains documentation for the @sc{gnu} binary
e49e529d
JM
81utilities
82@ifset VERSION_PACKAGE
83@value{VERSION_PACKAGE}
84@end ifset
85version @value{VERSION}:
252b5132
RH
86
87@iftex
88@table @code
89@item ar
90Create, modify, and extract from archives
91
92@item nm
93List symbols from object files
94
95@item objcopy
96Copy and translate object files
97
98@item objdump
99Display information from object files
100
101@item ranlib
102Generate index to archive contents
103
104@item readelf
105Display the contents of ELF format files.
106
107@item size
108List file section sizes and total size
109
110@item strings
111List printable strings from files
112
113@item strip
114Discard symbols
115
30fd33bb
L
116@item elfedit
117Update the ELF header of ELF files.
118
252b5132 119@item c++filt
9d51cc66
ILT
120Demangle encoded C++ symbols (on MS-DOS, this program is named
121@code{cxxfilt})
252b5132
RH
122
123@item addr2line
124Convert addresses into file names and line numbers
125
126@item nlmconv
127Convert object code into a Netware Loadable Module
128
129@item windres
130Manipulate Windows resources
131
692ed3e7
NC
132@item windmc
133Genertor for Windows message resources
134
252b5132
RH
135@item dlltool
136Create the files needed to build and use Dynamic Link Libraries
137@end table
138@end iftex
139
cf055d54 140This document is distributed under the terms of the GNU Free
793c5807
NC
141Documentation License version 1.3. A copy of the license is included
142in the section entitled ``GNU Free Documentation License''.
cf055d54 143
252b5132
RH
144@menu
145* ar:: Create, modify, and extract from archives
146* nm:: List symbols from object files
147* objcopy:: Copy and translate object files
148* objdump:: Display information from object files
149* ranlib:: Generate index to archive contents
fff279a7 150* readelf:: Display the contents of ELF format files
252b5132
RH
151* size:: List section sizes and total size
152* strings:: List printable strings from files
153* strip:: Discard symbols
30fd33bb 154* elfedit:: Update the ELF header of ELF files
252b5132 155* c++filt:: Filter to demangle encoded C++ symbols
9d51cc66 156* cxxfilt: c++filt. MS-DOS name for c++filt
252b5132
RH
157* addr2line:: Convert addresses to file and line
158* nlmconv:: Converts object code into an NLM
159* windres:: Manipulate Windows resources
692ed3e7 160* windmc:: Generator for Windows message resources
252b5132 161* dlltool:: Create files needed to build and use DLLs
07012eee 162* Common Options:: Command-line options for all utilities
fff279a7 163* Selecting the Target System:: How these utilities determine the target
252b5132 164* Reporting Bugs:: Reporting Bugs
cf055d54 165* GNU Free Documentation License:: GNU Free Documentation License
fa0d8a3e 166* Binutils Index:: Binutils Index
252b5132
RH
167@end menu
168
169@node ar
170@chapter ar
171
172@kindex ar
173@cindex archives
174@cindex collections of files
0285c67d
NC
175
176@c man title ar create, modify, and extract from archives
177
252b5132 178@smallexample
b3364cb9 179ar [@option{--plugin} @var{name}] [-]@var{p}[@var{mod} [@var{relpos}] [@var{count}]] [@option{--target} @var{bfdname}] @var{archive} [@var{member}@dots{}]
252b5132
RH
180ar -M [ <mri-script ]
181@end smallexample
182
0285c67d
NC
183@c man begin DESCRIPTION ar
184
c7c55b78 185The @sc{gnu} @command{ar} program creates, modifies, and extracts from
252b5132
RH
186archives. An @dfn{archive} is a single file holding a collection of
187other files in a structure that makes it possible to retrieve
188the original individual files (called @dfn{members} of the archive).
189
190The original files' contents, mode (permissions), timestamp, owner, and
191group are preserved in the archive, and can be restored on
c1c0eb9e 192extraction.
252b5132
RH
193
194@cindex name length
c7c55b78
NC
195@sc{gnu} @command{ar} can maintain archives whose members have names of any
196length; however, depending on how @command{ar} is configured on your
252b5132
RH
197system, a limit on member-name length may be imposed for compatibility
198with archive formats maintained with other tools. If it exists, the
199limit is often 15 characters (typical of formats related to a.out) or 16
200characters (typical of formats related to coff).
201
202@cindex libraries
c7c55b78 203@command{ar} is considered a binary utility because archives of this sort
252b5132
RH
204are most often used as @dfn{libraries} holding commonly needed
205subroutines.
206
207@cindex symbol index
c7c55b78 208@command{ar} creates an index to the symbols defined in relocatable
252b5132 209object modules in the archive when you specify the modifier @samp{s}.
c7c55b78 210Once created, this index is updated in the archive whenever @command{ar}
252b5132
RH
211makes a change to its contents (save for the @samp{q} update operation).
212An archive with such an index speeds up linking to the library, and
213allows routines in the library to call each other without regard to
214their placement in the archive.
215
216You may use @samp{nm -s} or @samp{nm --print-armap} to list this index
c7c55b78
NC
217table. If an archive lacks the table, another form of @command{ar} called
218@command{ranlib} can be used to add just the table.
252b5132 219
a8da6403
NC
220@cindex thin archives
221@sc{gnu} @command{ar} can optionally create a @emph{thin} archive,
222which contains a symbol index and references to the original copies
223of the member files of the archives. Such an archive is useful
224for building libraries for use within a local build, where the
225relocatable objects are expected to remain available, and copying the
226contents of each object would only waste time and space. Thin archives
227are also @emph{flattened}, so that adding one or more archives to a
228thin archive will add the elements of the nested archive individually.
229The paths to the elements of the archive are stored relative to the
230archive itself.
231
c7c55b78
NC
232@cindex compatibility, @command{ar}
233@cindex @command{ar} compatibility
234@sc{gnu} @command{ar} is designed to be compatible with two different
252b5132 235facilities. You can control its activity using command-line options,
c7c55b78
NC
236like the different varieties of @command{ar} on Unix systems; or, if you
237specify the single command-line option @option{-M}, you can control it
252b5132
RH
238with a script supplied via standard input, like the MRI ``librarian''
239program.
240
0285c67d
NC
241@c man end
242
252b5132 243@menu
c7c55b78
NC
244* ar cmdline:: Controlling @command{ar} on the command line
245* ar scripts:: Controlling @command{ar} with a script
252b5132
RH
246@end menu
247
248@page
249@node ar cmdline
947ed062 250@section Controlling @command{ar} on the Command Line
252b5132
RH
251
252@smallexample
0285c67d 253@c man begin SYNOPSIS ar
8adf5d70 254ar [@option{--plugin} @var{name}] [@option{-X32_64}] [@option{-}]@var{p}[@var{mod} [@var{relpos}] [@var{count}]] [@option{--target} @var{bfdname}] @var{archive} [@var{member}@dots{}]
0285c67d 255@c man end
252b5132
RH
256@end smallexample
257
c7c55b78
NC
258@cindex Unix compatibility, @command{ar}
259When you use @command{ar} in the Unix style, @command{ar} insists on at least two
252b5132
RH
260arguments to execute: one keyletter specifying the @emph{operation}
261(optionally accompanied by other keyletters specifying
262@emph{modifiers}), and the archive name to act on.
263
264Most operations can also accept further @var{member} arguments,
265specifying particular files to operate on.
266
0285c67d
NC
267@c man begin OPTIONS ar
268
c7c55b78 269@sc{gnu} @command{ar} allows you to mix the operation code @var{p} and modifier
252b5132
RH
270flags @var{mod} in any order, within the first command-line argument.
271
272If you wish, you may begin the first command-line argument with a
273dash.
274
275@cindex operations on archive
276The @var{p} keyletter specifies what operation to execute; it may be
277any of the following, but you must specify only one of them:
278
c7c55b78 279@table @samp
252b5132
RH
280@item d
281@cindex deleting from archive
282@emph{Delete} modules from the archive. Specify the names of modules to
283be deleted as @var{member}@dots{}; the archive is untouched if you
284specify no files to delete.
285
c7c55b78 286If you specify the @samp{v} modifier, @command{ar} lists each module
252b5132
RH
287as it is deleted.
288
289@item m
290@cindex moving in archive
291Use this operation to @emph{move} members in an archive.
292
293The ordering of members in an archive can make a difference in how
294programs are linked using the library, if a symbol is defined in more
c1c0eb9e 295than one member.
252b5132
RH
296
297If no modifiers are used with @code{m}, any members you name in the
298@var{member} arguments are moved to the @emph{end} of the archive;
299you can use the @samp{a}, @samp{b}, or @samp{i} modifiers to move them to a
300specified place instead.
301
302@item p
303@cindex printing from archive
304@emph{Print} the specified members of the archive, to the standard
305output file. If the @samp{v} modifier is specified, show the member
306name before copying its contents to standard output.
307
308If you specify no @var{member} arguments, all the files in the archive are
309printed.
310
311@item q
312@cindex quick append to archive
313@emph{Quick append}; Historically, add the files @var{member}@dots{} to the end of
314@var{archive}, without checking for replacement.
315
316The modifiers @samp{a}, @samp{b}, and @samp{i} do @emph{not} affect this
317operation; new members are always placed at the end of the archive.
318
c7c55b78 319The modifier @samp{v} makes @command{ar} list each file as it is appended.
252b5132
RH
320
321Since the point of this operation is speed, the archive's symbol table
322index is not updated, even if it already existed; you can use @samp{ar s} or
c7c55b78 323@command{ranlib} explicitly to update the symbol table index.
252b5132
RH
324
325However, too many different systems assume quick append rebuilds the
947ed062 326index, so @sc{gnu} @command{ar} implements @samp{q} as a synonym for @samp{r}.
252b5132
RH
327
328@item r
329@cindex replacement in archive
330Insert the files @var{member}@dots{} into @var{archive} (with
331@emph{replacement}). This operation differs from @samp{q} in that any
332previously existing members are deleted if their names match those being
333added.
334
c7c55b78 335If one of the files named in @var{member}@dots{} does not exist, @command{ar}
252b5132
RH
336displays an error message, and leaves undisturbed any existing members
337of the archive matching that name.
338
339By default, new members are added at the end of the file; but you may
340use one of the modifiers @samp{a}, @samp{b}, or @samp{i} to request
341placement relative to some existing member.
342
343The modifier @samp{v} used with this operation elicits a line of
344output for each file inserted, along with one of the letters @samp{a} or
345@samp{r} to indicate whether the file was appended (no old member
346deleted) or replaced.
347
e58bcb8f
NC
348@item s
349@cindex ranlib
350Add an index to the archive, or update it if it already exists. Note
351this command is an exception to the rule that there can only be one
352command letter, as it is possible to use it as either a command or a
353modifier. In either case it does the same thing.
354
252b5132
RH
355@item t
356@cindex contents of archive
357Display a @emph{table} listing the contents of @var{archive}, or those
358of the files listed in @var{member}@dots{} that are present in the
359archive. Normally only the member name is shown; if you also want to
360see the modes (permissions), timestamp, owner, group, and size, you can
361request that by also specifying the @samp{v} modifier.
362
363If you do not specify a @var{member}, all files in the archive
364are listed.
365
366@cindex repeated names in archive
367@cindex name duplication in archive
368If there is more than one file with the same name (say, @samp{fie}) in
369an archive (say @samp{b.a}), @samp{ar t b.a fie} lists only the
370first instance; to see them all, you must ask for a complete
371listing---in our example, @samp{ar t b.a}.
372@c WRS only; per Gumby, this is implementation-dependent, and in a more
373@c recent case in fact works the other way.
374
375@item x
376@cindex extract from archive
377@emph{Extract} members (named @var{member}) from the archive. You can
378use the @samp{v} modifier with this operation, to request that
c7c55b78 379@command{ar} list each name as it extracts it.
252b5132
RH
380
381If you do not specify a @var{member}, all files in the archive
382are extracted.
383
a8da6403
NC
384Files cannot be extracted from a thin archive.
385
8adf5d70
NC
386@item --help
387Displays the list of command line options supported by @command{ar}
388and then exits.
389
390@item --version
391Displays the version information of @command{ar} and then exits.
392
252b5132
RH
393@end table
394
395A number of modifiers (@var{mod}) may immediately follow the @var{p}
396keyletter, to specify variations on an operation's behavior:
397
c7c55b78 398@table @samp
252b5132
RH
399@item a
400@cindex relative placement in archive
401Add new files @emph{after} an existing member of the
402archive. If you use the modifier @samp{a}, the name of an existing archive
403member must be present as the @var{relpos} argument, before the
404@var{archive} specification.
405
406@item b
407Add new files @emph{before} an existing member of the
408archive. If you use the modifier @samp{b}, the name of an existing archive
409member must be present as the @var{relpos} argument, before the
410@var{archive} specification. (same as @samp{i}).
411
412@item c
413@cindex creating archives
414@emph{Create} the archive. The specified @var{archive} is always
415created if it did not exist, when you request an update. But a warning is
416issued unless you specify in advance that you expect to create it, by
417using this modifier.
418
36e4dce6
CD
419@item D
420@cindex deterministic archives
421Operate in @emph{deterministic} mode. When adding files and the archive
422index use zero for UIDs, GIDs, timestamps, and use consistent file modes
423for all files. When this option is used, if @command{ar} is used with
424identical options and identical input files, multiple runs will create
425identical output files regardless of the input files' owners, groups,
426file modes, or modification times.
427
252b5132 428@item f
c7c55b78 429Truncate names in the archive. @sc{gnu} @command{ar} will normally permit file
252b5132 430names of any length. This will cause it to create archives which are
c7c55b78 431not compatible with the native @command{ar} program on some systems. If
252b5132
RH
432this is a concern, the @samp{f} modifier may be used to truncate file
433names when putting them in the archive.
434
435@item i
436Insert new files @emph{before} an existing member of the
437archive. If you use the modifier @samp{i}, the name of an existing archive
438member must be present as the @var{relpos} argument, before the
439@var{archive} specification. (same as @samp{b}).
440
441@item l
442This modifier is accepted but not used.
443@c whaffor ar l modifier??? presumably compat; with
c1c0eb9e 444@c what???---doc@@cygnus.com, 25jan91
252b5132 445
3de39064
ILT
446@item N
447Uses the @var{count} parameter. This is used if there are multiple
448entries in the archive with the same name. Extract or delete instance
449@var{count} of the given name from the archive.
450
252b5132
RH
451@item o
452@cindex dates in archive
453Preserve the @emph{original} dates of members when extracting them. If
454you do not specify this modifier, files extracted from the archive
455are stamped with the time of extraction.
456
3de39064
ILT
457@item P
458Use the full path name when matching names in the archive. @sc{gnu}
c7c55b78 459@command{ar} can not create an archive with a full path name (such archives
3de39064 460are not POSIX complaint), but other archive creators can. This option
c7c55b78 461will cause @sc{gnu} @command{ar} to match file names using a complete path
3de39064
ILT
462name, which can be convenient when extracting a single file from an
463archive created by another tool.
464
252b5132
RH
465@item s
466@cindex writing archive index
467Write an object-file index into the archive, or update an existing one,
468even if no other change is made to the archive. You may use this modifier
469flag either with any operation, or alone. Running @samp{ar s} on an
470archive is equivalent to running @samp{ranlib} on it.
471
472@item S
473@cindex not writing archive index
474Do not generate an archive symbol table. This can speed up building a
475large library in several steps. The resulting archive can not be used
476with the linker. In order to build a symbol table, you must omit the
477@samp{S} modifier on the last execution of @samp{ar}, or you must run
478@samp{ranlib} on the archive.
479
a8da6403
NC
480@item T
481@cindex creating thin archive
482Make the specified @var{archive} a @emph{thin} archive. If it already
483exists and is a regular archive, the existing members must be present
484in the same directory as @var{archive}.
485
252b5132
RH
486@item u
487@cindex updating an archive
488Normally, @samp{ar r}@dots{} inserts all files
489listed into the archive. If you would like to insert @emph{only} those
490of the files you list that are newer than existing members of the same
491names, use this modifier. The @samp{u} modifier is allowed only for the
492operation @samp{r} (replace). In particular, the combination @samp{qu} is
493not allowed, since checking the timestamps would lose any speed
494advantage from the operation @samp{q}.
495
496@item v
497This modifier requests the @emph{verbose} version of an operation. Many
498operations display additional information, such as filenames processed,
499when the modifier @samp{v} is appended.
500
501@item V
c7c55b78 502This modifier shows the version number of @command{ar}.
252b5132
RH
503@end table
504
c7c55b78 505@command{ar} ignores an initial option spelt @samp{-X32_64}, for
6e800839 506compatibility with AIX. The behaviour produced by this option is the
947ed062 507default for @sc{gnu} @command{ar}. @command{ar} does not support any of the other
c7c55b78
NC
508@samp{-X} options; in particular, it does not support @option{-X32}
509which is the default for AIX @command{ar}.
6e800839 510
ce3c775b
NC
511The optional command line switch @option{--plugin} @var{name} causes
512@command{ar} to load the plugin called @var{name} which adds support
513for more file formats. This option is only available if the toolchain
514has been built with plugin support enabled.
515
8adf5d70
NC
516The optional command line switch @option{--target} @var{bfdname}
517specifies that the archive members are in an object code format
518different from your system's default format. See
519@xref{Target Selection}, for more information.
520
0285c67d
NC
521@c man end
522
523@ignore
524@c man begin SEEALSO ar
525nm(1), ranlib(1), and the Info entries for @file{binutils}.
526@c man end
527@end ignore
528
252b5132 529@node ar scripts
947ed062 530@section Controlling @command{ar} with a Script
252b5132
RH
531
532@smallexample
533ar -M [ <@var{script} ]
534@end smallexample
535
c7c55b78
NC
536@cindex MRI compatibility, @command{ar}
537@cindex scripts, @command{ar}
538If you use the single command-line option @samp{-M} with @command{ar}, you
252b5132 539can control its operation with a rudimentary command language. This
c7c55b78
NC
540form of @command{ar} operates interactively if standard input is coming
541directly from a terminal. During interactive use, @command{ar} prompts for
252b5132
RH
542input (the prompt is @samp{AR >}), and continues executing even after
543errors. If you redirect standard input to a script file, no prompts are
c7c55b78 544issued, and @command{ar} abandons execution (with a nonzero exit code)
252b5132
RH
545on any error.
546
c7c55b78 547The @command{ar} command language is @emph{not} designed to be equivalent
252b5132
RH
548to the command-line options; in fact, it provides somewhat less control
549over archives. The only purpose of the command language is to ease the
c7c55b78 550transition to @sc{gnu} @command{ar} for developers who already have scripts
252b5132
RH
551written for the MRI ``librarian'' program.
552
c7c55b78 553The syntax for the @command{ar} command language is straightforward:
252b5132
RH
554@itemize @bullet
555@item
556commands are recognized in upper or lower case; for example, @code{LIST}
557is the same as @code{list}. In the following descriptions, commands are
558shown in upper case for clarity.
559
560@item
561a single command may appear on each line; it is the first word on the
562line.
563
564@item
565empty lines are allowed, and have no effect.
566
567@item
568comments are allowed; text after either of the characters @samp{*}
569or @samp{;} is ignored.
570
571@item
c7c55b78 572Whenever you use a list of names as part of the argument to an @command{ar}
252b5132
RH
573command, you can separate the individual names with either commas or
574blanks. Commas are shown in the explanations below, for clarity.
575
576@item
577@samp{+} is used as a line continuation character; if @samp{+} appears
578at the end of a line, the text on the following line is considered part
579of the current command.
580@end itemize
581
c7c55b78
NC
582Here are the commands you can use in @command{ar} scripts, or when using
583@command{ar} interactively. Three of them have special significance:
252b5132
RH
584
585@code{OPEN} or @code{CREATE} specify a @dfn{current archive}, which is
586a temporary file required for most of the other commands.
587
588@code{SAVE} commits the changes so far specified by the script. Prior
589to @code{SAVE}, commands affect only the temporary copy of the current
590archive.
591
592@table @code
c1c0eb9e 593@item ADDLIB @var{archive}
252b5132
RH
594@itemx ADDLIB @var{archive} (@var{module}, @var{module}, @dots{} @var{module})
595Add all the contents of @var{archive} (or, if specified, each named
596@var{module} from @var{archive}) to the current archive.
597
598Requires prior use of @code{OPEN} or @code{CREATE}.
599
600@item ADDMOD @var{member}, @var{member}, @dots{} @var{member}
601@c FIXME! w/Replacement?? If so, like "ar r @var{archive} @var{names}"
602@c else like "ar q..."
603Add each named @var{member} as a module in the current archive.
604
605Requires prior use of @code{OPEN} or @code{CREATE}.
606
607@item CLEAR
608Discard the contents of the current archive, canceling the effect of
609any operations since the last @code{SAVE}. May be executed (with no
610effect) even if no current archive is specified.
611
612@item CREATE @var{archive}
613Creates an archive, and makes it the current archive (required for many
614other commands). The new archive is created with a temporary name; it
615is not actually saved as @var{archive} until you use @code{SAVE}.
616You can overwrite existing archives; similarly, the contents of any
617existing file named @var{archive} will not be destroyed until @code{SAVE}.
618
619@item DELETE @var{module}, @var{module}, @dots{} @var{module}
620Delete each listed @var{module} from the current archive; equivalent to
621@samp{ar -d @var{archive} @var{module} @dots{} @var{module}}.
622
623Requires prior use of @code{OPEN} or @code{CREATE}.
624
625@item DIRECTORY @var{archive} (@var{module}, @dots{} @var{module})
626@itemx DIRECTORY @var{archive} (@var{module}, @dots{} @var{module}) @var{outputfile}
627List each named @var{module} present in @var{archive}. The separate
628command @code{VERBOSE} specifies the form of the output: when verbose
629output is off, output is like that of @samp{ar -t @var{archive}
630@var{module}@dots{}}. When verbose output is on, the listing is like
631@samp{ar -tv @var{archive} @var{module}@dots{}}.
632
633Output normally goes to the standard output stream; however, if you
c7c55b78 634specify @var{outputfile} as a final argument, @command{ar} directs the
252b5132
RH
635output to that file.
636
637@item END
c7c55b78 638Exit from @command{ar}, with a @code{0} exit code to indicate successful
252b5132
RH
639completion. This command does not save the output file; if you have
640changed the current archive since the last @code{SAVE} command, those
641changes are lost.
642
643@item EXTRACT @var{module}, @var{module}, @dots{} @var{module}
644Extract each named @var{module} from the current archive, writing them
645into the current directory as separate files. Equivalent to @samp{ar -x
646@var{archive} @var{module}@dots{}}.
647
648Requires prior use of @code{OPEN} or @code{CREATE}.
649
650@ignore
651@c FIXME Tokens but no commands???
652@item FULLDIR
653
654@item HELP
655@end ignore
656
657@item LIST
658Display full contents of the current archive, in ``verbose'' style
659regardless of the state of @code{VERBOSE}. The effect is like @samp{ar
c7c55b78 660tv @var{archive}}. (This single command is a @sc{gnu} @command{ar}
252b5132
RH
661enhancement, rather than present for MRI compatibility.)
662
663Requires prior use of @code{OPEN} or @code{CREATE}.
664
665@item OPEN @var{archive}
666Opens an existing archive for use as the current archive (required for
667many other commands). Any changes as the result of subsequent commands
668will not actually affect @var{archive} until you next use @code{SAVE}.
669
670@item REPLACE @var{module}, @var{module}, @dots{} @var{module}
671In the current archive, replace each existing @var{module} (named in
672the @code{REPLACE} arguments) from files in the current working directory.
673To execute this command without errors, both the file, and the module in
c1c0eb9e 674the current archive, must exist.
252b5132
RH
675
676Requires prior use of @code{OPEN} or @code{CREATE}.
677
678@item VERBOSE
679Toggle an internal flag governing the output from @code{DIRECTORY}.
680When the flag is on, @code{DIRECTORY} output matches output from
681@samp{ar -tv }@dots{}.
682
683@item SAVE
684Commit your changes to the current archive, and actually save it as a
685file with the name specified in the last @code{CREATE} or @code{OPEN}
c1c0eb9e 686command.
252b5132
RH
687
688Requires prior use of @code{OPEN} or @code{CREATE}.
689
690@end table
691
692@iftex
693@node ld
694@chapter ld
695@cindex linker
696@kindex ld
c7c55b78 697The @sc{gnu} linker @command{ld} is now described in a separate manual.
252b5132
RH
698@xref{Top,, Overview,, Using LD: the @sc{gnu} linker}.
699@end iftex
700
701@node nm
702@chapter nm
703@cindex symbols
704@kindex nm
705
0285c67d
NC
706@c man title nm list symbols from object files
707
252b5132 708@smallexample
0285c67d 709@c man begin SYNOPSIS nm
ce3c775b
NC
710nm [@option{-a}|@option{--debug-syms}]
711 [@option{-g}|@option{--extern-only}][@option{--plugin} @var{name}]
c7c55b78 712 [@option{-B}] [@option{-C}|@option{--demangle}[=@var{style}]] [@option{-D}|@option{--dynamic}]
72797995 713 [@option{-S}|@option{--print-size}] [@option{-s}|@option{--print-armap}]
3c9458e9 714 [@option{-A}|@option{-o}|@option{--print-file-name}][@option{--special-syms}]
c7c55b78
NC
715 [@option{-n}|@option{-v}|@option{--numeric-sort}] [@option{-p}|@option{--no-sort}]
716 [@option{-r}|@option{--reverse-sort}] [@option{--size-sort}] [@option{-u}|@option{--undefined-only}]
717 [@option{-t} @var{radix}|@option{--radix=}@var{radix}] [@option{-P}|@option{--portability}]
718 [@option{--target=}@var{bfdname}] [@option{-f}@var{format}|@option{--format=}@var{format}]
719 [@option{--defined-only}] [@option{-l}|@option{--line-numbers}] [@option{--no-demangle}]
720 [@option{-V}|@option{--version}] [@option{-X 32_64}] [@option{--help}] [@var{objfile}@dots{}]
0285c67d 721@c man end
252b5132
RH
722@end smallexample
723
0285c67d 724@c man begin DESCRIPTION nm
c7c55b78
NC
725@sc{gnu} @command{nm} lists the symbols from object files @var{objfile}@dots{}.
726If no object files are listed as arguments, @command{nm} assumes the file
252b5132
RH
727@file{a.out}.
728
c7c55b78 729For each symbol, @command{nm} shows:
252b5132
RH
730
731@itemize @bullet
732@item
733The symbol value, in the radix selected by options (see below), or
734hexadecimal by default.
735
736@item
737The symbol type. At least the following types are used; others are, as
738well, depending on the object file format. If lowercase, the symbol is
0ba0c2b3
NC
739usually local; if uppercase, the symbol is global (external). There
740are however a few lowercase symbols that are shown for special global
741symbols (@code{u}, @code{v} and @code{w}).
252b5132
RH
742
743@c Some more detail on exactly what these symbol types are used for
744@c would be nice.
745@table @code
746@item A
747The symbol's value is absolute, and will not be changed by further
748linking.
749
750@item B
a1039809 751@itemx b
252b5132
RH
752The symbol is in the uninitialized data section (known as BSS).
753
754@item C
755The symbol is common. Common symbols are uninitialized data. When
756linking, multiple common symbols may appear with the same name. If the
757symbol is defined anywhere, the common symbols are treated as undefined
0285c67d
NC
758references.
759@ifclear man
760For more details on common symbols, see the discussion of
252b5132 761--warn-common in @ref{Options,,Linker options,ld.info,The GNU linker}.
0879a67a 762@end ifclear
252b5132
RH
763
764@item D
a1039809 765@itemx d
252b5132
RH
766The symbol is in the initialized data section.
767
768@item G
a1039809 769@itemx g
252b5132
RH
770The symbol is in an initialized data section for small objects. Some
771object file formats permit more efficient access to small data objects,
772such as a global int variable as opposed to a large global array.
773
a1039809 774@item i
3e7a7d11
NC
775For PE format files this indicates that the symbol is in a section
776specific to the implementation of DLLs. For ELF format files this
777indicates that the symbol is an indirect function. This is a GNU
778extension to the standard set of ELF symbol types. It indicates a
779symbol which if referenced by a relocation does not evaluate to its
780address, but instead must be invoked at runtime. The runtime
781execution will then return the value to be used in the relocation.
a1039809 782
252b5132
RH
783@item N
784The symbol is a debugging symbol.
785
a1039809
NC
786@item p
787The symbols is in a stack unwind section.
788
252b5132 789@item R
a1039809 790@itemx r
252b5132
RH
791The symbol is in a read only data section.
792
793@item S
a1039809 794@itemx s
252b5132
RH
795The symbol is in an uninitialized data section for small objects.
796
797@item T
a1039809 798@itemx t
252b5132
RH
799The symbol is in the text (code) section.
800
801@item U
802The symbol is undefined.
803
3e7a7d11
NC
804@item u
805The symbol is a unique global symbol. This is a GNU extension to the
806standard set of ELF symbol bindings. For such a symbol the dynamic linker
807will make sure that in the entire process there is just one symbol with
808this name and type in use.
809
fad6fcbb 810@item V
a1039809 811@itemx v
fad6fcbb
NC
812The symbol is a weak object. When a weak defined symbol is linked with
813a normal defined symbol, the normal defined symbol is used with no error.
814When a weak undefined symbol is linked and the symbol is not defined,
a1039809
NC
815the value of the weak symbol becomes zero with no error. On some
816systems, uppercase indicates that a default value has been specified.
fad6fcbb 817
252b5132 818@item W
a1039809 819@itemx w
fad6fcbb
NC
820The symbol is a weak symbol that has not been specifically tagged as a
821weak object symbol. When a weak defined symbol is linked with a normal
822defined symbol, the normal defined symbol is used with no error.
823When a weak undefined symbol is linked and the symbol is not defined,
c87db184 824the value of the symbol is determined in a system-specific manner without
c1c0eb9e 825error. On some systems, uppercase indicates that a default value has been
977cdf5a
NC
826specified.
827
252b5132
RH
828@item -
829The symbol is a stabs symbol in an a.out object file. In this case, the
830next values printed are the stabs other field, the stabs desc field, and
c7c55b78
NC
831the stab type. Stabs symbols are used to hold debugging information.
832@ifclear man
833For more information, see @ref{Top,Stabs,Stabs Overview,stabs.info, The
252b5132 834``stabs'' debug format}.
c7c55b78 835@end ifclear
252b5132
RH
836
837@item ?
838The symbol type is unknown, or object file format specific.
839@end table
840
841@item
842The symbol name.
843@end itemize
844
0285c67d
NC
845@c man end
846
847@c man begin OPTIONS nm
252b5132
RH
848The long and short forms of options, shown here as alternatives, are
849equivalent.
850
c7c55b78 851@table @env
252b5132
RH
852@item -A
853@itemx -o
c1c0eb9e 854@itemx --print-file-name
252b5132
RH
855@cindex input file name
856@cindex file name
857@cindex source file name
f20a759a 858Precede each symbol by the name of the input file (or archive member)
252b5132
RH
859in which it was found, rather than identifying the input file once only,
860before all of its symbols.
861
862@item -a
c1c0eb9e 863@itemx --debug-syms
252b5132
RH
864@cindex debugging symbols
865Display all symbols, even debugger-only symbols; normally these are not
866listed.
867
868@item -B
c7c55b78
NC
869@cindex @command{nm} format
870@cindex @command{nm} compatibility
871The same as @option{--format=bsd} (for compatibility with the MIPS @command{nm}).
252b5132
RH
872
873@item -C
28c309a2 874@itemx --demangle[=@var{style}]
252b5132
RH
875@cindex demangling in nm
876Decode (@dfn{demangle}) low-level symbol names into user-level names.
877Besides removing any initial underscore prepended by the system, this
28c309a2 878makes C++ function names readable. Different compilers have different
c1c0eb9e
RM
879mangling styles. The optional demangling style argument can be used to
880choose an appropriate demangling style for your compiler. @xref{c++filt},
28c309a2 881for more information on demangling.
252b5132
RH
882
883@item --no-demangle
884Do not demangle low-level symbol names. This is the default.
885
886@item -D
887@itemx --dynamic
888@cindex dynamic symbols
889Display the dynamic symbols rather than the normal symbols. This is
890only meaningful for dynamic objects, such as certain types of shared
891libraries.
892
893@item -f @var{format}
894@itemx --format=@var{format}
c7c55b78
NC
895@cindex @command{nm} format
896@cindex @command{nm} compatibility
252b5132
RH
897Use the output format @var{format}, which can be @code{bsd},
898@code{sysv}, or @code{posix}. The default is @code{bsd}.
899Only the first character of @var{format} is significant; it can be
900either upper or lower case.
901
902@item -g
c1c0eb9e 903@itemx --extern-only
252b5132
RH
904@cindex external symbols
905Display only external symbols.
906
ce3c775b
NC
907@item --plugin @var{name}
908@cindex load plugin
909Load the plugin called @var{name} to add support for extra target
910types. This option is only available if the toolchain has been built
911with plugin support enabled.
912
252b5132
RH
913@item -l
914@itemx --line-numbers
915@cindex symbol line numbers
916For each symbol, use debugging information to try to find a filename and
917line number. For a defined symbol, look for the line number of the
918address of the symbol. For an undefined symbol, look for the line
919number of a relocation entry which refers to the symbol. If line number
920information can be found, print it after the other symbol information.
921
922@item -n
923@itemx -v
c1c0eb9e 924@itemx --numeric-sort
252b5132 925Sort symbols numerically by their addresses, rather than alphabetically
c1c0eb9e 926by their names.
252b5132
RH
927
928@item -p
c1c0eb9e 929@itemx --no-sort
252b5132
RH
930@cindex sorting symbols
931Do not bother to sort the symbols in any order; print them in the order
932encountered.
933
934@item -P
935@itemx --portability
936Use the POSIX.2 standard output format instead of the default format.
937Equivalent to @samp{-f posix}.
938
72797995
L
939@item -S
940@itemx --print-size
1533edfb
AM
941Print both value and size of defined symbols for the @code{bsd} output style.
942This option has no effect for object formats that do not record symbol
943sizes, unless @samp{--size-sort} is also used in which case a
944calculated size is displayed.
72797995 945
252b5132
RH
946@item -s
947@itemx --print-armap
948@cindex symbol index, listing
949When listing symbols from archive members, include the index: a mapping
c7c55b78 950(stored in the archive by @command{ar} or @command{ranlib}) of which modules
252b5132
RH
951contain definitions for which names.
952
953@item -r
c1c0eb9e 954@itemx --reverse-sort
252b5132
RH
955Reverse the order of the sort (whether numeric or alphabetic); let the
956last come first.
957
958@item --size-sort
959Sort symbols by size. The size is computed as the difference between
960the value of the symbol and the value of the symbol with the next higher
c1c0eb9e
RM
961value. If the @code{bsd} output format is used the size of the symbol
962is printed, rather than the value, and @samp{-S} must be used in order
76ed1927 963both size and value to be printed.
252b5132 964
3c9458e9
NC
965@item --special-syms
966Display symbols which have a target-specific special meaning. These
967symbols are usually used by the target for some special processing and
968are not normally helpful when included included in the normal symbol
969lists. For example for ARM targets this option would skip the mapping
b45619c0 970symbols used to mark transitions between ARM code, THUMB code and
3c9458e9
NC
971data.
972
252b5132
RH
973@item -t @var{radix}
974@itemx --radix=@var{radix}
975Use @var{radix} as the radix for printing the symbol values. It must be
976@samp{d} for decimal, @samp{o} for octal, or @samp{x} for hexadecimal.
977
978@item --target=@var{bfdname}
979@cindex object code format
980Specify an object code format other than your system's default format.
981@xref{Target Selection}, for more information.
982
983@item -u
c1c0eb9e 984@itemx --undefined-only
252b5132
RH
985@cindex external symbols
986@cindex undefined symbols
987Display only undefined symbols (those external to each object file).
988
989@item --defined-only
990@cindex external symbols
991@cindex undefined symbols
992Display only defined symbols for each object file.
993
994@item -V
995@itemx --version
c7c55b78 996Show the version number of @command{nm} and exit.
252b5132 997
6e800839
GK
998@item -X
999This option is ignored for compatibility with the AIX version of
c7c55b78
NC
1000@command{nm}. It takes one parameter which must be the string
1001@option{32_64}. The default mode of AIX @command{nm} corresponds
1002to @option{-X 32}, which is not supported by @sc{gnu} @command{nm}.
6e800839 1003
252b5132 1004@item --help
c7c55b78 1005Show a summary of the options to @command{nm} and exit.
252b5132
RH
1006@end table
1007
0285c67d
NC
1008@c man end
1009
1010@ignore
1011@c man begin SEEALSO nm
1012ar(1), objdump(1), ranlib(1), and the Info entries for @file{binutils}.
1013@c man end
1014@end ignore
1015
252b5132
RH
1016@node objcopy
1017@chapter objcopy
1018
0285c67d
NC
1019@c man title objcopy copy and translate object files
1020
252b5132 1021@smallexample
0285c67d 1022@c man begin SYNOPSIS objcopy
c7c55b78
NC
1023objcopy [@option{-F} @var{bfdname}|@option{--target=}@var{bfdname}]
1024 [@option{-I} @var{bfdname}|@option{--input-target=}@var{bfdname}]
1025 [@option{-O} @var{bfdname}|@option{--output-target=}@var{bfdname}]
1026 [@option{-B} @var{bfdarch}|@option{--binary-architecture=}@var{bfdarch}]
2593f09a
NC
1027 [@option{-S}|@option{--strip-all}]
1028 [@option{-g}|@option{--strip-debug}]
c7c55b78
NC
1029 [@option{-K} @var{symbolname}|@option{--keep-symbol=}@var{symbolname}]
1030 [@option{-N} @var{symbolname}|@option{--strip-symbol=}@var{symbolname}]
bcf32829 1031 [@option{--strip-unneeded-symbol=}@var{symbolname}]
c7c55b78 1032 [@option{-G} @var{symbolname}|@option{--keep-global-symbol=}@var{symbolname}]
d58c2e3a 1033 [@option{--localize-hidden}]
c7c55b78 1034 [@option{-L} @var{symbolname}|@option{--localize-symbol=}@var{symbolname}]
7b4a0685 1035 [@option{--globalize-symbol=}@var{symbolname}]
c7c55b78 1036 [@option{-W} @var{symbolname}|@option{--weaken-symbol=}@var{symbolname}]
5fe11841 1037 [@option{-w}|@option{--wildcard}]
2593f09a
NC
1038 [@option{-x}|@option{--discard-all}]
1039 [@option{-X}|@option{--discard-locals}]
c7c55b78 1040 [@option{-b} @var{byte}|@option{--byte=}@var{byte}]
b7dd81f7
NC
1041 [@option{-i} [@var{breadth}]|@option{--interleave}[=@var{breadth}]]
1042 [@option{--interleave-width=}@var{width}]
c7c55b78
NC
1043 [@option{-j} @var{sectionname}|@option{--only-section=}@var{sectionname}]
1044 [@option{-R} @var{sectionname}|@option{--remove-section=}@var{sectionname}]
1045 [@option{-p}|@option{--preserve-dates}]
1046 [@option{--debugging}]
2593f09a
NC
1047 [@option{--gap-fill=}@var{val}]
1048 [@option{--pad-to=}@var{address}]
1049 [@option{--set-start=}@var{val}]
1050 [@option{--adjust-start=}@var{incr}]
c7c55b78
NC
1051 [@option{--change-addresses=}@var{incr}]
1052 [@option{--change-section-address} @var{section}@{=,+,-@}@var{val}]
1053 [@option{--change-section-lma} @var{section}@{=,+,-@}@var{val}]
1054 [@option{--change-section-vma} @var{section}@{=,+,-@}@var{val}]
1055 [@option{--change-warnings}] [@option{--no-change-warnings}]
1056 [@option{--set-section-flags} @var{section}=@var{flags}]
1057 [@option{--add-section} @var{sectionname}=@var{filename}]
1058 [@option{--rename-section} @var{oldname}=@var{newname}[,@var{flags}]]
0408dee6 1059 [@option{--long-section-names} @{enable,disable,keep@}]
2593f09a 1060 [@option{--change-leading-char}] [@option{--remove-leading-char}]
9e48b4c6 1061 [@option{--reverse-bytes=}@var{num}]
2593f09a
NC
1062 [@option{--srec-len=}@var{ival}] [@option{--srec-forceS3}]
1063 [@option{--redefine-sym} @var{old}=@var{new}]
1064 [@option{--redefine-syms=}@var{filename}]
c7c55b78
NC
1065 [@option{--weaken}]
1066 [@option{--keep-symbols=}@var{filename}]
1067 [@option{--strip-symbols=}@var{filename}]
bcf32829 1068 [@option{--strip-unneeded-symbols=}@var{filename}]
c7c55b78
NC
1069 [@option{--keep-global-symbols=}@var{filename}]
1070 [@option{--localize-symbols=}@var{filename}]
7b4a0685 1071 [@option{--globalize-symbols=}@var{filename}]
c7c55b78 1072 [@option{--weaken-symbols=}@var{filename}]
c51238bc
DA
1073 [@option{--alt-machine-code=}@var{index}]
1074 [@option{--prefix-symbols=}@var{string}]
1075 [@option{--prefix-sections=}@var{string}]
1076 [@option{--prefix-alloc-sections=}@var{string}]
ed1653a7 1077 [@option{--add-gnu-debuglink=}@var{path-to-file}]
1637cd90 1078 [@option{--keep-file-symbols}]
ed1653a7 1079 [@option{--only-keep-debug}]
d3e52d40 1080 [@option{--extract-symbol}]
4087920c
MR
1081 [@option{--writable-text}]
1082 [@option{--readonly-text}]
1083 [@option{--pure}]
1084 [@option{--impure}]
92dd4511
L
1085 [@option{--file-alignment=}@var{num}]
1086 [@option{--heap=}@var{size}]
1087 [@option{--image-base=}@var{address}]
1088 [@option{--section-alignment=}@var{num}]
1089 [@option{--stack=}@var{size}]
1090 [@option{--subsystem=}@var{which}:@var{major}.@var{minor}]
4a114e3e
L
1091 [@option{--compress-debug-sections}]
1092 [@option{--decompress-debug-sections}]
fd2f0033
TT
1093 [@option{--dwarf-depth=@var{n}}]
1094 [@option{--dwarf-start=@var{n}}]
c7c55b78 1095 [@option{-v}|@option{--verbose}]
c1c0eb9e 1096 [@option{-V}|@option{--version}]
7c29036b 1097 [@option{--help}] [@option{--info}]
252b5132 1098 @var{infile} [@var{outfile}]
0285c67d 1099@c man end
252b5132
RH
1100@end smallexample
1101
0285c67d 1102@c man begin DESCRIPTION objcopy
c7c55b78
NC
1103The @sc{gnu} @command{objcopy} utility copies the contents of an object
1104file to another. @command{objcopy} uses the @sc{gnu} @sc{bfd} Library to
252b5132
RH
1105read and write the object files. It can write the destination object
1106file in a format different from that of the source object file. The
c7c55b78
NC
1107exact behavior of @command{objcopy} is controlled by command-line options.
1108Note that @command{objcopy} should be able to copy a fully linked file
ccd13d18
L
1109between any two formats. However, copying a relocatable object file
1110between any two formats may not work as expected.
252b5132 1111
c7c55b78
NC
1112@command{objcopy} creates temporary files to do its translations and
1113deletes them afterward. @command{objcopy} uses @sc{bfd} to do all its
252b5132
RH
1114translation work; it has access to all the formats described in @sc{bfd}
1115and thus is able to recognize most formats without being told
1116explicitly. @xref{BFD,,BFD,ld.info,Using LD}.
1117
c7c55b78 1118@command{objcopy} can be used to generate S-records by using an output
252b5132
RH
1119target of @samp{srec} (e.g., use @samp{-O srec}).
1120
c7c55b78
NC
1121@command{objcopy} can be used to generate a raw binary file by using an
1122output target of @samp{binary} (e.g., use @option{-O binary}). When
1123@command{objcopy} generates a raw binary file, it will essentially produce
252b5132
RH
1124a memory dump of the contents of the input object file. All symbols and
1125relocation information will be discarded. The memory dump will start at
1126the load address of the lowest section copied into the output file.
1127
1128When generating an S-record or a raw binary file, it may be helpful to
c7c55b78
NC
1129use @option{-S} to remove sections containing debugging information. In
1130some cases @option{-R} will be useful to remove sections which contain
f20a759a 1131information that is not needed by the binary file.
252b5132 1132
947ed062
NC
1133Note---@command{objcopy} is not able to change the endianness of its input
1134files. If the input format has an endianness (some formats do not),
c7c55b78 1135@command{objcopy} can only copy the inputs into file formats that have the
947ed062 1136same endianness or which have no endianness (e.g., @samp{srec}).
9e48b4c6 1137(However, see the @option{--reverse-bytes} option.)
18356cf2 1138
0285c67d
NC
1139@c man end
1140
1141@c man begin OPTIONS objcopy
1142
c7c55b78 1143@table @env
252b5132
RH
1144@item @var{infile}
1145@itemx @var{outfile}
f20a759a 1146The input and output files, respectively.
c7c55b78 1147If you do not specify @var{outfile}, @command{objcopy} creates a
252b5132
RH
1148temporary file and destructively renames the result with
1149the name of @var{infile}.
1150
c7c55b78 1151@item -I @var{bfdname}
252b5132
RH
1152@itemx --input-target=@var{bfdname}
1153Consider the source file's object format to be @var{bfdname}, rather than
1154attempting to deduce it. @xref{Target Selection}, for more information.
1155
1156@item -O @var{bfdname}
1157@itemx --output-target=@var{bfdname}
1158Write the output file using the object format @var{bfdname}.
1159@xref{Target Selection}, for more information.
1160
1161@item -F @var{bfdname}
1162@itemx --target=@var{bfdname}
1163Use @var{bfdname} as the object format for both the input and the output
1164file; i.e., simply transfer data from source to destination with no
1165translation. @xref{Target Selection}, for more information.
1166
43a0748c
NC
1167@item -B @var{bfdarch}
1168@itemx --binary-architecture=@var{bfdarch}
8b31b6c4
NC
1169Useful when transforming a architecture-less input file into an object file.
1170In this case the output architecture can be set to @var{bfdarch}. This
1171option will be ignored if the input file has a known @var{bfdarch}. You
43a0748c
NC
1172can access this binary data inside a program by referencing the special
1173symbols that are created by the conversion process. These symbols are
1174called _binary_@var{objfile}_start, _binary_@var{objfile}_end and
1175_binary_@var{objfile}_size. e.g. you can transform a picture file into
c1c0eb9e 1176an object file and then access it in your code using these symbols.
43a0748c 1177
f91ea849
ILT
1178@item -j @var{sectionname}
1179@itemx --only-section=@var{sectionname}
1180Copy only the named section from the input file to the output file.
1181This option may be given more than once. Note that using this option
1182inappropriately may make the output file unusable.
1183
252b5132
RH
1184@item -R @var{sectionname}
1185@itemx --remove-section=@var{sectionname}
1186Remove any section named @var{sectionname} from the output file. This
1187option may be given more than once. Note that using this option
1188inappropriately may make the output file unusable.
1189
1190@item -S
1191@itemx --strip-all
1192Do not copy relocation and symbol information from the source file.
1193
1194@item -g
1195@itemx --strip-debug
2593f09a 1196Do not copy debugging symbols or sections from the source file.
252b5132
RH
1197
1198@item --strip-unneeded
1199Strip all symbols that are not needed for relocation processing.
1200
1201@item -K @var{symbolname}
1202@itemx --keep-symbol=@var{symbolname}
e7f918ad
NC
1203When stripping symbols, keep symbol @var{symbolname} even if it would
1204normally be stripped. This option may be given more than once.
252b5132
RH
1205
1206@item -N @var{symbolname}
1207@itemx --strip-symbol=@var{symbolname}
1208Do not copy symbol @var{symbolname} from the source file. This option
1209may be given more than once.
1210
bcf32829
JB
1211@item --strip-unneeded-symbol=@var{symbolname}
1212Do not copy symbol @var{symbolname} from the source file unless it is needed
1213by a relocation. This option may be given more than once.
1214
16b2b71c
NC
1215@item -G @var{symbolname}
1216@itemx --keep-global-symbol=@var{symbolname}
1217Keep only symbol @var{symbolname} global. Make all other symbols local
1218to the file, so that they are not visible externally. This option may
1219be given more than once.
1220
d58c2e3a
RS
1221@item --localize-hidden
1222In an ELF object, mark all symbols that have hidden or internal visibility
1223as local. This option applies on top of symbol-specific localization options
1224such as @option{-L}.
1225
252b5132
RH
1226@item -L @var{symbolname}
1227@itemx --localize-symbol=@var{symbolname}
1228Make symbol @var{symbolname} local to the file, so that it is not
1229visible externally. This option may be given more than once.
1230
1231@item -W @var{symbolname}
1232@itemx --weaken-symbol=@var{symbolname}
1233Make symbol @var{symbolname} weak. This option may be given more than once.
1234
7b4a0685
NC
1235@item --globalize-symbol=@var{symbolname}
1236Give symbol @var{symbolname} global scoping so that it is visible
1237outside of the file in which it is defined. This option may be given
1238more than once.
1239
5fe11841
NC
1240@item -w
1241@itemx --wildcard
1242Permit regular expressions in @var{symbolname}s used in other command
1243line options. The question mark (?), asterisk (*), backslash (\) and
1244square brackets ([]) operators can be used anywhere in the symbol
1245name. If the first character of the symbol name is the exclamation
1246point (!) then the sense of the switch is reversed for that symbol.
1247For example:
1248
1249@smallexample
1250 -w -W !foo -W fo*
1251@end smallexample
1252
1253would cause objcopy to weaken all symbols that start with ``fo''
1254except for the symbol ``foo''.
1255
252b5132
RH
1256@item -x
1257@itemx --discard-all
1258Do not copy non-global symbols from the source file.
1259@c FIXME any reason to prefer "non-global" to "local" here?
1260
1261@item -X
1262@itemx --discard-locals
1263Do not copy compiler-generated local symbols.
1264(These usually start with @samp{L} or @samp{.}.)
1265
1266@item -b @var{byte}
1267@itemx --byte=@var{byte}
b7dd81f7
NC
1268If interleaving has been enabled via the @option{--interleave} option
1269then start the range of bytes to keep at the @var{byte}th byte.
1270@var{byte} can be in the range from 0 to @var{breadth}-1, where
1271@var{breadth} is the value given by the @option{--interleave} option.
1272
1273@item -i [@var{breadth}]
1274@itemx --interleave[=@var{breadth}]
1275Only copy a range out of every @var{breadth} bytes. (Header data is
1276not affected). Select which byte in the range begins the copy with
1277the @option{--byte} option. Select the width of the range with the
1278@option{--interleave-width} option.
1279
1280This option is useful for creating files to program @sc{rom}. It is
1281typically used with an @code{srec} output target. Note that
1282@command{objcopy} will complain if you do not specify the
1283@option{--byte} option as well.
1284
1285The default interleave breadth is 4, so with @option{--byte} set to 0,
1286@command{objcopy} would copy the first byte out of every four bytes
1287from the input to the output.
1288
1289@item --interleave-width=@var{width}
1290When used with the @option{--interleave} option, copy @var{width}
1291bytes at a time. The start of the range of bytes to be copied is set
1292by the @option{--byte} option, and the extent of the range is set with
1293the @option{--interleave} option.
1294
1295The default value for this option is 1. The value of @var{width} plus
1296the @var{byte} value set by the @option{--byte} option must not exceed
1297the interleave breadth set by the @option{--interleave} option.
1298
1299This option can be used to create images for two 16-bit flashes interleaved
1300in a 32-bit bus by passing @option{-b 0 -i 4 --interleave-width=2}
1301and @option{-b 2 -i 4 --interleave-width=2} to two @command{objcopy}
1302commands. If the input was '12345678' then the outputs would be
1303'1256' and '3478' respectively.
252b5132
RH
1304
1305@item -p
1306@itemx --preserve-dates
1307Set the access and modification dates of the output file to be the same
1308as those of the input file.
1309
1310@item --debugging
1311Convert debugging information, if possible. This is not the default
1312because only certain debugging formats are supported, and the
1313conversion process can be time consuming.
1314
1315@item --gap-fill @var{val}
1316Fill gaps between sections with @var{val}. This operation applies to
1317the @emph{load address} (LMA) of the sections. It is done by increasing
1318the size of the section with the lower address, and filling in the extra
1319space created with @var{val}.
1320
1321@item --pad-to @var{address}
1322Pad the output file up to the load address @var{address}. This is
1323done by increasing the size of the last section. The extra space is
c7c55b78 1324filled in with the value specified by @option{--gap-fill} (default zero).
252b5132
RH
1325
1326@item --set-start @var{val}
f20a759a 1327Set the start address of the new file to @var{val}. Not all object file
252b5132
RH
1328formats support setting the start address.
1329
1330@item --change-start @var{incr}
1331@itemx --adjust-start @var{incr}
1332@cindex changing start address
1333Change the start address by adding @var{incr}. Not all object file
1334formats support setting the start address.
1335
1336@item --change-addresses @var{incr}
1337@itemx --adjust-vma @var{incr}
1338@cindex changing object addresses
1339Change the VMA and LMA addresses of all sections, as well as the start
1340address, by adding @var{incr}. Some object file formats do not permit
1341section addresses to be changed arbitrarily. Note that this does not
1342relocate the sections; if the program expects sections to be loaded at a
1343certain address, and this option is used to change the sections such
c1c0eb9e 1344that they are loaded at a different address, the program may fail.
252b5132
RH
1345
1346@item --change-section-address @var{section}@{=,+,-@}@var{val}
1347@itemx --adjust-section-vma @var{section}@{=,+,-@}@var{val}
1348@cindex changing section address
1349Set or change both the VMA address and the LMA address of the named
1350@var{section}. If @samp{=} is used, the section address is set to
1351@var{val}. Otherwise, @var{val} is added to or subtracted from the
c7c55b78 1352section address. See the comments under @option{--change-addresses},
252b5132 1353above. If @var{section} does not exist in the input file, a warning will
c7c55b78 1354be issued, unless @option{--no-change-warnings} is used.
252b5132
RH
1355
1356@item --change-section-lma @var{section}@{=,+,-@}@var{val}
1357@cindex changing section LMA
1358Set or change the LMA address of the named @var{section}. The LMA
1359address is the address where the section will be loaded into memory at
1360program load time. Normally this is the same as the VMA address, which
1361is the address of the section at program run time, but on some systems,
1362especially those where a program is held in ROM, the two can be
1363different. If @samp{=} is used, the section address is set to
1364@var{val}. Otherwise, @var{val} is added to or subtracted from the
c7c55b78 1365section address. See the comments under @option{--change-addresses},
252b5132 1366above. If @var{section} does not exist in the input file, a warning
c1c0eb9e 1367will be issued, unless @option{--no-change-warnings} is used.
252b5132
RH
1368
1369@item --change-section-vma @var{section}@{=,+,-@}@var{val}
1370@cindex changing section VMA
1371Set or change the VMA address of the named @var{section}. The VMA
1372address is the address where the section will be located once the
1373program has started executing. Normally this is the same as the LMA
1374address, which is the address where the section will be loaded into
1375memory, but on some systems, especially those where a program is held in
1376ROM, the two can be different. If @samp{=} is used, the section address
1377is set to @var{val}. Otherwise, @var{val} is added to or subtracted
1378from the section address. See the comments under
c7c55b78 1379@option{--change-addresses}, above. If @var{section} does not exist in
252b5132 1380the input file, a warning will be issued, unless
c1c0eb9e 1381@option{--no-change-warnings} is used.
252b5132
RH
1382
1383@item --change-warnings
1384@itemx --adjust-warnings
c7c55b78
NC
1385If @option{--change-section-address} or @option{--change-section-lma} or
1386@option{--change-section-vma} is used, and the named section does not
c1c0eb9e 1387exist, issue a warning. This is the default.
252b5132
RH
1388
1389@item --no-change-warnings
1390@itemx --no-adjust-warnings
c7c55b78
NC
1391Do not issue a warning if @option{--change-section-address} or
1392@option{--adjust-section-lma} or @option{--adjust-section-vma} is used, even
c1c0eb9e 1393if the named section does not exist.
252b5132
RH
1394
1395@item --set-section-flags @var{section}=@var{flags}
1396Set the flags for the named section. The @var{flags} argument is a
1397comma separated string of flag names. The recognized names are
3994e2c6
ILT
1398@samp{alloc}, @samp{contents}, @samp{load}, @samp{noload},
1399@samp{readonly}, @samp{code}, @samp{data}, @samp{rom}, @samp{share}, and
1400@samp{debug}. You can set the @samp{contents} flag for a section which
1401does not have contents, but it is not meaningful to clear the
1402@samp{contents} flag of a section which does have contents--just remove
1403the section instead. Not all flags are meaningful for all object file
1404formats.
252b5132
RH
1405
1406@item --add-section @var{sectionname}=@var{filename}
1407Add a new section named @var{sectionname} while copying the file. The
1408contents of the new section are taken from the file @var{filename}. The
1409size of the section will be the size of the file. This option only
1410works on file formats which can support sections with arbitrary names.
1411
594ef5db
NC
1412@item --rename-section @var{oldname}=@var{newname}[,@var{flags}]
1413Rename a section from @var{oldname} to @var{newname}, optionally
1414changing the section's flags to @var{flags} in the process. This has
1415the advantage over usng a linker script to perform the rename in that
1416the output stays as an object file and does not become a linked
1417executable.
1418
1419This option is particularly helpful when the input format is binary,
1420since this will always create a section called .data. If for example,
1421you wanted instead to create a section called .rodata containing binary
1422data you could use the following command line to achieve it:
1423
1424@smallexample
1425 objcopy -I binary -O <output_format> -B <architecture> \
1426 --rename-section .data=.rodata,alloc,load,readonly,data,contents \
1427 <input_binary_file> <output_object_file>
1428@end smallexample
1429
0408dee6
DK
1430@item --long-section-names @{enable,disable,keep@}
1431Controls the handling of long section names when processing @code{COFF}
1432and @code{PE-COFF} object formats. The default behaviour, @samp{keep},
1433is to preserve long section names if any are present in the input file.
1434The @samp{enable} and @samp{disable} options forcibly enable or disable
1435the use of long section names in the output object; when @samp{disable}
1436is in effect, any long section names in the input object will be truncated.
1437The @samp{enable} option will only emit long section names if any are
1438present in the inputs; this is mostly the same as @samp{keep}, but it
b3364cb9 1439is left undefined whether the @samp{enable} option might force the
0408dee6
DK
1440creation of an empty string table in the output file.
1441
252b5132
RH
1442@item --change-leading-char
1443Some object file formats use special characters at the start of
1444symbols. The most common such character is underscore, which compilers
c7c55b78 1445often add before every symbol. This option tells @command{objcopy} to
252b5132
RH
1446change the leading character of every symbol when it converts between
1447object file formats. If the object file formats use the same leading
1448character, this option has no effect. Otherwise, it will add a
1449character, or remove a character, or change a character, as
1450appropriate.
1451
1452@item --remove-leading-char
1453If the first character of a global symbol is a special symbol leading
1454character used by the object file format, remove the character. The
1455most common symbol leading character is underscore. This option will
1456remove a leading underscore from all global symbols. This can be useful
1457if you want to link together objects of different file formats with
1458different conventions for symbol names. This is different from
c7c55b78 1459@option{--change-leading-char} because it always changes the symbol name
252b5132
RH
1460when appropriate, regardless of the object file format of the output
1461file.
1462
9e48b4c6
NC
1463@item --reverse-bytes=@var{num}
1464Reverse the bytes in a section with output contents. A section length must
1465be evenly divisible by the value given in order for the swap to be able to
1466take place. Reversing takes place before the interleaving is performed.
1467
1468This option is used typically in generating ROM images for problematic
1469target systems. For example, on some target boards, the 32-bit words
1470fetched from 8-bit ROMs are re-assembled in little-endian byte order
1471regardless of the CPU byte order. Depending on the programming model, the
1472endianness of the ROM may need to be modified.
1473
1474Consider a simple file with a section containing the following eight
1475bytes: @code{12345678}.
1476
1477Using @samp{--reverse-bytes=2} for the above example, the bytes in the
1478output file would be ordered @code{21436587}.
1479
1480Using @samp{--reverse-bytes=4} for the above example, the bytes in the
1481output file would be ordered @code{43218765}.
1482
1483By using @samp{--reverse-bytes=2} for the above example, followed by
1484@samp{--reverse-bytes=4} on the output file, the bytes in the second
1485output file would be ordered @code{34127856}.
1486
420496c1
NC
1487@item --srec-len=@var{ival}
1488Meaningful only for srec output. Set the maximum length of the Srecords
1489being produced to @var{ival}. This length covers both address, data and
1490crc fields.
1491
1492@item --srec-forceS3
c1c0eb9e 1493Meaningful only for srec output. Avoid generation of S1/S2 records,
420496c1
NC
1494creating S3-only record format.
1495
57938635
AM
1496@item --redefine-sym @var{old}=@var{new}
1497Change the name of a symbol @var{old}, to @var{new}. This can be useful
1498when one is trying link two things together for which you have no
1499source, and there are name collisions.
1500
92991082
JT
1501@item --redefine-syms=@var{filename}
1502Apply @option{--redefine-sym} to each symbol pair "@var{old} @var{new}"
1503listed in the file @var{filename}. @var{filename} is simply a flat file,
1504with one symbol pair per line. Line comments may be introduced by the hash
1505character. This option may be given more than once.
1506
252b5132
RH
1507@item --weaken
1508Change all global symbols in the file to be weak. This can be useful
1509when building an object which will be linked against other objects using
c7c55b78 1510the @option{-R} option to the linker. This option is only effective when
252b5132
RH
1511using an object file format which supports weak symbols.
1512
16b2b71c 1513@item --keep-symbols=@var{filename}
c7c55b78 1514Apply @option{--keep-symbol} option to each symbol listed in the file
16b2b71c
NC
1515@var{filename}. @var{filename} is simply a flat file, with one symbol
1516name per line. Line comments may be introduced by the hash character.
1517This option may be given more than once.
1518
1519@item --strip-symbols=@var{filename}
c7c55b78 1520Apply @option{--strip-symbol} option to each symbol listed in the file
16b2b71c
NC
1521@var{filename}. @var{filename} is simply a flat file, with one symbol
1522name per line. Line comments may be introduced by the hash character.
1523This option may be given more than once.
1524
bcf32829
JB
1525@item --strip-unneeded-symbols=@var{filename}
1526Apply @option{--strip-unneeded-symbol} option to each symbol listed in
1527the file @var{filename}. @var{filename} is simply a flat file, with one
1528symbol name per line. Line comments may be introduced by the hash
1529character. This option may be given more than once.
1530
16b2b71c 1531@item --keep-global-symbols=@var{filename}
c7c55b78 1532Apply @option{--keep-global-symbol} option to each symbol listed in the
16b2b71c
NC
1533file @var{filename}. @var{filename} is simply a flat file, with one
1534symbol name per line. Line comments may be introduced by the hash
1535character. This option may be given more than once.
1536
1537@item --localize-symbols=@var{filename}
c7c55b78 1538Apply @option{--localize-symbol} option to each symbol listed in the file
16b2b71c
NC
1539@var{filename}. @var{filename} is simply a flat file, with one symbol
1540name per line. Line comments may be introduced by the hash character.
1541This option may be given more than once.
1542
7b4a0685
NC
1543@item --globalize-symbols=@var{filename}
1544Apply @option{--globalize-symbol} option to each symbol listed in the file
1545@var{filename}. @var{filename} is simply a flat file, with one symbol
1546name per line. Line comments may be introduced by the hash character.
1547This option may be given more than once.
1548
16b2b71c 1549@item --weaken-symbols=@var{filename}
c7c55b78 1550Apply @option{--weaken-symbol} option to each symbol listed in the file
16b2b71c
NC
1551@var{filename}. @var{filename} is simply a flat file, with one symbol
1552name per line. Line comments may be introduced by the hash character.
1553This option may be given more than once.
1554
1ae8b3d2
AO
1555@item --alt-machine-code=@var{index}
1556If the output architecture has alternate machine codes, use the
1557@var{index}th code instead of the default one. This is useful in case
c1c0eb9e 1558a machine is assigned an official code and the tool-chain adopts the
1ae8b3d2 1559new code, but other applications still depend on the original code
f9d4ad2a
NC
1560being used. For ELF based architectures if the @var{index}
1561alternative does not exist then the value is treated as an absolute
1562number to be stored in the e_machine field of the ELF header.
1ae8b3d2 1563
4087920c
MR
1564@item --writable-text
1565Mark the output text as writable. This option isn't meaningful for all
1566object file formats.
1567
1568@item --readonly-text
1569Make the output text write protected. This option isn't meaningful for all
1570object file formats.
1571
1572@item --pure
1573Mark the output file as demand paged. This option isn't meaningful for all
1574object file formats.
1575
1576@item --impure
1577Mark the output file as impure. This option isn't meaningful for all
1578object file formats.
1579
d7fb0dd2
NC
1580@item --prefix-symbols=@var{string}
1581Prefix all symbols in the output file with @var{string}.
1582
1583@item --prefix-sections=@var{string}
1584Prefix all section names in the output file with @var{string}.
1585
1586@item --prefix-alloc-sections=@var{string}
1587Prefix all the names of all allocated sections in the output file with
1588@var{string}.
1589
ed1653a7
NC
1590@item --add-gnu-debuglink=@var{path-to-file}
1591Creates a .gnu_debuglink section which contains a reference to @var{path-to-file}
1592and adds it to the output file.
1593
1637cd90
JB
1594@item --keep-file-symbols
1595When stripping a file, perhaps with @option{--strip-debug} or
1596@option{--strip-unneeded}, retain any symbols specifying source file names,
1597which would otherwise get stripped.
1598
ed1653a7 1599@item --only-keep-debug
36d3b955
MR
1600Strip a file, removing contents of any sections that would not be
1601stripped by @option{--strip-debug} and leaving the debugging sections
c1c0eb9e 1602intact. In ELF files, this preserves all note sections in the output.
ed1653a7
NC
1603
1604The intention is that this option will be used in conjunction with
1605@option{--add-gnu-debuglink} to create a two part executable. One a
1606stripped binary which will occupy less space in RAM and in a
1607distribution and the second a debugging information file which is only
1608needed if debugging abilities are required. The suggested procedure
1609to create these files is as follows:
1610
b96fec5e
DK
1611@enumerate
1612@item Link the executable as normal. Assuming that is is called
1613@code{foo} then...
1614@item Run @code{objcopy --only-keep-debug foo foo.dbg} to
1615create a file containing the debugging info.
1616@item Run @code{objcopy --strip-debug foo} to create a
1617stripped executable.
1618@item Run @code{objcopy --add-gnu-debuglink=foo.dbg foo}
1619to add a link to the debugging info into the stripped executable.
1620@end enumerate
1621
1622Note---the choice of @code{.dbg} as an extension for the debug info
1623file is arbitrary. Also the @code{--only-keep-debug} step is
1624optional. You could instead do this:
1625
1626@enumerate
1627@item Link the executable as normal.
1628@item Copy @code{foo} to @code{foo.full}
1629@item Run @code{objcopy --strip-debug foo}
1630@item Run @code{objcopy --add-gnu-debuglink=foo.full foo}
1631@end enumerate
1632
1633i.e., the file pointed to by the @option{--add-gnu-debuglink} can be the
1634full executable. It does not have to be a file created by the
1635@option{--only-keep-debug} switch.
1636
1637Note---this switch is only intended for use on fully linked files. It
1638does not make sense to use it on object files where the debugging
1639information may be incomplete. Besides the gnu_debuglink feature
1640currently only supports the presence of one filename containing
1641debugging information, not multiple filenames on a one-per-object-file
1642basis.
1643
92dd4511
L
1644@item --file-alignment @var{num}
1645Specify the file alignment. Sections in the file will always begin at
1646file offsets which are multiples of this number. This defaults to
1647512.
1648[This option is specific to PE targets.]
1649
1650@item --heap @var{reserve}
1651@itemx --heap @var{reserve},@var{commit}
1652Specify the number of bytes of memory to reserve (and optionally commit)
1653to be used as heap for this program.
1654[This option is specific to PE targets.]
1655
1656@item --image-base @var{value}
1657Use @var{value} as the base address of your program or dll. This is
1658the lowest memory location that will be used when your program or dll
1659is loaded. To reduce the need to relocate and improve performance of
1660your dlls, each should have a unique base address and not overlap any
1661other dlls. The default is 0x400000 for executables, and 0x10000000
1662for dlls.
1663[This option is specific to PE targets.]
1664
1665@item --section-alignment @var{num}
1666Sets the section alignment. Sections in memory will always begin at
1667addresses which are a multiple of this number. Defaults to 0x1000.
1668[This option is specific to PE targets.]
1669
1670@item --stack @var{reserve}
1671@itemx --stack @var{reserve},@var{commit}
1672Specify the number of bytes of memory to reserve (and optionally commit)
1673to be used as stack for this program.
1674[This option is specific to PE targets.]
1675
1676@item --subsystem @var{which}
1677@itemx --subsystem @var{which}:@var{major}
1678@itemx --subsystem @var{which}:@var{major}.@var{minor}
1679Specifies the subsystem under which your program will execute. The
1680legal values for @var{which} are @code{native}, @code{windows},
1681@code{console}, @code{posix}, @code{efi-app}, @code{efi-bsd},
d9118602 1682@code{efi-rtd}, @code{sal-rtd}, and @code{xbox}. You may optionally set
92dd4511
L
1683the subsystem version also. Numeric values are also accepted for
1684@var{which}.
1685[This option is specific to PE targets.]
1686
d3e52d40
RS
1687@item --extract-symbol
1688Keep the file's section flags and symbols but remove all section data.
1689Specifically, the option:
1690
1691@itemize
d3e52d40
RS
1692@item removes the contents of all sections;
1693@item sets the size of every section to zero; and
1694@item sets the file's start address to zero.
1695@end itemize
c1c0eb9e 1696
d3e52d40
RS
1697This option is used to build a @file{.sym} file for a VxWorks kernel.
1698It can also be a useful way of reducing the size of a @option{--just-symbols}
1699linker input file.
1700
4a114e3e
L
1701@item --compress-debug-sections
1702Compress DWARF debug sections using zlib.
1703
1704@item --decompress-debug-sections
1705Decompress DWARF debug sections using zlib.
1706
252b5132
RH
1707@item -V
1708@itemx --version
c7c55b78 1709Show the version number of @command{objcopy}.
252b5132
RH
1710
1711@item -v
1712@itemx --verbose
1713Verbose output: list all object files modified. In the case of
1714archives, @samp{objcopy -V} lists all members of the archive.
1715
1716@item --help
c7c55b78 1717Show a summary of the options to @command{objcopy}.
7c29036b
NC
1718
1719@item --info
1720Display a list showing all architectures and object formats available.
252b5132
RH
1721@end table
1722
0285c67d
NC
1723@c man end
1724
1725@ignore
1726@c man begin SEEALSO objcopy
1727ld(1), objdump(1), and the Info entries for @file{binutils}.
1728@c man end
1729@end ignore
1730
252b5132
RH
1731@node objdump
1732@chapter objdump
1733
1734@cindex object file information
1735@kindex objdump
1736
0285c67d
NC
1737@c man title objdump display information from object files.
1738
252b5132 1739@smallexample
0285c67d 1740@c man begin SYNOPSIS objdump
c7c55b78
NC
1741objdump [@option{-a}|@option{--archive-headers}]
1742 [@option{-b} @var{bfdname}|@option{--target=@var{bfdname}}]
1743 [@option{-C}|@option{--demangle}[=@var{style}] ]
1744 [@option{-d}|@option{--disassemble}]
1745 [@option{-D}|@option{--disassemble-all}]
1746 [@option{-z}|@option{--disassemble-zeroes}]
1747 [@option{-EB}|@option{-EL}|@option{--endian=}@{big | little @}]
1748 [@option{-f}|@option{--file-headers}]
98ec6e72 1749 [@option{-F}|@option{--file-offsets}]
c7c55b78
NC
1750 [@option{--file-start-context}]
1751 [@option{-g}|@option{--debugging}]
51cdc6e0 1752 [@option{-e}|@option{--debugging-tags}]
c7c55b78
NC
1753 [@option{-h}|@option{--section-headers}|@option{--headers}]
1754 [@option{-i}|@option{--info}]
1755 [@option{-j} @var{section}|@option{--section=}@var{section}]
1756 [@option{-l}|@option{--line-numbers}]
1757 [@option{-S}|@option{--source}]
1758 [@option{-m} @var{machine}|@option{--architecture=}@var{machine}]
1759 [@option{-M} @var{options}|@option{--disassembler-options=}@var{options}]
1760 [@option{-p}|@option{--private-headers}]
6abcee90 1761 [@option{-P} @var{options}|@option{--private=}@var{options}]
c7c55b78
NC
1762 [@option{-r}|@option{--reloc}]
1763 [@option{-R}|@option{--dynamic-reloc}]
1764 [@option{-s}|@option{--full-contents}]
f9f0e732 1765 [@option{-W[lLiaprmfFsoRt]}|
5bbdf3d5 1766 @option{--dwarf}[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges,=pubtypes,=trace_info,=trace_abbrev,=trace_aranges,=gdb_index]]
c7c55b78
NC
1767 [@option{-G}|@option{--stabs}]
1768 [@option{-t}|@option{--syms}]
1769 [@option{-T}|@option{--dynamic-syms}]
1770 [@option{-x}|@option{--all-headers}]
1771 [@option{-w}|@option{--wide}]
1772 [@option{--start-address=}@var{address}]
1773 [@option{--stop-address=}@var{address}]
1774 [@option{--prefix-addresses}]
1775 [@option{--[no-]show-raw-insn}]
1776 [@option{--adjust-vma=}@var{offset}]
3c9458e9 1777 [@option{--special-syms}]
0dafdf3f
L
1778 [@option{--prefix=}@var{prefix}]
1779 [@option{--prefix-strip=}@var{level}]
3dcb3fcb 1780 [@option{--insn-width=}@var{width}]
c7c55b78
NC
1781 [@option{-V}|@option{--version}]
1782 [@option{-H}|@option{--help}]
252b5132 1783 @var{objfile}@dots{}
0285c67d 1784@c man end
252b5132
RH
1785@end smallexample
1786
0285c67d
NC
1787@c man begin DESCRIPTION objdump
1788
c7c55b78 1789@command{objdump} displays information about one or more object files.
252b5132
RH
1790The options control what particular information to display. This
1791information is mostly useful to programmers who are working on the
1792compilation tools, as opposed to programmers who just want their
1793program to compile and work.
1794
1795@var{objfile}@dots{} are the object files to be examined. When you
c7c55b78 1796specify archives, @command{objdump} shows information on each of the member
252b5132
RH
1797object files.
1798
0285c67d
NC
1799@c man end
1800
1801@c man begin OPTIONS objdump
1802
252b5132 1803The long and short forms of options, shown here as alternatives, are
1dada9c5 1804equivalent. At least one option from the list
6abcee90 1805@option{-a,-d,-D,-e,-f,-g,-G,-h,-H,-p,-P,-r,-R,-s,-S,-t,-T,-V,-x} must be given.
252b5132 1806
c7c55b78 1807@table @env
252b5132
RH
1808@item -a
1809@itemx --archive-header
1810@cindex archive headers
1811If any of the @var{objfile} files are archives, display the archive
1812header information (in a format similar to @samp{ls -l}). Besides the
1813information you could list with @samp{ar tv}, @samp{objdump -a} shows
1814the object file format of each archive member.
1815
1816@item --adjust-vma=@var{offset}
1817@cindex section addresses in objdump
1818@cindex VMA in objdump
1819When dumping information, first add @var{offset} to all the section
1820addresses. This is useful if the section addresses do not correspond to
1821the symbol table, which can happen when putting sections at particular
1822addresses when using a format which can not represent section addresses,
1823such as a.out.
1824
1825@item -b @var{bfdname}
1826@itemx --target=@var{bfdname}
1827@cindex object code format
1828Specify that the object-code format for the object files is
1829@var{bfdname}. This option may not be necessary; @var{objdump} can
1830automatically recognize many formats.
1831
1832For example,
1833@example
1834objdump -b oasys -m vax -h fu.o
1835@end example
1836@noindent
c7c55b78
NC
1837displays summary information from the section headers (@option{-h}) of
1838@file{fu.o}, which is explicitly identified (@option{-m}) as a VAX object
252b5132 1839file in the format produced by Oasys compilers. You can list the
c7c55b78 1840formats available with the @option{-i} option.
252b5132
RH
1841@xref{Target Selection}, for more information.
1842
1843@item -C
28c309a2 1844@itemx --demangle[=@var{style}]
252b5132
RH
1845@cindex demangling in objdump
1846Decode (@dfn{demangle}) low-level symbol names into user-level names.
1847Besides removing any initial underscore prepended by the system, this
28c309a2 1848makes C++ function names readable. Different compilers have different
c1c0eb9e
RM
1849mangling styles. The optional demangling style argument can be used to
1850choose an appropriate demangling style for your compiler. @xref{c++filt},
28c309a2 1851for more information on demangling.
252b5132 1852
947ed062
NC
1853@item -g
1854@itemx --debugging
b922d590
NC
1855Display debugging information. This attempts to parse STABS and IEEE
1856debugging format information stored in the file and print it out using
1857a C like syntax. If neither of these formats are found this option
1858falls back on the @option{-W} option to print any DWARF information in
1859the file.
252b5132 1860
51cdc6e0
NC
1861@item -e
1862@itemx --debugging-tags
1863Like @option{-g}, but the information is generated in a format compatible
1864with ctags tool.
1865
252b5132
RH
1866@item -d
1867@itemx --disassemble
1868@cindex disassembling object code
1869@cindex machine instructions
1870Display the assembler mnemonics for the machine instructions from
1871@var{objfile}. This option only disassembles those sections which are
1872expected to contain instructions.
1873
1874@item -D
1875@itemx --disassemble-all
c7c55b78 1876Like @option{-d}, but disassemble the contents of all sections, not just
252b5132
RH
1877those expected to contain instructions.
1878
0313a2b8
NC
1879If the target is an ARM architecture this switch also has the effect
1880of forcing the disassembler to decode pieces of data found in code
1881sections as if they were instructions.
1882
252b5132
RH
1883@item --prefix-addresses
1884When disassembling, print the complete address on each line. This is
1885the older disassembly format.
1886
252b5132
RH
1887@item -EB
1888@itemx -EL
1889@itemx --endian=@{big|little@}
1890@cindex endianness
1891@cindex disassembly endianness
1892Specify the endianness of the object files. This only affects
1893disassembly. This can be useful when disassembling a file format which
1894does not describe endianness information, such as S-records.
1895
1896@item -f
947ed062 1897@itemx --file-headers
252b5132
RH
1898@cindex object file header
1899Display summary information from the overall header of
1900each of the @var{objfile} files.
1901
98ec6e72
NC
1902@item -F
1903@itemx --file-offsets
1904@cindex object file offsets
1905When disassembling sections, whenever a symbol is displayed, also
1906display the file offset of the region of data that is about to be
1907dumped. If zeroes are being skipped, then when disassembly resumes,
1908tell the user how many zeroes were skipped and the file offset of the
32760852
NC
1909location from where the disassembly resumes. When dumping sections,
1910display the file offset of the location from where the dump starts.
98ec6e72 1911
f1563258
TW
1912@item --file-start-context
1913@cindex source code context
1914Specify that when displaying interlisted source code/disassembly
c7c55b78 1915(assumes @option{-S}) from a file that has not yet been displayed, extend the
f1563258
TW
1916context to the start of the file.
1917
252b5132 1918@item -h
947ed062
NC
1919@itemx --section-headers
1920@itemx --headers
252b5132
RH
1921@cindex section headers
1922Display summary information from the section headers of the
1923object file.
1924
1925File segments may be relocated to nonstandard addresses, for example by
c7c55b78
NC
1926using the @option{-Ttext}, @option{-Tdata}, or @option{-Tbss} options to
1927@command{ld}. However, some object file formats, such as a.out, do not
252b5132 1928store the starting address of the file segments. In those situations,
c7c55b78 1929although @command{ld} relocates the sections correctly, using @samp{objdump
252b5132
RH
1930-h} to list the file section headers cannot show the correct addresses.
1931Instead, it shows the usual addresses, which are implicit for the
1932target.
1933
947ed062
NC
1934@item -H
1935@itemx --help
c7c55b78 1936Print a summary of the options to @command{objdump} and exit.
252b5132
RH
1937
1938@item -i
1939@itemx --info
1940@cindex architectures available
1941@cindex object formats available
1942Display a list showing all architectures and object formats available
c7c55b78 1943for specification with @option{-b} or @option{-m}.
252b5132
RH
1944
1945@item -j @var{name}
1946@itemx --section=@var{name}
1947@cindex section information
1948Display information only for section @var{name}.
1949
1950@item -l
1951@itemx --line-numbers
1952@cindex source filenames for object files
1953Label the display (using debugging information) with the filename and
1954source line numbers corresponding to the object code or relocs shown.
c7c55b78 1955Only useful with @option{-d}, @option{-D}, or @option{-r}.
252b5132
RH
1956
1957@item -m @var{machine}
1958@itemx --architecture=@var{machine}
1959@cindex architecture
1960@cindex disassembly architecture
1961Specify the architecture to use when disassembling object files. This
1962can be useful when disassembling object files which do not describe
1963architecture information, such as S-records. You can list the available
c7c55b78 1964architectures with the @option{-i} option.
252b5132 1965
0313a2b8
NC
1966If the target is an ARM architecture then this switch has an
1967additional effect. It restricts the disassembly to only those
1968instructions supported by the architecture specified by @var{machine}.
1969If it is necessary to use this switch because the input file does not
1970contain any architecture information, but it is also desired to
1971disassemble all the instructions use @option{-marm}.
1972
dd92f639
NC
1973@item -M @var{options}
1974@itemx --disassembler-options=@var{options}
1975Pass target specific information to the disassembler. Only supported on
31e0f3cd
NC
1976some targets. If it is necessary to specify more than one
1977disassembler option then multiple @option{-M} options can be used or
1978can be placed together into a comma separated list.
dd92f639
NC
1979
1980If the target is an ARM architecture then this switch can be used to
1981select which register name set is used during disassembler. Specifying
9c092ace 1982@option{-M reg-names-std} (the default) will select the register names as
58efb6c0
NC
1983used in ARM's instruction set documentation, but with register 13 called
1984'sp', register 14 called 'lr' and register 15 called 'pc'. Specifying
c7c55b78
NC
1985@option{-M reg-names-apcs} will select the name set used by the ARM
1986Procedure Call Standard, whilst specifying @option{-M reg-names-raw} will
58efb6c0
NC
1987just use @samp{r} followed by the register number.
1988
1989There are also two variants on the APCS register naming scheme enabled
c7c55b78
NC
1990by @option{-M reg-names-atpcs} and @option{-M reg-names-special-atpcs} which
1991use the ARM/Thumb Procedure Call Standard naming conventions. (Either
947ed062 1992with the normal register names or the special register names).
dd92f639 1993
8f915f68 1994This option can also be used for ARM architectures to force the
c36774d6 1995disassembler to interpret all instructions as Thumb instructions by
c7c55b78 1996using the switch @option{--disassembler-options=force-thumb}. This can be
8f915f68
NC
1997useful when attempting to disassemble thumb code produced by other
1998compilers.
1999
e396998b
AM
2000For the x86, some of the options duplicate functions of the @option{-m}
2001switch, but allow finer grained control. Multiple selections from the
2002following may be specified as a comma separated string.
b89e9eae 2003@option{x86-64}, @option{i386} and @option{i8086} select disassembly for
e396998b 2004the given architecture. @option{intel} and @option{att} select between
9d141669
L
2005intel syntax mode and AT&T syntax mode.
2006@option{intel-mnemonic} and @option{att-mnemonic} select between
2007intel mnemonic mode and AT&T mnemonic mode. @option{intel-mnemonic}
2008implies @option{intel} and @option{att-mnemonic} implies @option{att}.
2009@option{addr64}, @option{addr32},
e396998b
AM
2010@option{addr16}, @option{data32} and @option{data16} specify the default
2011address size and operand size. These four options will be overridden if
b89e9eae 2012@option{x86-64}, @option{i386} or @option{i8086} appear later in the
e396998b 2013option string. Lastly, @option{suffix}, when in AT&T mode,
b9e5d8e5 2014instructs the disassembler to print a mnemonic suffix even when the
e396998b
AM
2015suffix could be inferred by the operands.
2016
2f3bb96a
BE
2017For PowerPC, @option{booke} controls the disassembly of BookE
2018instructions. @option{32} and @option{64} select PowerPC and
2019PowerPC64 disassembly, respectively. @option{e300} selects
2020disassembly for the e300 family. @option{440} selects disassembly for
2021the PowerPC 440. @option{ppcps} selects disassembly for the paired
2022single instructions of the PPC750CL.
802a735e 2023
b45619c0 2024For MIPS, this option controls the printing of instruction mnemonic
e39893d7
FF
2025names and register names in disassembled instructions. Multiple
2026selections from the following may be specified as a comma separated
2027string, and invalid options are ignored:
640c0ccd
CD
2028
2029@table @code
e39893d7 2030@item no-aliases
b45619c0
NC
2031Print the 'raw' instruction mnemonic instead of some pseudo
2032instruction mnemonic. I.e., print 'daddu' or 'or' instead of 'move',
e39893d7
FF
2033'sll' instead of 'nop', etc.
2034
640c0ccd
CD
2035@item gpr-names=@var{ABI}
2036Print GPR (general-purpose register) names as appropriate
2037for the specified ABI. By default, GPR names are selected according to
2038the ABI of the binary being disassembled.
2039
2040@item fpr-names=@var{ABI}
2041Print FPR (floating-point register) names as
2042appropriate for the specified ABI. By default, FPR numbers are printed
2043rather than names.
2044
2045@item cp0-names=@var{ARCH}
2046Print CP0 (system control coprocessor; coprocessor 0) register names
2047as appropriate for the CPU or architecture specified by
2048@var{ARCH}. By default, CP0 register names are selected according to
2049the architecture and CPU of the binary being disassembled.
2050
af7ee8bf
CD
2051@item hwr-names=@var{ARCH}
2052Print HWR (hardware register, used by the @code{rdhwr} instruction) names
2053as appropriate for the CPU or architecture specified by
2054@var{ARCH}. By default, HWR names are selected according to
2055the architecture and CPU of the binary being disassembled.
2056
640c0ccd
CD
2057@item reg-names=@var{ABI}
2058Print GPR and FPR names as appropriate for the selected ABI.
2059
2060@item reg-names=@var{ARCH}
af7ee8bf
CD
2061Print CPU-specific register names (CP0 register and HWR names)
2062as appropriate for the selected CPU or architecture.
640c0ccd
CD
2063@end table
2064
2065For any of the options listed above, @var{ABI} or
2066@var{ARCH} may be specified as @samp{numeric} to have numbers printed
2067rather than names, for the selected types of registers.
2068You can list the available values of @var{ABI} and @var{ARCH} using
2069the @option{--help} option.
2070
ec72cfe5
NC
2071For VAX, you can specify function entry addresses with @option{-M
2072entry:0xf00ba}. You can use this multiple times to properly
2073disassemble VAX binary files that don't contain symbol tables (like
2074ROM dumps). In these cases, the function entry mask would otherwise
b45619c0 2075be decoded as VAX instructions, which would probably lead the rest
ec72cfe5
NC
2076of the function being wrongly disassembled.
2077
252b5132
RH
2078@item -p
2079@itemx --private-headers
2080Print information that is specific to the object file format. The exact
2081information printed depends upon the object file format. For some
2082object file formats, no additional information is printed.
2083
6abcee90
TG
2084@item -P @var{options}
2085@itemx --private=@var{options}
2086Print information that is specific to the object file format. The
2087argument @var{options} is a comma separated list that depends on the
2088format (the lists of options is displayed with the help).
2089
2090For XCOFF, the available options are: @option{header}, @option{aout},
2091@option{sections}, @option{syms}, @option{relocs}, @option{lineno},
2092@option{loader}, @option{except}, @option{typchk}, @option{traceback}
2093and @option{toc}.
2094
252b5132
RH
2095@item -r
2096@itemx --reloc
2097@cindex relocation entries, in object file
c7c55b78
NC
2098Print the relocation entries of the file. If used with @option{-d} or
2099@option{-D}, the relocations are printed interspersed with the
252b5132
RH
2100disassembly.
2101
2102@item -R
2103@itemx --dynamic-reloc
2104@cindex dynamic relocation entries, in object file
2105Print the dynamic relocation entries of the file. This is only
2106meaningful for dynamic objects, such as certain types of shared
840b96a7
AM
2107libraries. As for @option{-r}, if used with @option{-d} or
2108@option{-D}, the relocations are printed interspersed with the
2109disassembly.
252b5132
RH
2110
2111@item -s
2112@itemx --full-contents
2113@cindex sections, full contents
2114@cindex object file sections
155e0d23
NC
2115Display the full contents of any sections requested. By default all
2116non-empty sections are displayed.
252b5132
RH
2117
2118@item -S
2119@itemx --source
2120@cindex source disassembly
2121@cindex disassembly, with source
2122Display source code intermixed with disassembly, if possible. Implies
c7c55b78 2123@option{-d}.
252b5132 2124
0dafdf3f
L
2125@item --prefix=@var{prefix}
2126@cindex Add prefix to absolute paths
2127Specify @var{prefix} to add to the absolute paths when used with
b3364cb9 2128@option{-S}.
0dafdf3f
L
2129
2130@item --prefix-strip=@var{level}
2131@cindex Strip absolute paths
2132Indicate how many initial directory names to strip off the hardwired
2133absolute paths. It has no effect without @option{--prefix=}@var{prefix}.
2134
252b5132
RH
2135@item --show-raw-insn
2136When disassembling instructions, print the instruction in hex as well as
2137in symbolic form. This is the default except when
c7c55b78 2138@option{--prefix-addresses} is used.
252b5132
RH
2139
2140@item --no-show-raw-insn
2141When disassembling instructions, do not print the instruction bytes.
c7c55b78 2142This is the default when @option{--prefix-addresses} is used.
252b5132 2143
3dcb3fcb 2144@item --insn-width=@var{width}
b3364cb9 2145@cindex Instruction width
3dcb3fcb
L
2146Display @var{width} bytes on a single line when disassembling
2147instructions.
2148
f9f0e732 2149@item -W[lLiaprmfFsoRt]
5bbdf3d5 2150@itemx --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges,=pubtypes,=trace_info,=trace_abbrev,=trace_aranges,=gdb_index]
4de2ad99
L
2151@cindex DWARF
2152@cindex debug symbols
4cb93e3b
TG
2153Displays the contents of the debug sections in the file, if any are
2154present. If one of the optional letters or words follows the switch
2155then only data found in those specific sections will be dumped.
4de2ad99 2156
6f875884 2157Note that there is no single letter option to display the content of
5bbdf3d5 2158trace sections or .gdb_index.
6f875884 2159
fd2f0033
TT
2160Note: the output from the @option{=info} option can also be affected
2161by the options @option{--dwarf-depth} and @option{--dwarf-start}.
2162
2163@item --dwarf-depth=@var{n}
2164Limit the dump of the @code{.debug_info} section to @var{n} children.
2165This is only useful with @option{--dwarf=info}. The default is
2166to print all DIEs; the special value 0 for @var{n} will also have this
2167effect.
2168
2169With a non-zero value for @var{n}, DIEs at or deeper than @var{n}
2170levels will not be printed. The range for @var{n} is zero-based.
2171
2172@item --dwarf-start=@var{n}
2173Print only DIEs beginning with the DIE numbered @var{n}. This is only
2174useful with @option{--dwarf=info}.
2175
2176If specified, this option will suppress printing of any header
2177information and all DIEs before the DIE numbered @var{n}. Only
2178siblings and children of the specified DIE will be printed.
2179
2180This can be used in conjunction with @option{--dwarf-depth}.
2181
1dada9c5 2182@item -G
947ed062 2183@itemx --stabs
252b5132
RH
2184@cindex stab
2185@cindex .stab
2186@cindex debug symbols
2187@cindex ELF object file format
2188Display the full contents of any sections requested. Display the
2189contents of the .stab and .stab.index and .stab.excl sections from an
2190ELF file. This is only useful on systems (such as Solaris 2.0) in which
2191@code{.stab} debugging symbol-table entries are carried in an ELF
2192section. In most other file formats, debugging symbol-table entries are
c7c55b78 2193interleaved with linkage symbols, and are visible in the @option{--syms}
0285c67d
NC
2194output.
2195@ifclear man
2196For more information on stabs symbols, see @ref{Top,Stabs,Stabs
252b5132 2197Overview,stabs.info, The ``stabs'' debug format}.
0285c67d 2198@end ifclear
252b5132
RH
2199
2200@item --start-address=@var{address}
2201@cindex start-address
2202Start displaying data at the specified address. This affects the output
c7c55b78 2203of the @option{-d}, @option{-r} and @option{-s} options.
252b5132
RH
2204
2205@item --stop-address=@var{address}
2206@cindex stop-address
2207Stop displaying data at the specified address. This affects the output
c7c55b78 2208of the @option{-d}, @option{-r} and @option{-s} options.
252b5132
RH
2209
2210@item -t
2211@itemx --syms
2212@cindex symbol table entries, printing
2213Print the symbol table entries of the file.
a1039809
NC
2214This is similar to the information provided by the @samp{nm} program,
2215although the display format is different. The format of the output
2216depends upon the format of the file being dumped, but there are two main
2217types. One looks like this:
2218
2219@smallexample
2220[ 4](sec 3)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .bss
2221[ 6](sec 1)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 fred
2222@end smallexample
2223
2224where the number inside the square brackets is the number of the entry
2225in the symbol table, the @var{sec} number is the section number, the
2226@var{fl} value are the symbol's flag bits, the @var{ty} number is the
2227symbol's type, the @var{scl} number is the symbol's storage class and
2228the @var{nx} value is the number of auxilary entries associated with
2229the symbol. The last two fields are the symbol's value and its name.
2230
2231The other common output format, usually seen with ELF based files,
2232looks like this:
2233
2234@smallexample
223500000000 l d .bss 00000000 .bss
223600000000 g .text 00000000 fred
2237@end smallexample
2238
2239Here the first number is the symbol's value (sometimes refered to as
2240its address). The next field is actually a set of characters and
2241spaces indicating the flag bits that are set on the symbol. These
af3e16d9
NC
2242characters are described below. Next is the section with which the
2243symbol is associated or @emph{*ABS*} if the section is absolute (ie
2244not connected with any section), or @emph{*UND*} if the section is
2245referenced in the file being dumped, but not defined there.
2246
2247After the section name comes another field, a number, which for common
2248symbols is the alignment and for other symbol is the size. Finally
2249the symbol's name is displayed.
a1039809
NC
2250
2251The flag characters are divided into 7 groups as follows:
2252@table @code
2253@item l
2254@itemx g
3e7a7d11 2255@itemx u
a1039809 2256@itemx !
3e7a7d11
NC
2257The symbol is a local (l), global (g), unique global (u), neither
2258global nor local (a space) or both global and local (!). A
928a4139 2259symbol can be neither local or global for a variety of reasons, e.g.,
a1039809 2260because it is used for debugging, but it is probably an indication of
3e7a7d11
NC
2261a bug if it is ever both local and global. Unique global symbols are
2262a GNU extension to the standard set of ELF symbol bindings. For such
2263a symbol the dynamic linker will make sure that in the entire process
2264there is just one symbol with this name and type in use.
a1039809
NC
2265
2266@item w
2267The symbol is weak (w) or strong (a space).
2268
2269@item C
2270The symbol denotes a constructor (C) or an ordinary symbol (a space).
2271
2272@item W
2273The symbol is a warning (W) or a normal symbol (a space). A warning
2274symbol's name is a message to be displayed if the symbol following the
2275warning symbol is ever referenced.
2276
2277@item I
171191ba
NC
2278@item i
2279The symbol is an indirect reference to another symbol (I), a function
2280to be evaluated during reloc processing (i) or a normal symbol (a
2281space).
a1039809
NC
2282
2283@item d
2284@itemx D
2285The symbol is a debugging symbol (d) or a dynamic symbol (D) or a
2286normal symbol (a space).
2287
2288@item F
2289@item f
2290@item O
af3e16d9 2291The symbol is the name of a function (F) or a file (f) or an object
a1039809
NC
2292(O) or just a normal symbol (a space).
2293@end table
252b5132
RH
2294
2295@item -T
2296@itemx --dynamic-syms
2297@cindex dynamic symbol table entries, printing
2298Print the dynamic symbol table entries of the file. This is only
2299meaningful for dynamic objects, such as certain types of shared
2300libraries. This is similar to the information provided by the @samp{nm}
c7c55b78 2301program when given the @option{-D} (@option{--dynamic}) option.
252b5132 2302
3c9458e9
NC
2303@item --special-syms
2304When displaying symbols include those which the target considers to be
2305special in some way and which would not normally be of interest to the
2306user.
2307
947ed062
NC
2308@item -V
2309@itemx --version
c7c55b78 2310Print the version number of @command{objdump} and exit.
252b5132
RH
2311
2312@item -x
947ed062 2313@itemx --all-headers
252b5132
RH
2314@cindex all header information, object file
2315@cindex header information, all
2316Display all available header information, including the symbol table and
c7c55b78 2317relocation entries. Using @option{-x} is equivalent to specifying all of
04c34128 2318@option{-a -f -h -p -r -t}.
252b5132
RH
2319
2320@item -w
2321@itemx --wide
2322@cindex wide output, printing
2323Format some lines for output devices that have more than 80 columns.
31104126 2324Also do not truncate symbol names when they are displayed.
aefbdd67
BE
2325
2326@item -z
2c0c15f9 2327@itemx --disassemble-zeroes
aefbdd67
BE
2328Normally the disassembly output will skip blocks of zeroes. This
2329option directs the disassembler to disassemble those blocks, just like
2330any other data.
252b5132
RH
2331@end table
2332
0285c67d
NC
2333@c man end
2334
2335@ignore
2336@c man begin SEEALSO objdump
2337nm(1), readelf(1), and the Info entries for @file{binutils}.
2338@c man end
2339@end ignore
2340
252b5132
RH
2341@node ranlib
2342@chapter ranlib
2343
2344@kindex ranlib
2345@cindex archive contents
2346@cindex symbol index
2347
0285c67d
NC
2348@c man title ranlib generate index to archive.
2349
252b5132 2350@smallexample
0285c67d 2351@c man begin SYNOPSIS ranlib
b3364cb9 2352ranlib [@option{-DhHvVt}] @var{archive}
0285c67d 2353@c man end
252b5132
RH
2354@end smallexample
2355
0285c67d
NC
2356@c man begin DESCRIPTION ranlib
2357
c7c55b78 2358@command{ranlib} generates an index to the contents of an archive and
252b5132 2359stores it in the archive. The index lists each symbol defined by a
c1c0eb9e 2360member of an archive that is a relocatable object file.
252b5132
RH
2361
2362You may use @samp{nm -s} or @samp{nm --print-armap} to list this index.
2363
2364An archive with such an index speeds up linking to the library and
2365allows routines in the library to call each other without regard to
2366their placement in the archive.
2367
c7c55b78
NC
2368The @sc{gnu} @command{ranlib} program is another form of @sc{gnu} @command{ar}; running
2369@command{ranlib} is completely equivalent to executing @samp{ar -s}.
252b5132
RH
2370@xref{ar}.
2371
0285c67d
NC
2372@c man end
2373
2374@c man begin OPTIONS ranlib
2375
c7c55b78 2376@table @env
b3364cb9
RM
2377@item -h
2378@itemx -H
2379@itemx --help
2380Show usage information for @command{ranlib}.
2381
252b5132
RH
2382@item -v
2383@itemx -V
f20a759a 2384@itemx --version
c7c55b78 2385Show the version number of @command{ranlib}.
b14f9da0 2386
b3364cb9
RM
2387@item -D
2388@cindex deterministic archives
2389Operate in @emph{deterministic} mode. The symbol map archive member's
2390header will show zero for the UID, GID, and timestamp. When this
2391option is used, multiple runs will produce identical output files.
2392
b14f9da0
NC
2393@item -t
2394Update the timestamp of the symbol map of an archive.
252b5132
RH
2395@end table
2396
0285c67d
NC
2397@c man end
2398
2399@ignore
2400@c man begin SEEALSO ranlib
2401ar(1), nm(1), and the Info entries for @file{binutils}.
2402@c man end
2403@end ignore
2404
252b5132
RH
2405@node size
2406@chapter size
2407
2408@kindex size
2409@cindex section sizes
2410
0285c67d
NC
2411@c man title size list section sizes and total size.
2412
252b5132 2413@smallexample
0285c67d 2414@c man begin SYNOPSIS size
c7c55b78 2415size [@option{-A}|@option{-B}|@option{--format=}@var{compatibility}]
15c82623
NC
2416 [@option{--help}]
2417 [@option{-d}|@option{-o}|@option{-x}|@option{--radix=}@var{number}]
29422971 2418 [@option{--common}]
15c82623 2419 [@option{-t}|@option{--totals}]
c1c0eb9e 2420 [@option{--target=}@var{bfdname}] [@option{-V}|@option{--version}]
c7c55b78 2421 [@var{objfile}@dots{}]
0285c67d 2422@c man end
252b5132
RH
2423@end smallexample
2424
0285c67d
NC
2425@c man begin DESCRIPTION size
2426
c7c55b78 2427The @sc{gnu} @command{size} utility lists the section sizes---and the total
252b5132
RH
2428size---for each of the object or archive files @var{objfile} in its
2429argument list. By default, one line of output is generated for each
2430object file or each module in an archive.
2431
2432@var{objfile}@dots{} are the object files to be examined.
2433If none are specified, the file @code{a.out} will be used.
2434
0285c67d
NC
2435@c man end
2436
2437@c man begin OPTIONS size
2438
252b5132
RH
2439The command line options have the following meanings:
2440
c7c55b78 2441@table @env
252b5132
RH
2442@item -A
2443@itemx -B
2444@itemx --format=@var{compatibility}
c7c55b78 2445@cindex @command{size} display format
252b5132 2446Using one of these options, you can choose whether the output from @sc{gnu}
c7c55b78
NC
2447@command{size} resembles output from System V @command{size} (using @option{-A},
2448or @option{--format=sysv}), or Berkeley @command{size} (using @option{-B}, or
2449@option{--format=berkeley}). The default is the one-line format similar to
c1c0eb9e 2450Berkeley's.
252b5132
RH
2451@c Bonus for doc-source readers: you can also say --format=strange (or
2452@c anything else that starts with 's') for sysv, and --format=boring (or
2453@c anything else that starts with 'b') for Berkeley.
2454
2455Here is an example of the Berkeley (default) format of output from
c1c0eb9e 2456@command{size}:
252b5132 2457@smallexample
f20a759a 2458$ size --format=Berkeley ranlib size
252b5132
RH
2459text data bss dec hex filename
2460294880 81920 11592 388392 5ed28 ranlib
2461294880 81920 11888 388688 5ee50 size
2462@end smallexample
2463
2464@noindent
2465This is the same data, but displayed closer to System V conventions:
2466
2467@smallexample
f20a759a 2468$ size --format=SysV ranlib size
252b5132
RH
2469ranlib :
2470section size addr
c1c0eb9e
RM
2471.text 294880 8192
2472.data 81920 303104
2473.bss 11592 385024
2474Total 388392
252b5132
RH
2475
2476
2477size :
2478section size addr
c1c0eb9e
RM
2479.text 294880 8192
2480.data 81920 303104
2481.bss 11888 385024
2482Total 388688
252b5132
RH
2483@end smallexample
2484
2485@item --help
2486Show a summary of acceptable arguments and options.
2487
2488@item -d
2489@itemx -o
2490@itemx -x
2491@itemx --radix=@var{number}
c7c55b78 2492@cindex @command{size} number format
252b5132
RH
2493@cindex radix for section sizes
2494Using one of these options, you can control whether the size of each
c7c55b78
NC
2495section is given in decimal (@option{-d}, or @option{--radix=10}); octal
2496(@option{-o}, or @option{--radix=8}); or hexadecimal (@option{-x}, or
2497@option{--radix=16}). In @option{--radix=@var{number}}, only the three
252b5132 2498values (8, 10, 16) are supported. The total size is always given in two
c7c55b78
NC
2499radices; decimal and hexadecimal for @option{-d} or @option{-x} output, or
2500octal and hexadecimal if you're using @option{-o}.
252b5132 2501
29422971
AM
2502@item --common
2503Print total size of common symbols in each file. When using Berkeley
2504format these are included in the bss size.
2505
15c82623
NC
2506@item -t
2507@itemx --totals
2508Show totals of all objects listed (Berkeley format listing mode only).
2509
252b5132
RH
2510@item --target=@var{bfdname}
2511@cindex object code format
2512Specify that the object-code format for @var{objfile} is
c7c55b78 2513@var{bfdname}. This option may not be necessary; @command{size} can
252b5132
RH
2514automatically recognize many formats.
2515@xref{Target Selection}, for more information.
2516
2517@item -V
2518@itemx --version
c7c55b78 2519Display the version number of @command{size}.
252b5132
RH
2520@end table
2521
0285c67d
NC
2522@c man end
2523
2524@ignore
2525@c man begin SEEALSO size
2526ar(1), objdump(1), readelf(1), and the Info entries for @file{binutils}.
2527@c man end
2528@end ignore
2529
252b5132
RH
2530@node strings
2531@chapter strings
2532@kindex strings
2533@cindex listings strings
2534@cindex printing strings
2535@cindex strings, printing
2536
0285c67d
NC
2537@c man title strings print the strings of printable characters in files.
2538
252b5132 2539@smallexample
0285c67d 2540@c man begin SYNOPSIS strings
ffbe5983 2541strings [@option{-afovV}] [@option{-}@var{min-len}]
d132876a
NC
2542 [@option{-n} @var{min-len}] [@option{--bytes=}@var{min-len}]
2543 [@option{-t} @var{radix}] [@option{--radix=}@var{radix}]
2544 [@option{-e} @var{encoding}] [@option{--encoding=}@var{encoding}]
2545 [@option{-}] [@option{--all}] [@option{--print-file-name}]
3bf31ec9 2546 [@option{-T} @var{bfdname}] [@option{--target=}@var{bfdname}]
c7c55b78 2547 [@option{--help}] [@option{--version}] @var{file}@dots{}
0285c67d 2548@c man end
252b5132
RH
2549@end smallexample
2550
0285c67d
NC
2551@c man begin DESCRIPTION strings
2552
c7c55b78 2553For each @var{file} given, @sc{gnu} @command{strings} prints the printable
252b5132
RH
2554character sequences that are at least 4 characters long (or the number
2555given with the options below) and are followed by an unprintable
2556character. By default, it only prints the strings from the initialized
2557and loaded sections of object files; for other types of files, it prints
2558the strings from the whole file.
2559
c7c55b78 2560@command{strings} is mainly useful for determining the contents of non-text
252b5132
RH
2561files.
2562
0285c67d
NC
2563@c man end
2564
2565@c man begin OPTIONS strings
2566
c7c55b78 2567@table @env
252b5132
RH
2568@item -a
2569@itemx --all
2570@itemx -
2571Do not scan only the initialized and loaded sections of object files;
2572scan the whole files.
2573
2574@item -f
2575@itemx --print-file-name
2576Print the name of the file before each string.
2577
2578@item --help
2579Print a summary of the program usage on the standard output and exit.
2580
2581@item -@var{min-len}
2582@itemx -n @var{min-len}
2583@itemx --bytes=@var{min-len}
2584Print sequences of characters that are at least @var{min-len} characters
2585long, instead of the default 4.
2586
2587@item -o
c7c55b78 2588Like @samp{-t o}. Some other versions of @command{strings} have @option{-o}
252b5132
RH
2589act like @samp{-t d} instead. Since we can not be compatible with both
2590ways, we simply chose one.
2591
2592@item -t @var{radix}
2593@itemx --radix=@var{radix}
2594Print the offset within the file before each string. The single
2595character argument specifies the radix of the offset---@samp{o} for
2596octal, @samp{x} for hexadecimal, or @samp{d} for decimal.
2597
d132876a
NC
2598@item -e @var{encoding}
2599@itemx --encoding=@var{encoding}
2600Select the character encoding of the strings that are to be found.
8745eafa
NC
2601Possible values for @var{encoding} are: @samp{s} = single-7-bit-byte
2602characters (ASCII, ISO 8859, etc., default), @samp{S} =
2603single-8-bit-byte characters, @samp{b} = 16-bit bigendian, @samp{l} =
260416-bit littleendian, @samp{B} = 32-bit bigendian, @samp{L} = 32-bit
830bf75c
NC
2605littleendian. Useful for finding wide character strings. (@samp{l}
2606and @samp{b} apply to, for example, Unicode UTF-16/UCS-2 encodings).
d132876a 2607
3bf31ec9
NC
2608@item -T @var{bfdname}
2609@itemx --target=@var{bfdname}
252b5132
RH
2610@cindex object code format
2611Specify an object code format other than your system's default format.
2612@xref{Target Selection}, for more information.
2613
2614@item -v
ffbe5983 2615@itemx -V
252b5132
RH
2616@itemx --version
2617Print the program version number on the standard output and exit.
2618@end table
2619
0285c67d
NC
2620@c man end
2621
2622@ignore
2623@c man begin SEEALSO strings
2624ar(1), nm(1), objdump(1), ranlib(1), readelf(1)
2625and the Info entries for @file{binutils}.
2626@c man end
2627@end ignore
2628
252b5132
RH
2629@node strip
2630@chapter strip
2631
2632@kindex strip
2633@cindex removing symbols
2634@cindex discarding symbols
2635@cindex symbols, discarding
2636
0285c67d
NC
2637@c man title strip Discard symbols from object files.
2638
252b5132 2639@smallexample
0285c67d 2640@c man begin SYNOPSIS strip
2593f09a
NC
2641strip [@option{-F} @var{bfdname} |@option{--target=}@var{bfdname}]
2642 [@option{-I} @var{bfdname} |@option{--input-target=}@var{bfdname}]
2643 [@option{-O} @var{bfdname} |@option{--output-target=}@var{bfdname}]
2644 [@option{-s}|@option{--strip-all}]
2645 [@option{-S}|@option{-g}|@option{-d}|@option{--strip-debug}]
2646 [@option{-K} @var{symbolname} |@option{--keep-symbol=}@var{symbolname}]
2647 [@option{-N} @var{symbolname} |@option{--strip-symbol=}@var{symbolname}]
5fe11841 2648 [@option{-w}|@option{--wildcard}]
2593f09a
NC
2649 [@option{-x}|@option{--discard-all}] [@option{-X} |@option{--discard-locals}]
2650 [@option{-R} @var{sectionname} |@option{--remove-section=}@var{sectionname}]
2651 [@option{-o} @var{file}] [@option{-p}|@option{--preserve-dates}]
1637cd90 2652 [@option{--keep-file-symbols}]
ed1653a7 2653 [@option{--only-keep-debug}]
7c29036b
NC
2654 [@option{-v} |@option{--verbose}] [@option{-V}|@option{--version}]
2655 [@option{--help}] [@option{--info}]
252b5132 2656 @var{objfile}@dots{}
0285c67d 2657@c man end
252b5132
RH
2658@end smallexample
2659
0285c67d
NC
2660@c man begin DESCRIPTION strip
2661
c7c55b78 2662@sc{gnu} @command{strip} discards all symbols from object files
252b5132
RH
2663@var{objfile}. The list of object files may include archives.
2664At least one object file must be given.
2665
c7c55b78 2666@command{strip} modifies the files named in its argument,
252b5132
RH
2667rather than writing modified copies under different names.
2668
0285c67d
NC
2669@c man end
2670
2671@c man begin OPTIONS strip
2672
c7c55b78 2673@table @env
252b5132
RH
2674@item -F @var{bfdname}
2675@itemx --target=@var{bfdname}
2676Treat the original @var{objfile} as a file with the object
2677code format @var{bfdname}, and rewrite it in the same format.
2678@xref{Target Selection}, for more information.
2679
2680@item --help
c7c55b78 2681Show a summary of the options to @command{strip} and exit.
252b5132 2682
7c29036b
NC
2683@item --info
2684Display a list showing all architectures and object formats available.
2685
947ed062 2686@item -I @var{bfdname}
252b5132
RH
2687@itemx --input-target=@var{bfdname}
2688Treat the original @var{objfile} as a file with the object
2689code format @var{bfdname}.
2690@xref{Target Selection}, for more information.
2691
2692@item -O @var{bfdname}
2693@itemx --output-target=@var{bfdname}
2694Replace @var{objfile} with a file in the output format @var{bfdname}.
2695@xref{Target Selection}, for more information.
2696
2697@item -R @var{sectionname}
2698@itemx --remove-section=@var{sectionname}
2699Remove any section named @var{sectionname} from the output file. This
2700option may be given more than once. Note that using this option
2701inappropriately may make the output file unusable.
2702
2703@item -s
2704@itemx --strip-all
2705Remove all symbols.
2706
2707@item -g
2708@itemx -S
15c82623 2709@itemx -d
252b5132
RH
2710@itemx --strip-debug
2711Remove debugging symbols only.
2712
2713@item --strip-unneeded
2714Remove all symbols that are not needed for relocation processing.
2715
2716@item -K @var{symbolname}
2717@itemx --keep-symbol=@var{symbolname}
e7f918ad
NC
2718When stripping symbols, keep symbol @var{symbolname} even if it would
2719normally be stripped. This option may be given more than once.
252b5132
RH
2720
2721@item -N @var{symbolname}
2722@itemx --strip-symbol=@var{symbolname}
2723Remove symbol @var{symbolname} from the source file. This option may be
2724given more than once, and may be combined with strip options other than
c7c55b78 2725@option{-K}.
252b5132
RH
2726
2727@item -o @var{file}
2728Put the stripped output in @var{file}, rather than replacing the
2729existing file. When this argument is used, only one @var{objfile}
2730argument may be specified.
2731
2732@item -p
2733@itemx --preserve-dates
2734Preserve the access and modification dates of the file.
2735
5fe11841
NC
2736@item -w
2737@itemx --wildcard
2738Permit regular expressions in @var{symbolname}s used in other command
2739line options. The question mark (?), asterisk (*), backslash (\) and
2740square brackets ([]) operators can be used anywhere in the symbol
2741name. If the first character of the symbol name is the exclamation
2742point (!) then the sense of the switch is reversed for that symbol.
2743For example:
2744
2745@smallexample
2746 -w -K !foo -K fo*
2747@end smallexample
2748
2749would cause strip to only keep symbols that start with the letters
2750``fo'', but to discard the symbol ``foo''.
2751
252b5132
RH
2752@item -x
2753@itemx --discard-all
2754Remove non-global symbols.
2755
2756@item -X
2757@itemx --discard-locals
2758Remove compiler-generated local symbols.
2759(These usually start with @samp{L} or @samp{.}.)
2760
1637cd90
JB
2761@item --keep-file-symbols
2762When stripping a file, perhaps with @option{--strip-debug} or
2763@option{--strip-unneeded}, retain any symbols specifying source file names,
2764which would otherwise get stripped.
2765
ed1653a7 2766@item --only-keep-debug
c1c0eb9e
RM
2767Strip a file, removing contents of any sections that would not be
2768stripped by @option{--strip-debug} and leaving the debugging sections
2769intact. In ELF files, this preserves all note sections in the output.
ed1653a7
NC
2770
2771The intention is that this option will be used in conjunction with
2772@option{--add-gnu-debuglink} to create a two part executable. One a
2773stripped binary which will occupy less space in RAM and in a
2774distribution and the second a debugging information file which is only
2775needed if debugging abilities are required. The suggested procedure
2776to create these files is as follows:
2777
2778@enumerate
2779@item Link the executable as normal. Assuming that is is called
2780@code{foo} then...
2781@item Run @code{objcopy --only-keep-debug foo foo.dbg} to
2782create a file containing the debugging info.
2783@item Run @code{objcopy --strip-debug foo} to create a
2784stripped executable.
2785@item Run @code{objcopy --add-gnu-debuglink=foo.dbg foo}
2786to add a link to the debugging info into the stripped executable.
2787@end enumerate
2788
928a4139 2789Note---the choice of @code{.dbg} as an extension for the debug info
ed1653a7
NC
2790file is arbitrary. Also the @code{--only-keep-debug} step is
2791optional. You could instead do this:
2792
2793@enumerate
2794@item Link the executable as normal.
928a4139 2795@item Copy @code{foo} to @code{foo.full}
ed1653a7
NC
2796@item Run @code{strip --strip-debug foo}
2797@item Run @code{objcopy --add-gnu-debuglink=foo.full foo}
2798@end enumerate
2799
928a4139 2800i.e., the file pointed to by the @option{--add-gnu-debuglink} can be the
ed1653a7
NC
2801full executable. It does not have to be a file created by the
2802@option{--only-keep-debug} switch.
2803
928a4139 2804Note---this switch is only intended for use on fully linked files. It
91bb255c
NC
2805does not make sense to use it on object files where the debugging
2806information may be incomplete. Besides the gnu_debuglink feature
2807currently only supports the presence of one filename containing
2808debugging information, not multiple filenames on a one-per-object-file
2809basis.
2810
252b5132
RH
2811@item -V
2812@itemx --version
c7c55b78 2813Show the version number for @command{strip}.
252b5132
RH
2814
2815@item -v
2816@itemx --verbose
2817Verbose output: list all object files modified. In the case of
2818archives, @samp{strip -v} lists all members of the archive.
2819@end table
2820
0285c67d
NC
2821@c man end
2822
2823@ignore
2824@c man begin SEEALSO strip
2825the Info entries for @file{binutils}.
2826@c man end
2827@end ignore
2828
30fd33bb 2829@node c++filt, addr2line, elfedit, Top
252b5132
RH
2830@chapter c++filt
2831
2832@kindex c++filt
2833@cindex demangling C++ symbols
2834
0285c67d
NC
2835@c man title cxxfilt Demangle C++ and Java symbols.
2836
252b5132 2837@smallexample
0285c67d 2838@c man begin SYNOPSIS cxxfilt
c7c55b78 2839c++filt [@option{-_}|@option{--strip-underscores}]
c7c55b78 2840 [@option{-n}|@option{--no-strip-underscores}]
4e48c9dd 2841 [@option{-p}|@option{--no-params}]
ec948987 2842 [@option{-t}|@option{--types}]
cbf1f5df 2843 [@option{-i}|@option{--no-verbose}]
c7c55b78
NC
2844 [@option{-s} @var{format}|@option{--format=}@var{format}]
2845 [@option{--help}] [@option{--version}] [@var{symbol}@dots{}]
0285c67d 2846@c man end
252b5132
RH
2847@end smallexample
2848
0285c67d
NC
2849@c man begin DESCRIPTION cxxfilt
2850
9d51cc66 2851@kindex cxxfilt
ec948987
NC
2852The C++ and Java languages provide function overloading, which means
2853that you can write many functions with the same name, providing that
2854each function takes parameters of different types. In order to be
2855able to distinguish these similarly named functions C++ and Java
2856encode them into a low-level assembler name which uniquely identifies
2857each different version. This process is known as @dfn{mangling}. The
2858@command{c++filt}
c1c0eb9e 2859@footnote{MS-DOS does not allow @kbd{+} characters in file names, so on
195a97ce 2860MS-DOS this program is named @command{CXXFILT}.}
9d51cc66 2861program does the inverse mapping: it decodes (@dfn{demangles}) low-level
ec948987 2862names into user-level names so that they can be read.
252b5132
RH
2863
2864Every alphanumeric word (consisting of letters, digits, underscores,
cbf1f5df
NC
2865dollars, or periods) seen in the input is a potential mangled name.
2866If the name decodes into a C++ name, the C++ name replaces the
ec948987
NC
2867low-level name in the output, otherwise the original word is output.
2868In this way you can pass an entire assembler source file, containing
2869mangled names, through @command{c++filt} and see the same source file
2870containing demangled names.
252b5132 2871
ec948987
NC
2872You can also use @command{c++filt} to decipher individual symbols by
2873passing them on the command line:
252b5132
RH
2874
2875@example
2876c++filt @var{symbol}
2877@end example
2878
c7c55b78 2879If no @var{symbol} arguments are given, @command{c++filt} reads symbol
ec948987
NC
2880names from the standard input instead. All the results are printed on
2881the standard output. The difference between reading names from the
2882command line versus reading names from the standard input is that
2883command line arguments are expected to be just mangled names and no
b45619c0 2884checking is performed to separate them from surrounding text. Thus
ec948987
NC
2885for example:
2886
2887@smallexample
2888c++filt -n _Z1fv
2889@end smallexample
2890
2891will work and demangle the name to ``f()'' whereas:
2892
2893@smallexample
2894c++filt -n _Z1fv,
2895@end smallexample
2896
2897will not work. (Note the extra comma at the end of the mangled
2898name which makes it invalid). This command however will work:
2899
2900@smallexample
2901echo _Z1fv, | c++filt -n
2902@end smallexample
2903
928a4139 2904and will display ``f(),'', i.e., the demangled name followed by a
ec948987
NC
2905trailing comma. This behaviour is because when the names are read
2906from the standard input it is expected that they might be part of an
2907assembler source file where there might be extra, extraneous
928a4139 2908characters trailing after a mangled name. For example:
ec948987
NC
2909
2910@smallexample
2911 .type _Z1fv, @@function
2912@end smallexample
252b5132 2913
0285c67d
NC
2914@c man end
2915
2916@c man begin OPTIONS cxxfilt
2917
c7c55b78 2918@table @env
252b5132
RH
2919@item -_
2920@itemx --strip-underscores
2921On some systems, both the C and C++ compilers put an underscore in front
2922of every name. For example, the C name @code{foo} gets the low-level
2923name @code{_foo}. This option removes the initial underscore. Whether
c7c55b78 2924@command{c++filt} removes the underscore by default is target dependent.
252b5132 2925
252b5132
RH
2926@item -n
2927@itemx --no-strip-underscores
2928Do not remove the initial underscore.
2929
4e48c9dd
ILT
2930@item -p
2931@itemx --no-params
2932When demangling the name of a function, do not display the types of
2933the function's parameters.
2934
cbf1f5df 2935@item -t
ec948987
NC
2936@itemx --types
2937Attempt to demangle types as well as function names. This is disabled
2938by default since mangled types are normally only used internally in
928a4139 2939the compiler, and they can be confused with non-mangled names. For example,
ec948987
NC
2940a function called ``a'' treated as a mangled type name would be
2941demangled to ``signed char''.
cbf1f5df
NC
2942
2943@item -i
2944@itemx --no-verbose
2945Do not include implementation details (if any) in the demangled
2946output.
2947
252b5132
RH
2948@item -s @var{format}
2949@itemx --format=@var{format}
947ed062
NC
2950@command{c++filt} can decode various methods of mangling, used by
2951different compilers. The argument to this option selects which
252b5132
RH
2952method it uses:
2953
2954@table @code
947ed062
NC
2955@item auto
2956Automatic selection based on executable (the default method)
252b5132 2957@item gnu
947ed062 2958the one used by the @sc{gnu} C++ compiler (g++)
252b5132 2959@item lucid
947ed062 2960the one used by the Lucid compiler (lcc)
252b5132
RH
2961@item arm
2962the one specified by the C++ Annotated Reference Manual
2963@item hp
947ed062 2964the one used by the HP compiler (aCC)
252b5132
RH
2965@item edg
2966the one used by the EDG compiler
b5e2a4f3 2967@item gnu-v3
947ed062
NC
2968the one used by the @sc{gnu} C++ compiler (g++) with the V3 ABI.
2969@item java
2970the one used by the @sc{gnu} Java compiler (gcj)
2971@item gnat
2972the one used by the @sc{gnu} Ada compiler (GNAT).
252b5132
RH
2973@end table
2974
2975@item --help
c7c55b78 2976Print a summary of the options to @command{c++filt} and exit.
252b5132
RH
2977
2978@item --version
c7c55b78 2979Print the version number of @command{c++filt} and exit.
252b5132
RH
2980@end table
2981
0285c67d
NC
2982@c man end
2983
2984@ignore
2985@c man begin SEEALSO cxxfilt
2986the Info entries for @file{binutils}.
2987@c man end
2988@end ignore
2989
252b5132 2990@quotation
c7c55b78 2991@emph{Warning:} @command{c++filt} is a new utility, and the details of its
252b5132 2992user interface are subject to change in future releases. In particular,
b45619c0 2993a command-line option may be required in the future to decode a name
c1c0eb9e 2994passed as an argument on the command line; in other words,
252b5132
RH
2995
2996@example
2997c++filt @var{symbol}
2998@end example
2999
3000@noindent
3001may in a future release become
3002
3003@example
3004c++filt @var{option} @var{symbol}
3005@end example
3006@end quotation
3007
3008@node addr2line
3009@chapter addr2line
3010
3011@kindex addr2line
3012@cindex address to file name and line number
3013
0285c67d
NC
3014@c man title addr2line convert addresses into file names and line numbers.
3015
252b5132 3016@smallexample
0285c67d 3017@c man begin SYNOPSIS addr2line
be6f6493
TG
3018addr2line [@option{-a}|@option{--addresses}]
3019 [@option{-b} @var{bfdname}|@option{--target=}@var{bfdname}]
bf44dd74 3020 [@option{-C}|@option{--demangle}[=@var{style}]]
c7c55b78
NC
3021 [@option{-e} @var{filename}|@option{--exe=}@var{filename}]
3022 [@option{-f}|@option{--functions}] [@option{-s}|@option{--basename}]
0c552dc1 3023 [@option{-i}|@option{--inlines}]
68cdf72f 3024 [@option{-p}|@option{--pretty-print}]
c5f8c388 3025 [@option{-j}|@option{--section=}@var{name}]
c7c55b78
NC
3026 [@option{-H}|@option{--help}] [@option{-V}|@option{--version}]
3027 [addr addr @dots{}]
0285c67d 3028@c man end
252b5132
RH
3029@end smallexample
3030
0285c67d
NC
3031@c man begin DESCRIPTION addr2line
3032
c5f8c388
EB
3033@command{addr2line} translates addresses into file names and line numbers.
3034Given an address in an executable or an offset in a section of a relocatable
3035object, it uses the debugging information to figure out which file name and
3036line number are associated with it.
252b5132 3037
c5f8c388
EB
3038The executable or relocatable object to use is specified with the @option{-e}
3039option. The default is the file @file{a.out}. The section in the relocatable
3040object to use is specified with the @option{-j} option.
252b5132 3041
c7c55b78 3042@command{addr2line} has two modes of operation.
252b5132
RH
3043
3044In the first, hexadecimal addresses are specified on the command line,
c7c55b78 3045and @command{addr2line} displays the file name and line number for each
252b5132
RH
3046address.
3047
c7c55b78 3048In the second, @command{addr2line} reads hexadecimal addresses from
252b5132 3049standard input, and prints the file name and line number for each
c7c55b78 3050address on standard output. In this mode, @command{addr2line} may be used
252b5132
RH
3051in a pipe to convert dynamically chosen addresses.
3052
3053The format of the output is @samp{FILENAME:LINENO}. The file name and
9cf03b7e
NC
3054line number for each input address is printed on separate lines.
3055
3056If the @option{-f} option is used, then each @samp{FILENAME:LINENO}
3057line is preceded by @samp{FUNCTIONNAME} which is the name of the
3058function containing the address.
3059
3060If the @option{-i} option is used and the code at the given address is
3061present there because of inlining by the compiler then the
3062@samp{@{FUNCTIONNAME@} FILENAME:LINENO} information for the inlining
3063function will be displayed afterwards. This continues recursively
3064until there is no more inlining to report.
3065
3066If the @option{-a} option is used then the output is prefixed by the
3067input address.
3068
3069If the @option{-p} option is used then the output for each input
3070address is displayed on one, possibly quite long, line. If
3071@option{-p} is not used then the output is broken up into multiple
3072lines, based on the paragraphs above.
252b5132
RH
3073
3074If the file name or function name can not be determined,
c7c55b78
NC
3075@command{addr2line} will print two question marks in their place. If the
3076line number can not be determined, @command{addr2line} will print 0.
252b5132 3077
0285c67d
NC
3078@c man end
3079
3080@c man begin OPTIONS addr2line
3081
252b5132
RH
3082The long and short forms of options, shown here as alternatives, are
3083equivalent.
3084
c7c55b78 3085@table @env
be6f6493
TG
3086@item -a
3087@itemx --addresses
9cf03b7e 3088Display the address before the function name, file and line number
be6f6493
TG
3089information. The address is printed with a @samp{0x} prefix to easily
3090identify it.
3091
252b5132
RH
3092@item -b @var{bfdname}
3093@itemx --target=@var{bfdname}
3094@cindex object code format
3095Specify that the object-code format for the object files is
3096@var{bfdname}.
3097
3098@item -C
28c309a2 3099@itemx --demangle[=@var{style}]
252b5132
RH
3100@cindex demangling in objdump
3101Decode (@dfn{demangle}) low-level symbol names into user-level names.
3102Besides removing any initial underscore prepended by the system, this
28c309a2 3103makes C++ function names readable. Different compilers have different
c1c0eb9e
RM
3104mangling styles. The optional demangling style argument can be used to
3105choose an appropriate demangling style for your compiler. @xref{c++filt},
28c309a2 3106for more information on demangling.
252b5132
RH
3107
3108@item -e @var{filename}
3109@itemx --exe=@var{filename}
3110Specify the name of the executable for which addresses should be
3111translated. The default file is @file{a.out}.
3112
3113@item -f
3114@itemx --functions
3115Display function names as well as file and line number information.
3116
3117@item -s
3118@itemx --basenames
3119Display only the base of each file name.
0c552dc1
FF
3120
3121@item -i
3122@itemx --inlines
3123If the address belongs to a function that was inlined, the source
3124information for all enclosing scopes back to the first non-inlined
3125function will also be printed. For example, if @code{main} inlines
3126@code{callee1} which inlines @code{callee2}, and address is from
3127@code{callee2}, the source information for @code{callee1} and @code{main}
3128will also be printed.
c5f8c388
EB
3129
3130@item -j
3131@itemx --section
3132Read offsets relative to the specified section instead of absolute addresses.
68cdf72f
TG
3133
3134@item -p
3135@itemx --pretty-print
3136Make the output more human friendly: each location are printed on one line.
3137If option @option{-i} is specified, lines for all enclosing scopes are
3138prefixed with @samp{(inlined by)}.
e107c42f 3139@end table
252b5132 3140
0285c67d
NC
3141@c man end
3142
3143@ignore
3144@c man begin SEEALSO addr2line
3145Info entries for @file{binutils}.
3146@c man end
3147@end ignore
3148
252b5132
RH
3149@node nlmconv
3150@chapter nlmconv
3151
c7c55b78 3152@command{nlmconv} converts a relocatable object file into a NetWare
252b5132
RH
3153Loadable Module.
3154
3155@ignore
c7c55b78 3156@command{nlmconv} currently works with @samp{i386} object
252b5132
RH
3157files in @code{coff}, @sc{elf}, or @code{a.out} format, and @sc{SPARC}
3158object files in @sc{elf}, or @code{a.out} format@footnote{
c7c55b78 3159@command{nlmconv} should work with any @samp{i386} or @sc{sparc} object
252b5132
RH
3160format in the Binary File Descriptor library. It has only been tested
3161with the above formats.}.
3162@end ignore
3163
3164@quotation
c7c55b78 3165@emph{Warning:} @command{nlmconv} is not always built as part of the binary
252b5132
RH
3166utilities, since it is only useful for NLM targets.
3167@end quotation
3168
0285c67d
NC
3169@c man title nlmconv converts object code into an NLM.
3170
252b5132 3171@smallexample
0285c67d 3172@c man begin SYNOPSIS nlmconv
c7c55b78
NC
3173nlmconv [@option{-I} @var{bfdname}|@option{--input-target=}@var{bfdname}]
3174 [@option{-O} @var{bfdname}|@option{--output-target=}@var{bfdname}]
3175 [@option{-T} @var{headerfile}|@option{--header-file=}@var{headerfile}]
3176 [@option{-d}|@option{--debug}] [@option{-l} @var{linker}|@option{--linker=}@var{linker}]
3177 [@option{-h}|@option{--help}] [@option{-V}|@option{--version}]
252b5132 3178 @var{infile} @var{outfile}
0285c67d 3179@c man end
252b5132
RH
3180@end smallexample
3181
0285c67d
NC
3182@c man begin DESCRIPTION nlmconv
3183
c7c55b78 3184@command{nlmconv} converts the relocatable @samp{i386} object file
252b5132
RH
3185@var{infile} into the NetWare Loadable Module @var{outfile}, optionally
3186reading @var{headerfile} for NLM header information. For instructions
3187on writing the NLM command file language used in header files, see the
3188@samp{linkers} section, @samp{NLMLINK} in particular, of the @cite{NLM
3189Development and Tools Overview}, which is part of the NLM Software
3190Developer's Kit (``NLM SDK''), available from Novell, Inc.
c7c55b78 3191@command{nlmconv} uses the @sc{gnu} Binary File Descriptor library to read
0285c67d
NC
3192@var{infile};
3193@ifclear man
3194see @ref{BFD,,BFD,ld.info,Using LD}, for more information.
3195@end ifclear
252b5132 3196
c7c55b78 3197@command{nlmconv} can perform a link step. In other words, you can list
252b5132
RH
3198more than one object file for input if you list them in the definitions
3199file (rather than simply specifying one input file on the command line).
c7c55b78 3200In this case, @command{nlmconv} calls the linker for you.
252b5132 3201
0285c67d
NC
3202@c man end
3203
3204@c man begin OPTIONS nlmconv
3205
c7c55b78 3206@table @env
252b5132
RH
3207@item -I @var{bfdname}
3208@itemx --input-target=@var{bfdname}
c7c55b78 3209Object format of the input file. @command{nlmconv} can usually determine
252b5132
RH
3210the format of a given file (so no default is necessary).
3211@xref{Target Selection}, for more information.
3212
3213@item -O @var{bfdname}
3214@itemx --output-target=@var{bfdname}
c7c55b78 3215Object format of the output file. @command{nlmconv} infers the output
252b5132
RH
3216format based on the input format, e.g. for a @samp{i386} input file the
3217output format is @samp{nlm32-i386}.
3218@xref{Target Selection}, for more information.
3219
3220@item -T @var{headerfile}
3221@itemx --header-file=@var{headerfile}
3222Reads @var{headerfile} for NLM header information. For instructions on
3223writing the NLM command file language used in header files, see@ see the
3224@samp{linkers} section, of the @cite{NLM Development and Tools
3225Overview}, which is part of the NLM Software Developer's Kit, available
3226from Novell, Inc.
3227
3228@item -d
3229@itemx --debug
c7c55b78 3230Displays (on standard error) the linker command line used by @command{nlmconv}.
252b5132
RH
3231
3232@item -l @var{linker}
3233@itemx --linker=@var{linker}
3234Use @var{linker} for any linking. @var{linker} can be an absolute or a
3235relative pathname.
3236
3237@item -h
3238@itemx --help
3239Prints a usage summary.
3240
3241@item -V
3242@itemx --version
c7c55b78 3243Prints the version number for @command{nlmconv}.
252b5132
RH
3244@end table
3245
0285c67d
NC
3246@c man end
3247
3248@ignore
3249@c man begin SEEALSO nlmconv
3250the Info entries for @file{binutils}.
692ed3e7
NC
3251@c man end
3252@end ignore
3253
3254@node windmc
3255@chapter windmc
3256
3257@command{windmc} may be used to generator Windows message resources.
3258
3259@quotation
3260@emph{Warning:} @command{windmc} is not always built as part of the binary
3261utilities, since it is only useful for Windows targets.
3262@end quotation
3263
3264@c man title windmc generates Windows message resources.
3265
3266@smallexample
826fec2f 3267@c man begin SYNOPSIS windmc
692ed3e7
NC
3268windmc [options] input-file
3269@c man end
3270@end smallexample
3271
3272@c man begin DESCRIPTION windmc
3273
3274@command{windmc} reads message definitions from an input file (.mc) and
3275translate them into a set of output files. The output files may be of
3276four kinds:
3277
3278@table @code
3279@item h
3280A C header file containing the message definitions.
3281
3282@item rc
3283A resource file compilable by the @command{windres} tool.
3284
3285@item bin
3286One or more binary files containing the resource data for a specific
3287message language.
3288
3289@item dbg
3290A C include file that maps message id's to their symbolic name.
3291@end table
3292
3293The exact description of these different formats is available in
3294documentation from Microsoft.
3295
3296When @command{windmc} converts from the @code{mc} format to the @code{bin}
3297format, @code{rc}, @code{h}, and optional @code{dbg} it is acting like the
3298Windows Message Compiler.
3299
3300@c man end
3301
3302@c man begin OPTIONS windmc
3303
3304@table @env
3305@item -a
3306@itemx --ascii_in
826fec2f 3307Specifies that the input file specified is ASCII. This is the default
692ed3e7
NC
3308behaviour.
3309
3310@item -A
3311@itemx --ascii_out
826fec2f 3312Specifies that messages in the output @code{bin} files should be in ASCII
692ed3e7
NC
3313format.
3314
3315@item -b
3316@itemx --binprefix
3317Specifies that @code{bin} filenames should have to be prefixed by the
3318basename of the source file.
3319
3320@item -c
3321@itemx --customflag
3322Sets the customer bit in all message id's.
3323
3324@item -C @var{codepage}
3325@itemx --codepage_in @var{codepage}
3326Sets the default codepage to be used to convert input file to UTF16. The
3327default is ocdepage 1252.
3328
3329@item -d
3330@itemx --decimal_values
3331Outputs the constants in the header file in decimal. Default is using
3332hexadecimal output.
3333
3334@item -e @var{ext}
3335@itemx --extension @var{ext}
3336The extension for the header file. The default is .h extension.
3337
3338@item -F @var{target}
3339@itemx --target @var{target}
3340Specify the BFD format to use for a bin file as output. This
3341is a BFD target name; you can use the @option{--help} option to see a list
3342of supported targets. Normally @command{windmc} will use the default
3343format, which is the first one listed by the @option{--help} option.
3344@ifclear man
3345@ref{Target Selection}.
3346@end ifclear
3347
3348@item -h @var{path}
3349@itemx --headerdir @var{path}
3350The target directory of the generated header file. The default is the
3351current directory.
3352
3353@item -H
3354@itemx --help
3355Displays a list of command line options and then exits.
3356
3357@item -m @var{characters}
3358@itemx --maxlength @var{characters}
3359Instructs @command{windmc} to generate a warning if the length
3360of any message exceeds the number specified.
3361
3362@item -n
3363@itemx --nullterminate
3364Terminate message text in @code{bin} files by zero. By default they are
3365terminated by CR/LF.
3366
3367@item -o
3368@itemx --hresult_use
3369Not yet implemented. Instructs @code{windmc} to generate an OLE2 header
3370file, using HRESULT definitions. Status codes are used if the flag is not
3371specified.
3372
3373@item -O @var{codepage}
3374@itemx --codepage_out @var{codepage}
3375Sets the default codepage to be used to output text files. The default
3376is ocdepage 1252.
3377
3378@item -r @var{path}
3379@itemx --rcdir @var{path}
3380The target directory for the generated @code{rc} script and the generated
3381@code{bin} files that the resource compiler script includes. The default
3382is the current directory.
3383
3384@item -u
3385@itemx --unicode_in
3386Specifies that the input file is UTF16.
3387
3388@item -U
3389@itemx --unicode_out
3390Specifies that messages in the output @code{bin} file should be in UTF16
3391format. This is the default behaviour.
3392
3393@item -v
3394@item --verbose
bd37ed49 3395Enable verbose mode.
692ed3e7
NC
3396
3397@item -V
3398@item --version
bd37ed49 3399Prints the version number for @command{windmc}.
692ed3e7
NC
3400
3401@item -x @var{path}
3402@itemx --xdgb @var{path}
3403The path of the @code{dbg} C include file that maps message id's to the
3404symbolic name. No such file is generated without specifying the switch.
3405@end table
3406
3407@c man end
3408
3409@ignore
3410@c man begin SEEALSO windmc
3411the Info entries for @file{binutils}.
0285c67d
NC
3412@c man end
3413@end ignore
3414
252b5132
RH
3415@node windres
3416@chapter windres
3417
c7c55b78 3418@command{windres} may be used to manipulate Windows resources.
252b5132
RH
3419
3420@quotation
c7c55b78 3421@emph{Warning:} @command{windres} is not always built as part of the binary
252b5132
RH
3422utilities, since it is only useful for Windows targets.
3423@end quotation
3424
0285c67d
NC
3425@c man title windres manipulate Windows resources.
3426
252b5132 3427@smallexample
0285c67d 3428@c man begin SYNOPSIS windres
252b5132 3429windres [options] [input-file] [output-file]
0285c67d 3430@c man end
252b5132
RH
3431@end smallexample
3432
0285c67d
NC
3433@c man begin DESCRIPTION windres
3434
c7c55b78 3435@command{windres} reads resources from an input file and copies them into
252b5132
RH
3436an output file. Either file may be in one of three formats:
3437
3438@table @code
3439@item rc
3440A text format read by the Resource Compiler.
3441
3442@item res
3443A binary format generated by the Resource Compiler.
3444
3445@item coff
3446A COFF object or executable.
3447@end table
3448
3449The exact description of these different formats is available in
3450documentation from Microsoft.
3451
c7c55b78 3452When @command{windres} converts from the @code{rc} format to the @code{res}
252b5132 3453format, it is acting like the Windows Resource Compiler. When
c7c55b78 3454@command{windres} converts from the @code{res} format to the @code{coff}
252b5132
RH
3455format, it is acting like the Windows @code{CVTRES} program.
3456
c7c55b78 3457When @command{windres} generates an @code{rc} file, the output is similar
252b5132
RH
3458but not identical to the format expected for the input. When an input
3459@code{rc} file refers to an external filename, an output @code{rc} file
3460will instead include the file contents.
3461
c7c55b78 3462If the input or output format is not specified, @command{windres} will
252b5132
RH
3463guess based on the file name, or, for the input file, the file contents.
3464A file with an extension of @file{.rc} will be treated as an @code{rc}
3465file, a file with an extension of @file{.res} will be treated as a
3466@code{res} file, and a file with an extension of @file{.o} or
3467@file{.exe} will be treated as a @code{coff} file.
3468
c7c55b78 3469If no output file is specified, @command{windres} will print the resources
252b5132
RH
3470in @code{rc} format to standard output.
3471
c7c55b78 3472The normal use is for you to write an @code{rc} file, use @command{windres}
252b5132
RH
3473to convert it to a COFF object file, and then link the COFF file into
3474your application. This will make the resources described in the
3475@code{rc} file available to Windows.
3476
0285c67d
NC
3477@c man end
3478
3479@c man begin OPTIONS windres
3480
c7c55b78 3481@table @env
252b5132
RH
3482@item -i @var{filename}
3483@itemx --input @var{filename}
3484The name of the input file. If this option is not used, then
c7c55b78
NC
3485@command{windres} will use the first non-option argument as the input file
3486name. If there are no non-option arguments, then @command{windres} will
3487read from standard input. @command{windres} can not read a COFF file from
edbedb71 3488standard input.
252b5132
RH
3489
3490@item -o @var{filename}
3491@itemx --output @var{filename}
3492The name of the output file. If this option is not used, then
c7c55b78 3493@command{windres} will use the first non-option argument, after any used
252b5132 3494for the input file name, as the output file name. If there is no
c7c55b78 3495non-option argument, then @command{windres} will write to standard output.
edbedb71 3496@command{windres} can not write a COFF file to standard output. Note,
b45619c0 3497for compatibility with @command{rc} the option @option{-fo} is also
edbedb71 3498accepted, but its use is not recommended.
252b5132 3499
85eb5110 3500@item -J @var{format}
252b5132
RH
3501@itemx --input-format @var{format}
3502The input format to read. @var{format} may be @samp{res}, @samp{rc}, or
c7c55b78 3503@samp{coff}. If no input format is specified, @command{windres} will
252b5132
RH
3504guess, as described above.
3505
3506@item -O @var{format}
3507@itemx --output-format @var{format}
3508The output format to generate. @var{format} may be @samp{res},
3509@samp{rc}, or @samp{coff}. If no output format is specified,
c7c55b78 3510@command{windres} will guess, as described above.
252b5132
RH
3511
3512@item -F @var{target}
3513@itemx --target @var{target}
3514Specify the BFD format to use for a COFF file as input or output. This
c7c55b78
NC
3515is a BFD target name; you can use the @option{--help} option to see a list
3516of supported targets. Normally @command{windres} will use the default
3517format, which is the first one listed by the @option{--help} option.
3518@ifclear man
252b5132 3519@ref{Target Selection}.
c7c55b78 3520@end ifclear
252b5132
RH
3521
3522@item --preprocessor @var{program}
c7c55b78 3523When @command{windres} reads an @code{rc} file, it runs it through the C
252b5132
RH
3524preprocessor first. This option may be used to specify the preprocessor
3525to use, including any leading arguments. The default preprocessor
3526argument is @code{gcc -E -xc-header -DRC_INVOKED}.
3527
ec25acb3
NC
3528@item --preprocessor-arg @var{option}
3529When @command{windres} reads an @code{rc} file, it runs it through
3530the C preprocessor first. This option may be used to specify additional
3531text to be passed to preprocessor on its command line.
3532This option can be used multiple times to add multiple options to the
3533preprocessor command line.
3534
85eb5110
NC
3535@item -I @var{directory}
3536@itemx --include-dir @var{directory}
252b5132 3537Specify an include directory to use when reading an @code{rc} file.
c7c55b78
NC
3538@command{windres} will pass this to the preprocessor as an @option{-I}
3539option. @command{windres} will also search this directory when looking for
85eb5110 3540files named in the @code{rc} file. If the argument passed to this command
c1c0eb9e 3541matches any of the supported @var{formats} (as described in the @option{-J}
85eb5110
NC
3542option), it will issue a deprecation warning, and behave just like the
3543@option{-J} option. New programs should not use this behaviour. If a
3544directory happens to match a @var{format}, simple prefix it with @samp{./}
3545to disable the backward compatibility.
252b5132 3546
751d21b5 3547@item -D @var{target}
ad0481cd 3548@itemx --define @var{sym}[=@var{val}]
c7c55b78 3549Specify a @option{-D} option to pass to the preprocessor when reading an
252b5132
RH
3550@code{rc} file.
3551
29b058f1
NC
3552@item -U @var{target}
3553@itemx --undefine @var{sym}
3554Specify a @option{-U} option to pass to the preprocessor when reading an
3555@code{rc} file.
3556
3126d709
CF
3557@item -r
3558Ignored for compatibility with rc.
3559
751d21b5
DD
3560@item -v
3561Enable verbose mode. This tells you what the preprocessor is if you
3562didn't specify one.
3563
30ff741f
NC
3564@item -c @var{val}
3565@item --codepage @var{val}
3566Specify the default codepage to use when reading an @code{rc} file.
3567@var{val} should be a hexadecimal prefixed by @samp{0x} or decimal
3568codepage code. The valid range is from zero up to 0xffff, but the
3569validity of the codepage is host and configuration dependent.
3570
3077f5d8 3571@item -l @var{val}
252b5132
RH
3572@item --language @var{val}
3573Specify the default language to use when reading an @code{rc} file.
3574@var{val} should be a hexadecimal language code. The low eight bits are
3575the language, and the high eight bits are the sublanguage.
3576
5a298d2d
NC
3577@item --use-temp-file
3578Use a temporary file to instead of using popen to read the output of
c1c0eb9e
RM
3579the preprocessor. Use this option if the popen implementation is buggy
3580on the host (eg., certain non-English language versions of Windows 95 and
5a298d2d
NC
3581Windows 98 are known to have buggy popen where the output will instead
3582go the console).
3583
3584@item --no-use-temp-file
3585Use popen, not a temporary file, to read the output of the preprocessor.
3586This is the default behaviour.
3587
3077f5d8 3588@item -h
252b5132
RH
3589@item --help
3590Prints a usage summary.
3591
3077f5d8 3592@item -V
252b5132 3593@item --version
c7c55b78 3594Prints the version number for @command{windres}.
252b5132
RH
3595
3596@item --yydebug
c7c55b78 3597If @command{windres} is compiled with @code{YYDEBUG} defined as @code{1},
252b5132
RH
3598this will turn on parser debugging.
3599@end table
3600
0285c67d
NC
3601@c man end
3602
3603@ignore
3604@c man begin SEEALSO windres
3605the Info entries for @file{binutils}.
3606@c man end
3607@end ignore
252b5132
RH
3608
3609@node dlltool
2aa9814e 3610@chapter dlltool
252b5132
RH
3611@cindex DLL
3612@kindex dlltool
3613
2aa9814e
BE
3614@command{dlltool} is used to create the files needed to create dynamic
3615link libraries (DLLs) on systems which understand PE format image
3616files such as Windows. A DLL contains an export table which contains
3617information that the runtime loader needs to resolve references from a
3618referencing program.
3619
3620The export table is generated by this program by reading in a
3621@file{.def} file or scanning the @file{.a} and @file{.o} files which
3622will be in the DLL. A @file{.o} file can contain information in
3623special @samp{.drectve} sections with export information.
252b5132
RH
3624
3625@quotation
2aa9814e
BE
3626@emph{Note:} @command{dlltool} is not always built as part of the
3627binary utilities, since it is only useful for those targets which
3628support DLLs.
252b5132
RH
3629@end quotation
3630
0285c67d
NC
3631@c man title dlltool Create files needed to build and use DLLs.
3632
252b5132 3633@smallexample
0285c67d 3634@c man begin SYNOPSIS dlltool
c7c55b78
NC
3635dlltool [@option{-d}|@option{--input-def} @var{def-file-name}]
3636 [@option{-b}|@option{--base-file} @var{base-file-name}]
3637 [@option{-e}|@option{--output-exp} @var{exports-file-name}]
3638 [@option{-z}|@option{--output-def} @var{def-file-name}]
c1c0eb9e 3639 [@option{-l}|@option{--output-lib} @var{library-file-name}]
10e636d2 3640 [@option{-y}|@option{--output-delaylib} @var{library-file-name}]
c7c55b78
NC
3641 [@option{--export-all-symbols}] [@option{--no-export-all-symbols}]
3642 [@option{--exclude-symbols} @var{list}]
3643 [@option{--no-default-excludes}]
3644 [@option{-S}|@option{--as} @var{path-to-assembler}] [@option{-f}|@option{--as-flags} @var{options}]
3645 [@option{-D}|@option{--dllname} @var{name}] [@option{-m}|@option{--machine} @var{machine}]
14288fdc
DS
3646 [@option{-a}|@option{--add-indirect}]
3647 [@option{-U}|@option{--add-underscore}] [@option{--add-stdcall-underscore}]
3648 [@option{-k}|@option{--kill-at}] [@option{-A}|@option{--add-stdcall-alias}]
607dea97 3649 [@option{-p}|@option{--ext-prefix-alias} @var{prefix}]
d4732f7c 3650 [@option{-x}|@option{--no-idata4}] [@option{-c}|@option{--no-idata5}]
e77b97d4 3651 [@option{--use-nul-prefixed-import-tables}]
71c57c16
NC
3652 [@option{-I}|@option{--identify} @var{library-file-name}] [@option{--identify-strict}]
3653 [@option{-i}|@option{--interwork}]
f9346411 3654 [@option{-n}|@option{--nodelete}] [@option{-t}|@option{--temp-prefix} @var{prefix}]
c1c0eb9e 3655 [@option{-v}|@option{--verbose}]
c7c55b78 3656 [@option{-h}|@option{--help}] [@option{-V}|@option{--version}]
36d21de5 3657 [@option{--no-leading-underscore}] [@option{--leading-underscore}]
252b5132 3658 [object-file @dots{}]
0285c67d 3659@c man end
252b5132
RH
3660@end smallexample
3661
0285c67d
NC
3662@c man begin DESCRIPTION dlltool
3663
c7c55b78
NC
3664@command{dlltool} reads its inputs, which can come from the @option{-d} and
3665@option{-b} options as well as object files specified on the command
3666line. It then processes these inputs and if the @option{-e} option has
3667been specified it creates a exports file. If the @option{-l} option
3668has been specified it creates a library file and if the @option{-z} option
c1c0eb9e
RM
3669has been specified it creates a def file. Any or all of the @option{-e},
3670@option{-l} and @option{-z} options can be present in one invocation of
c7c55b78 3671dlltool.
252b5132
RH
3672
3673When creating a DLL, along with the source for the DLL, it is necessary
c7c55b78 3674to have three other files. @command{dlltool} can help with the creation of
252b5132
RH
3675these files.
3676
2aa9814e 3677The first file is a @file{.def} file which specifies which functions are
252b5132 3678exported from the DLL, which functions the DLL imports, and so on. This
c7c55b78
NC
3679is a text file and can be created by hand, or @command{dlltool} can be used
3680to create it using the @option{-z} option. In this case @command{dlltool}
252b5132
RH
3681will scan the object files specified on its command line looking for
3682those functions which have been specially marked as being exported and
2aa9814e 3683put entries for them in the @file{.def} file it creates.
252b5132
RH
3684
3685In order to mark a function as being exported from a DLL, it needs to
c7c55b78 3686have an @option{-export:<name_of_function>} entry in the @samp{.drectve}
252b5132
RH
3687section of the object file. This can be done in C by using the
3688asm() operator:
3689
3690@smallexample
c1c0eb9e 3691 asm (".section .drectve");
252b5132
RH
3692 asm (".ascii \"-export:my_func\"");
3693
3694 int my_func (void) @{ @dots{} @}
3695@end smallexample
3696
3697The second file needed for DLL creation is an exports file. This file
3698is linked with the object files that make up the body of the DLL and it
3699handles the interface between the DLL and the outside world. This is a
c7c55b78 3700binary file and it can be created by giving the @option{-e} option to
c1c0eb9e 3701@command{dlltool} when it is creating or reading in a @file{.def} file.
252b5132
RH
3702
3703The third file needed for DLL creation is the library file that programs
d4732f7c
CW
3704will link with in order to access the functions in the DLL (an `import
3705library'). This file can be created by giving the @option{-l} option to
3706dlltool when it is creating or reading in a @file{.def} file.
252b5132 3707
10e636d2
DK
3708If the @option{-y} option is specified, dlltool generates a delay-import
3709library that can be used instead of the normal import library to allow
3710a program to link to the dll only as soon as an imported function is
3711called for the first time. The resulting executable will need to be
3712linked to the static delayimp library containing __delayLoadHelper2(),
3713which in turn will import LoadLibraryA and GetProcAddress from kernel32.
3714
c7c55b78 3715@command{dlltool} builds the library file by hand, but it builds the
252b5132 3716exports file by creating temporary files containing assembler statements
c7c55b78 3717and then assembling these. The @option{-S} command line option can be
252b5132 3718used to specify the path to the assembler that dlltool will use,
c7c55b78
NC
3719and the @option{-f} option can be used to pass specific flags to that
3720assembler. The @option{-n} can be used to prevent dlltool from deleting
3721these temporary assembler files when it is done, and if @option{-n} is
252b5132
RH
3722specified twice then this will prevent dlltool from deleting the
3723temporary object files it used to build the library.
3724
3725Here is an example of creating a DLL from a source file @samp{dll.c} and
3726also creating a program (from an object file called @samp{program.o})
3727that uses that DLL:
3728
3729@smallexample
3730 gcc -c dll.c
3731 dlltool -e exports.o -l dll.lib dll.o
3732 gcc dll.o exports.o -o dll.dll
3733 gcc program.o dll.lib -o program
3734@end smallexample
3735
d4732f7c
CW
3736
3737@command{dlltool} may also be used to query an existing import library
b3364cb9 3738to determine the name of the DLL to which it is associated. See the
d4732f7c 3739description of the @option{-I} or @option{--identify} option.
b3364cb9 3740
0285c67d
NC
3741@c man end
3742
3743@c man begin OPTIONS dlltool
3744
252b5132
RH
3745The command line options have the following meanings:
3746
c7c55b78 3747@table @env
252b5132
RH
3748
3749@item -d @var{filename}
3750@itemx --input-def @var{filename}
3751@cindex input .def file
2aa9814e 3752Specifies the name of a @file{.def} file to be read in and processed.
252b5132
RH
3753
3754@item -b @var{filename}
3755@itemx --base-file @var{filename}
3756@cindex base files
3757Specifies the name of a base file to be read in and processed. The
3758contents of this file will be added to the relocation section in the
3759exports file generated by dlltool.
3760
3761@item -e @var{filename}
3762@itemx --output-exp @var{filename}
3763Specifies the name of the export file to be created by dlltool.
3764
3765@item -z @var{filename}
3766@itemx --output-def @var{filename}
2aa9814e 3767Specifies the name of the @file{.def} file to be created by dlltool.
252b5132
RH
3768
3769@item -l @var{filename}
3770@itemx --output-lib @var{filename}
3771Specifies the name of the library file to be created by dlltool.
3772
10e636d2
DK
3773@item -y @var{filename}
3774@itemx --output-delaylib @var{filename}
3775Specifies the name of the delay-import library file to be created by dlltool.
3776
252b5132
RH
3777@item --export-all-symbols
3778Treat all global and weak defined symbols found in the input object
3779files as symbols to be exported. There is a small list of symbols which
c7c55b78 3780are not exported by default; see the @option{--no-default-excludes}
252b5132 3781option. You may add to the list of symbols to not export by using the
c7c55b78 3782@option{--exclude-symbols} option.
252b5132
RH
3783
3784@item --no-export-all-symbols
2aa9814e 3785Only export symbols explicitly listed in an input @file{.def} file or in
252b5132
RH
3786@samp{.drectve} sections in the input object files. This is the default
3787behaviour. The @samp{.drectve} sections are created by @samp{dllexport}
3788attributes in the source code.
3789
3790@item --exclude-symbols @var{list}
3791Do not export the symbols in @var{list}. This is a list of symbol names
3792separated by comma or colon characters. The symbol names should not
3793contain a leading underscore. This is only meaningful when
c7c55b78 3794@option{--export-all-symbols} is used.
252b5132
RH
3795
3796@item --no-default-excludes
c7c55b78 3797When @option{--export-all-symbols} is used, it will by default avoid
252b5132
RH
3798exporting certain special symbols. The current list of symbols to avoid
3799exporting is @samp{DllMain@@12}, @samp{DllEntryPoint@@0},
c7c55b78 3800@samp{impure_ptr}. You may use the @option{--no-default-excludes} option
252b5132 3801to go ahead and export these special symbols. This is only meaningful
c7c55b78 3802when @option{--export-all-symbols} is used.
252b5132
RH
3803
3804@item -S @var{path}
3805@itemx --as @var{path}
3806Specifies the path, including the filename, of the assembler to be used
3807to create the exports file.
3808
6364e0b4
NC
3809@item -f @var{options}
3810@itemx --as-flags @var{options}
3811Specifies any specific command line options to be passed to the
252b5132 3812assembler when building the exports file. This option will work even if
c7c55b78 3813the @option{-S} option is not used. This option only takes one argument,
252b5132
RH
3814and if it occurs more than once on the command line, then later
3815occurrences will override earlier occurrences. So if it is necessary to
6364e0b4 3816pass multiple options to the assembler they should be enclosed in
252b5132
RH
3817double quotes.
3818
3819@item -D @var{name}
3820@itemx --dll-name @var{name}
2aa9814e
BE
3821Specifies the name to be stored in the @file{.def} file as the name of
3822the DLL when the @option{-e} option is used. If this option is not
3823present, then the filename given to the @option{-e} option will be
3824used as the name of the DLL.
252b5132
RH
3825
3826@item -m @var{machine}
3827@itemx -machine @var{machine}
3828Specifies the type of machine for which the library file should be
c7c55b78 3829built. @command{dlltool} has a built in default type, depending upon how
252b5132
RH
3830it was created, but this option can be used to override that. This is
3831normally only useful when creating DLLs for an ARM processor, when the
c36774d6 3832contents of the DLL are actually encode using Thumb instructions.
252b5132
RH
3833
3834@item -a
3835@itemx --add-indirect
c7c55b78 3836Specifies that when @command{dlltool} is creating the exports file it
252b5132
RH
3837should add a section which allows the exported functions to be
3838referenced without using the import library. Whatever the hell that
c1c0eb9e 3839means!
252b5132
RH
3840
3841@item -U
3842@itemx --add-underscore
c7c55b78 3843Specifies that when @command{dlltool} is creating the exports file it
c1c0eb9e 3844should prepend an underscore to the names of @emph{all} exported symbols.
14288fdc 3845
36d21de5
KT
3846@item --no-leading-underscore
3847@item --leading-underscore
3848Specifies whether standard symbol should be forced to be prefixed, or
3849not.
3850
14288fdc
DS
3851@item --add-stdcall-underscore
3852Specifies that when @command{dlltool} is creating the exports file it
3853should prepend an underscore to the names of exported @emph{stdcall}
3854functions. Variable names and non-stdcall function names are not modified.
3855This option is useful when creating GNU-compatible import libs for third
3856party DLLs that were built with MS-Windows tools.
252b5132
RH
3857
3858@item -k
3859@itemx --kill-at
c7c55b78 3860Specifies that when @command{dlltool} is creating the exports file it
d67a454c
NC
3861should not append the string @samp{@@ <number>}. These numbers are
3862called ordinal numbers and they represent another way of accessing the
3863function in a DLL, other than by name.
252b5132
RH
3864
3865@item -A
3866@itemx --add-stdcall-alias
c7c55b78 3867Specifies that when @command{dlltool} is creating the exports file it
252b5132
RH
3868should add aliases for stdcall symbols without @samp{@@ <number>}
3869in addition to the symbols with @samp{@@ <number>}.
3870
607dea97
NC
3871@item -p
3872@itemx --ext-prefix-alias @var{prefix}
3873Causes @command{dlltool} to create external aliases for all DLL
3874imports with the specified prefix. The aliases are created for both
3875external and import symbols with no leading underscore.
3876
252b5132
RH
3877@item -x
3878@itemx --no-idata4
c7c55b78
NC
3879Specifies that when @command{dlltool} is creating the exports and library
3880files it should omit the @code{.idata4} section. This is for compatibility
252b5132
RH
3881with certain operating systems.
3882
e77b97d4
KT
3883@item --use-nul-prefixed-import-tables
3884Specifies that when @command{dlltool} is creating the exports and library
3885files it should prefix the @code{.idata4} and @code{.idata5} by zero an
3886element. This emulates old gnu import library generation of
3887@code{dlltool}. By default this option is turned off.
3888
252b5132
RH
3889@item -c
3890@itemx --no-idata5
c7c55b78
NC
3891Specifies that when @command{dlltool} is creating the exports and library
3892files it should omit the @code{.idata5} section. This is for compatibility
252b5132
RH
3893with certain operating systems.
3894
d4732f7c
CW
3895@item -I @var{filename}
3896@itemx --identify @var{filename}
3897Specifies that @command{dlltool} should inspect the import library
71c57c16
NC
3898indicated by @var{filename} and report, on @code{stdout}, the name(s)
3899of the associated DLL(s). This can be performed in addition to any
3900other operations indicated by the other options and arguments.
3901@command{dlltool} fails if the import library does not exist or is not
3902actually an import library. See also @option{--identify-strict}.
3903
3904@item --identify-strict
3905Modifies the behavior of the @option{--identify} option, such
3906that an error is reported if @var{filename} is associated with
3907more than one DLL.
d4732f7c 3908
252b5132
RH
3909@item -i
3910@itemx --interwork
c7c55b78 3911Specifies that @command{dlltool} should mark the objects in the library
252b5132 3912file and exports file that it produces as supporting interworking
c36774d6 3913between ARM and Thumb code.
252b5132
RH
3914
3915@item -n
3916@itemx --nodelete
c7c55b78 3917Makes @command{dlltool} preserve the temporary assembler files it used to
252b5132
RH
3918create the exports file. If this option is repeated then dlltool will
3919also preserve the temporary object files it uses to create the library
f9346411
DS
3920file.
3921
3922@item -t @var{prefix}
3923@itemx --temp-prefix @var{prefix}
3924Makes @command{dlltool} use @var{prefix} when constructing the names of
3925temporary assembler and object files. By default, the temp file prefix
c1c0eb9e 3926is generated from the pid.
252b5132
RH
3927
3928@item -v
3929@itemx --verbose
3930Make dlltool describe what it is doing.
3931
3932@item -h
3933@itemx --help
3934Displays a list of command line options and then exits.
3935
3936@item -V
3937@itemx --version
3938Displays dlltool's version number and then exits.
3939
3940@end table
3941
0285c67d
NC
3942@c man end
3943
2aa9814e
BE
3944@menu
3945* def file format:: The format of the dlltool @file{.def} file
3946@end menu
3947
3948@node def file format
3949@section The format of the @command{dlltool} @file{.def} file
3950
3951A @file{.def} file contains any number of the following commands:
3952
3953@table @asis
3954
3955@item @code{NAME} @var{name} @code{[ ,} @var{base} @code{]}
3956The result is going to be named @var{name}@code{.exe}.
3957
3958@item @code{LIBRARY} @var{name} @code{[ ,} @var{base} @code{]}
3959The result is going to be named @var{name}@code{.dll}.
3960
bf201fdd 3961@item @code{EXPORTS ( ( (} @var{name1} @code{[ = } @var{name2} @code{] ) | ( } @var{name1} @code{=} @var{module-name} @code{.} @var{external-name} @code{) ) [ == } @var{its_name} @code{]}
2aa9814e
BE
3962@item @code{[} @var{integer} @code{] [ NONAME ] [ CONSTANT ] [ DATA ] [ PRIVATE ] ) *}
3963Declares @var{name1} as an exported symbol from the DLL, with optional
3964ordinal number @var{integer}, or declares @var{name1} as an alias
bf201fdd
KT
3965(forward) of the function @var{external-name} in the DLL.
3966If @var{its_name} is specified, this name is used as string in export table.
2aa9814e
BE
3967@var{module-name}.
3968
bf201fdd 3969@item @code{IMPORTS ( (} @var{internal-name} @code{=} @var{module-name} @code{.} @var{integer} @code{) | [} @var{internal-name} @code{= ]} @var{module-name} @code{.} @var{external-name} @code{) [ == ) @var{its_name} @code{]} *}
2aa9814e
BE
3970Declares that @var{external-name} or the exported function whose
3971ordinal number is @var{integer} is to be imported from the file
3972@var{module-name}. If @var{internal-name} is specified then this is
3973the name that the imported function will be referred to in the body of
3974the DLL.
bf201fdd 3975If @var{its_name} is specified, this name is used as string in import table.
2aa9814e
BE
3976
3977@item @code{DESCRIPTION} @var{string}
3978Puts @var{string} into the output @file{.exp} file in the
3979@code{.rdata} section.
3980
3981@item @code{STACKSIZE} @var{number-reserve} @code{[, } @var{number-commit} @code{]}
3982@item @code{HEAPSIZE} @var{number-reserve} @code{[, } @var{number-commit} @code{]}
3983Generates @code{--stack} or @code{--heap}
3984@var{number-reserve},@var{number-commit} in the output @code{.drectve}
3985section. The linker will see this and act upon it.
3986
3987@item @code{CODE} @var{attr} @code{+}
3988@item @code{DATA} @var{attr} @code{+}
3989@item @code{SECTIONS (} @var{section-name} @var{attr}@code{ + ) *}
3990Generates @code{--attr} @var{section-name} @var{attr} in the output
3991@code{.drectve} section, where @var{attr} is one of @code{READ},
3992@code{WRITE}, @code{EXECUTE} or @code{SHARED}. The linker will see
3993this and act upon it.
3994
3995@end table
3996
0285c67d
NC
3997@ignore
3998@c man begin SEEALSO dlltool
2aa9814e 3999The Info pages for @file{binutils}.
0285c67d
NC
4000@c man end
4001@end ignore
4002
252b5132
RH
4003@node readelf
4004@chapter readelf
4005
4006@cindex ELF file information
4007@kindex readelf
4008
0285c67d
NC
4009@c man title readelf Displays information about ELF files.
4010
252b5132 4011@smallexample
0285c67d 4012@c man begin SYNOPSIS readelf
c1c0eb9e 4013readelf [@option{-a}|@option{--all}]
c7c55b78
NC
4014 [@option{-h}|@option{--file-header}]
4015 [@option{-l}|@option{--program-headers}|@option{--segments}]
4016 [@option{-S}|@option{--section-headers}|@option{--sections}]
81fc812e 4017 [@option{-g}|@option{--section-groups}]
5477e8a0 4018 [@option{-t}|@option{--section-details}]
c7c55b78
NC
4019 [@option{-e}|@option{--headers}]
4020 [@option{-s}|@option{--syms}|@option{--symbols}]
2c610e4b 4021 [@option{--dyn-syms}]
c7c55b78
NC
4022 [@option{-n}|@option{--notes}]
4023 [@option{-r}|@option{--relocs}]
4024 [@option{-u}|@option{--unwind}]
4025 [@option{-d}|@option{--dynamic}]
4026 [@option{-V}|@option{--version-info}]
947ed062 4027 [@option{-A}|@option{--arch-specific}]
c7c55b78 4028 [@option{-D}|@option{--use-dynamic}]
aef1f6d0 4029 [@option{-x} <number or name>|@option{--hex-dump=}<number or name>]
09c11c86 4030 [@option{-p} <number or name>|@option{--string-dump=}<number or name>]
cf13d699 4031 [@option{-R} <number or name>|@option{--relocated-dump=}<number or name>]
4145f1d5 4032 [@option{-c}|@option{--archive-index}]
f9f0e732 4033 [@option{-w[lLiaprmfFsoRt]}|
5bbdf3d5 4034 @option{--debug-dump}[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges,=pubtypes,=trace_info,=trace_abbrev,=trace_aranges,=gdb_index]]
fd2f0033
TT
4035 [@option{--dwarf-depth=@var{n}}]
4036 [@option{--dwarf-start=@var{n}}]
ed22650e 4037 [@option{-I}|@option{--histogram}]
c7c55b78 4038 [@option{-v}|@option{--version}]
d974e256 4039 [@option{-W}|@option{--wide}]
c7c55b78 4040 [@option{-H}|@option{--help}]
252b5132 4041 @var{elffile}@dots{}
0285c67d 4042@c man end
252b5132
RH
4043@end smallexample
4044
0285c67d
NC
4045@c man begin DESCRIPTION readelf
4046
c7c55b78 4047@command{readelf} displays information about one or more ELF format object
252b5132
RH
4048files. The options control what particular information to display.
4049
fb52b2f4
NC
4050@var{elffile}@dots{} are the object files to be examined. 32-bit and
405164-bit ELF files are supported, as are archives containing ELF files.
252b5132 4052
9eb20dd8
NC
4053This program performs a similar function to @command{objdump} but it
4054goes into more detail and it exists independently of the @sc{bfd}
4055library, so if there is a bug in @sc{bfd} then readelf will not be
4056affected.
4057
0285c67d
NC
4058@c man end
4059
4060@c man begin OPTIONS readelf
4061
252b5132
RH
4062The long and short forms of options, shown here as alternatives, are
4063equivalent. At least one option besides @samp{-v} or @samp{-H} must be
c1c0eb9e 4064given.
252b5132 4065
c7c55b78 4066@table @env
252b5132
RH
4067@item -a
4068@itemx --all
d95ef3ab 4069Equivalent to specifying @option{--file-header},
c7c55b78
NC
4070@option{--program-headers}, @option{--sections}, @option{--symbols},
4071@option{--relocs}, @option{--dynamic}, @option{--notes} and
c1c0eb9e 4072@option{--version-info}.
252b5132
RH
4073
4074@item -h
4075@itemx --file-header
4076@cindex ELF file header information
4077Displays the information contained in the ELF header at the start of the
4078file.
4079
4080@item -l
4081@itemx --program-headers
4082@itemx --segments
4083@cindex ELF program header information
4084@cindex ELF segment information
4085Displays the information contained in the file's segment headers, if it
4086has any.
4087
4088@item -S
4089@itemx --sections
4090@itemx --section-headers
4091@cindex ELF section information
4092Displays the information contained in the file's section headers, if it
4093has any.
4094
81fc812e
L
4095@item -g
4096@itemx --section-groups
4097@cindex ELF section group information
4098Displays the information contained in the file's section groups, if it
4099has any.
4100
5477e8a0
L
4101@item -t
4102@itemx --section-details
4103@cindex ELF section information
4104Displays the detailed section information. Implies @option{-S}.
81fc812e 4105
252b5132
RH
4106@item -s
4107@itemx --symbols
4108@itemx --syms
4109@cindex ELF symbol table information
4110Displays the entries in symbol table section of the file, if it has one.
4111
2c610e4b
L
4112@item --dyn-syms
4113@cindex ELF dynamic symbol table information
4114Displays the entries in dynamic symbol table section of the file, if it
4115has one.
4116
252b5132
RH
4117@item -e
4118@itemx --headers
c7c55b78 4119Display all the headers in the file. Equivalent to @option{-h -l -S}.
252b5132 4120
779fe533
NC
4121@item -n
4122@itemx --notes
1ec5cd37
NC
4123@cindex ELF notes
4124Displays the contents of the NOTE segments and/or sections, if any.
779fe533 4125
252b5132
RH
4126@item -r
4127@itemx --relocs
4128@cindex ELF reloc information
f5e21966
NC
4129Displays the contents of the file's relocation section, if it has one.
4130
4131@item -u
4132@itemx --unwind
4133@cindex unwind information
4134Displays the contents of the file's unwind section, if it has one. Only
ba7f2642
TS
4135the unwind sections for IA64 ELF files, as well as ARM unwind tables
4136(@code{.ARM.exidx} / @code{.ARM.extab}) are currently supported.
252b5132
RH
4137
4138@item -d
4139@itemx --dynamic
4140@cindex ELF dynamic section information
4141Displays the contents of the file's dynamic section, if it has one.
4142
4143@item -V
4144@itemx --version-info
4145@cindex ELF version sections informations
4146Displays the contents of the version sections in the file, it they
4147exist.
4148
947ed062
NC
4149@item -A
4150@itemx --arch-specific
4151Displays architecture-specific information in the file, if there
4152is any.
4153
252b5132
RH
4154@item -D
4155@itemx --use-dynamic
c7c55b78 4156When displaying symbols, this option makes @command{readelf} use the
2c610e4b
L
4157symbol hash tables in the file's dynamic section, rather than the
4158symbol table sections.
252b5132 4159
aef1f6d0
DJ
4160@item -x <number or name>
4161@itemx --hex-dump=<number or name>
cf13d699 4162Displays the contents of the indicated section as a hexadecimal bytes.
aef1f6d0
DJ
4163A number identifies a particular section by index in the section table;
4164any other string identifies all sections with that name in the object file.
252b5132 4165
cf13d699
NC
4166@item -R <number or name>
4167@itemx --relocated-dump=<number or name>
4168Displays the contents of the indicated section as a hexadecimal
4169bytes. A number identifies a particular section by index in the
4170section table; any other string identifies all sections with that name
4171in the object file. The contents of the section will be relocated
4172before they are displayed.
4173
09c11c86
NC
4174@item -p <number or name>
4175@itemx --string-dump=<number or name>
4176Displays the contents of the indicated section as printable strings.
4177A number identifies a particular section by index in the section table;
4178any other string identifies all sections with that name in the object file.
4179
4145f1d5
NC
4180@item -c
4181@itemx --archive-index
4182@cindex Archive file symbol index information
4183Displays the file symbol index infomation contained in the header part
4184of binary archives. Performs the same function as the @option{t}
4185command to @command{ar}, but without using the BFD library. @xref{ar}.
4186
f9f0e732 4187@item -w[lLiaprmfFsoRt]
5bbdf3d5 4188@itemx --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges,=pubtypes,=trace_info,=trace_abbrev,=trace_aranges,=gdb_index]
252b5132
RH
4189Displays the contents of the debug sections in the file, if any are
4190present. If one of the optional letters or words follows the switch
4191then only data found in those specific sections will be dumped.
4192
6f875884 4193Note that there is no single letter option to display the content of
5bbdf3d5 4194trace sections or .gdb_index.
6f875884 4195
a262ae96
NC
4196Note: the @option{=decodedline} option will display the interpreted
4197contents of a .debug_line section whereas the @option{=rawline} option
4198dumps the contents in a raw format.
4199
1ed06042
NC
4200Note: the @option{=frames-interp} option will display the interpreted
4201contents of a .debug_frame section whereas the @option{=frames} option
4202dumps the contents in a raw format.
4203
fd2f0033
TT
4204Note: the output from the @option{=info} option can also be affected
4205by the options @option{--dwarf-depth} and @option{--dwarf-start}.
4206
4207@item --dwarf-depth=@var{n}
4208Limit the dump of the @code{.debug_info} section to @var{n} children.
4209This is only useful with @option{--debug-dump=info}. The default is
4210to print all DIEs; the special value 0 for @var{n} will also have this
4211effect.
4212
4213With a non-zero value for @var{n}, DIEs at or deeper than @var{n}
4214levels will not be printed. The range for @var{n} is zero-based.
4215
4216@item --dwarf-start=@var{n}
4217Print only DIEs beginning with the DIE numbered @var{n}. This is only
4218useful with @option{--debug-dump=info}.
4219
4220If specified, this option will suppress printing of any header
4221information and all DIEs before the DIE numbered @var{n}. Only
4222siblings and children of the specified DIE will be printed.
4223
4224This can be used in conjunction with @option{--dwarf-depth}.
4225
947ed062
NC
4226@item -I
4227@itemx --histogram
252b5132
RH
4228Display a histogram of bucket list lengths when displaying the contents
4229of the symbol tables.
4230
4231@item -v
4232@itemx --version
4233Display the version number of readelf.
4234
d974e256
JJ
4235@item -W
4236@itemx --wide
4237Don't break output lines to fit into 80 columns. By default
4238@command{readelf} breaks section header and segment listing lines for
423964-bit ELF files, so that they fit into 80 columns. This option causes
4240@command{readelf} to print each section header resp. each segment one a
4241single line, which is far more readable on terminals wider than 80 columns.
4242
252b5132
RH
4243@item -H
4244@itemx --help
c7c55b78 4245Display the command line options understood by @command{readelf}.
252b5132
RH
4246
4247@end table
4248
0285c67d
NC
4249@c man end
4250
4251@ignore
4252@c man begin SEEALSO readelf
4253objdump(1), and the Info entries for @file{binutils}.
4254@c man end
4255@end ignore
252b5132 4256
30fd33bb
L
4257@node elfedit
4258@chapter elfedit
4259
4260@cindex Update ELF header
4261@kindex elfedit
4262
4263@c man title elfedit Update the ELF header of ELF files.
4264
4265@smallexample
4266@c man begin SYNOPSIS elfedit
4267elfedit [@option{--input-mach=}@var{machine}]
dd35de74 4268 [@option{--input-type=}@var{type}]
08ebfb8c 4269 [@option{--input-osabi=}@var{osabi}]
c7a795f8 4270 @option{--output-mach=}@var{machine}
dd35de74 4271 @option{--output-type=}@var{type}
08ebfb8c 4272 @option{--output-osabi=}@var{osabi}
30fd33bb
L
4273 [@option{-v}|@option{--version}]
4274 [@option{-h}|@option{--help}]
4275 @var{elffile}@dots{}
4276@c man end
4277@end smallexample
4278
4279@c man begin DESCRIPTION elfedit
4280
dd35de74
L
4281@command{elfedit} updates the ELF header of ELF files which have
4282the matching ELF machine and file types. The options control how and
4283which fields in the ELF header should be updated.
30fd33bb
L
4284
4285@var{elffile}@dots{} are the ELF files to be updated. 32-bit and
428664-bit ELF files are supported, as are archives containing ELF files.
4287@c man end
4288
4289@c man begin OPTIONS elfedit
4290
4291The long and short forms of options, shown here as alternatives, are
d0514c49
L
4292equivalent. At least one of the @option{--output-mach},
4293@option{--output-type} and @option{--output-osabi} options must be given.
30fd33bb
L
4294
4295@table @env
4296
4297@itemx --input-mach=@var{machine}
dd35de74
L
4298Set the matching input ELF machine type to @var{machine}. If
4299@option{--input-mach} isn't specified, it will match any ELF
4300machine types.
30fd33bb 4301
7a9068fe
L
4302The supported ELF machine types are, @var{L1OM}, @var{K1OM} and
4303@var{x86-64}.
30fd33bb
L
4304
4305@itemx --output-mach=@var{machine}
4306Change the ELF machine type in the ELF header to @var{machine}. The
4307supported ELF machine types are the same as @option{--input-mach}.
4308
dd35de74
L
4309@itemx --input-type=@var{type}
4310Set the matching input ELF file type to @var{type}. If
4311@option{--input-type} isn't specified, it will match any ELF file types.
4312
4313The supported ELF file types are, @var{rel}, @var{exec} and @var{dyn}.
4314
4315@itemx --output-type=@var{type}
4316Change the ELF file type in the ELF header to @var{type}. The
4317supported ELF types are the same as @option{--input-type}.
4318
d0514c49 4319@itemx --input-osabi=@var{osabi}
08ebfb8c 4320Set the matching input ELF file OSABI to @var{osabi}. If
d0514c49
L
4321@option{--input-osabi} isn't specified, it will match any ELF OSABIs.
4322
4323The supported ELF OSABIs are, @var{none}, @var{HPUX}, @var{NetBSD},
9c55345c
TS
4324@var{GNU}, @var{Linux} (alias for @var{GNU}),
4325@var{Solaris}, @var{AIX}, @var{Irix},
d0514c49
L
4326@var{FreeBSD}, @var{TRU64}, @var{Modesto}, @var{OpenBSD}, @var{OpenVMS},
4327@var{NSK}, @var{AROS} and @var{FenixOS}.
4328
4329@itemx --output-osabi=@var{osabi}
08ebfb8c 4330Change the ELF OSABI in the ELF header to @var{osabi}. The
d0514c49
L
4331supported ELF OSABI are the same as @option{--input-osabi}.
4332
30fd33bb
L
4333@item -v
4334@itemx --version
4335Display the version number of @command{elfedit}.
4336
4337@item -h
4338@itemx --help
4339Display the command line options understood by @command{elfedit}.
4340
4341@end table
4342
4343@c man end
4344
4345@ignore
4346@c man begin SEEALSO elfedit
4347readelf(1), and the Info entries for @file{binutils}.
4348@c man end
4349@end ignore
4350
07012eee
MM
4351@node Common Options
4352@chapter Common Options
4353
4354The following command-line options are supported by all of the
4355programs described in this manual.
4356
dff70155 4357@c man begin OPTIONS
07012eee 4358@table @env
38fc1cb1 4359@include at-file.texi
dff70155 4360@c man end
07012eee
MM
4361
4362@item --help
4363Display the command-line options supported by the program.
4364
4365@item --version
4366Display the version number of the program.
4367
dff70155 4368@c man begin OPTIONS
07012eee 4369@end table
dff70155 4370@c man end
07012eee 4371
fff279a7 4372@node Selecting the Target System
947ed062 4373@chapter Selecting the Target System
252b5132 4374
947ed062 4375You can specify two aspects of the target system to the @sc{gnu}
252b5132
RH
4376binary file utilities, each in several ways:
4377
4378@itemize @bullet
4379@item
4380the target
4381
4382@item
4383the architecture
252b5132
RH
4384@end itemize
4385
4386In the following summaries, the lists of ways to specify values are in
4387order of decreasing precedence. The ways listed first override those
4388listed later.
4389
4390The commands to list valid values only list the values for which the
4391programs you are running were configured. If they were configured with
c7c55b78 4392@option{--enable-targets=all}, the commands list most of the available
252b5132
RH
4393values, but a few are left out; not all targets can be configured in at
4394once because some of them can only be configured @dfn{native} (on hosts
4395with the same type as the target system).
4396
4397@menu
c1c0eb9e
RM
4398* Target Selection::
4399* Architecture Selection::
252b5132
RH
4400@end menu
4401
4402@node Target Selection
4403@section Target Selection
4404
4405A @dfn{target} is an object file format. A given target may be
4406supported for multiple architectures (@pxref{Architecture Selection}).
4407A target selection may also have variations for different operating
4408systems or architectures.
4409
4410The command to list valid target values is @samp{objdump -i}
4411(the first column of output contains the relevant information).
4412
4413Some sample values are: @samp{a.out-hp300bsd}, @samp{ecoff-littlemips},
4414@samp{a.out-sunos-big}.
4415
4416You can also specify a target using a configuration triplet. This is
f20a759a
ILT
4417the same sort of name that is passed to @file{configure} to specify a
4418target. When you use a configuration triplet as an argument, it must be
4419fully canonicalized. You can see the canonical version of a triplet by
252b5132
RH
4420running the shell script @file{config.sub} which is included with the
4421sources.
4422
4423Some sample configuration triplets are: @samp{m68k-hp-bsd},
4424@samp{mips-dec-ultrix}, @samp{sparc-sun-sunos}.
4425
c7c55b78 4426@subheading @command{objdump} Target
252b5132
RH
4427
4428Ways to specify:
4429
4430@enumerate
4431@item
c7c55b78 4432command line option: @option{-b} or @option{--target}
252b5132
RH
4433
4434@item
4435environment variable @code{GNUTARGET}
4436
4437@item
4438deduced from the input file
4439@end enumerate
4440
c7c55b78 4441@subheading @command{objcopy} and @command{strip} Input Target
252b5132
RH
4442
4443Ways to specify:
4444
4445@enumerate
4446@item
c7c55b78 4447command line options: @option{-I} or @option{--input-target}, or @option{-F} or @option{--target}
252b5132
RH
4448
4449@item
4450environment variable @code{GNUTARGET}
4451
4452@item
4453deduced from the input file
4454@end enumerate
4455
c7c55b78 4456@subheading @command{objcopy} and @command{strip} Output Target
252b5132
RH
4457
4458Ways to specify:
4459
4460@enumerate
4461@item
c7c55b78 4462command line options: @option{-O} or @option{--output-target}, or @option{-F} or @option{--target}
252b5132
RH
4463
4464@item
c7c55b78 4465the input target (see ``@command{objcopy} and @command{strip} Input Target'' above)
252b5132
RH
4466
4467@item
4468environment variable @code{GNUTARGET}
4469
4470@item
4471deduced from the input file
4472@end enumerate
4473
c7c55b78 4474@subheading @command{nm}, @command{size}, and @command{strings} Target
252b5132
RH
4475
4476Ways to specify:
4477
4478@enumerate
4479@item
c7c55b78 4480command line option: @option{--target}
252b5132
RH
4481
4482@item
4483environment variable @code{GNUTARGET}
4484
4485@item
4486deduced from the input file
4487@end enumerate
4488
252b5132 4489@node Architecture Selection
947ed062 4490@section Architecture Selection
252b5132
RH
4491
4492An @dfn{architecture} is a type of @sc{cpu} on which an object file is
4493to run. Its name may contain a colon, separating the name of the
4494processor family from the name of the particular @sc{cpu}.
4495
4496The command to list valid architecture values is @samp{objdump -i} (the
4497second column contains the relevant information).
4498
4499Sample values: @samp{m68k:68020}, @samp{mips:3000}, @samp{sparc}.
4500
c7c55b78 4501@subheading @command{objdump} Architecture
252b5132
RH
4502
4503Ways to specify:
4504
4505@enumerate
4506@item
c7c55b78 4507command line option: @option{-m} or @option{--architecture}
252b5132
RH
4508
4509@item
4510deduced from the input file
4511@end enumerate
4512
c7c55b78 4513@subheading @command{objcopy}, @command{nm}, @command{size}, @command{strings} Architecture
252b5132
RH
4514
4515Ways to specify:
4516
4517@enumerate
4518@item
4519deduced from the input file
4520@end enumerate
4521
252b5132
RH
4522@node Reporting Bugs
4523@chapter Reporting Bugs
4524@cindex bugs
4525@cindex reporting bugs
4526
4527Your bug reports play an essential role in making the binary utilities
4528reliable.
4529
4530Reporting a bug may help you by bringing a solution to your problem, or
4531it may not. But in any case the principal function of a bug report is
4532to help the entire community by making the next version of the binary
4533utilities work better. Bug reports are your contribution to their
4534maintenance.
4535
4536In order for a bug report to serve its purpose, you must include the
4537information that enables us to fix the bug.
4538
4539@menu
4540* Bug Criteria:: Have you found a bug?
4541* Bug Reporting:: How to report bugs
4542@end menu
4543
4544@node Bug Criteria
947ed062 4545@section Have You Found a Bug?
252b5132
RH
4546@cindex bug criteria
4547
4548If you are not sure whether you have found a bug, here are some guidelines:
4549
4550@itemize @bullet
4551@cindex fatal signal
4552@cindex crash
4553@item
4554If a binary utility gets a fatal signal, for any input whatever, that is
4555a bug. Reliable utilities never crash.
4556
4557@cindex error on valid input
4558@item
4559If a binary utility produces an error message for valid input, that is a
4560bug.
4561
4562@item
4563If you are an experienced user of binary utilities, your suggestions for
4564improvement are welcome in any case.
4565@end itemize
4566
4567@node Bug Reporting
947ed062 4568@section How to Report Bugs
252b5132
RH
4569@cindex bug reports
4570@cindex bugs, reporting
4571
4572A number of companies and individuals offer support for @sc{gnu}
4573products. If you obtained the binary utilities from a support
4574organization, we recommend you contact that organization first.
4575
4576You can find contact information for many support companies and
4577individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
4578distribution.
4579
ad22bfe8 4580@ifset BUGURL
252b5132 4581In any event, we also recommend that you send bug reports for the binary
ad22bfe8
JM
4582utilities to @value{BUGURL}.
4583@end ifset
252b5132
RH
4584
4585The fundamental principle of reporting bugs usefully is this:
4586@strong{report all the facts}. If you are not sure whether to state a
4587fact or leave it out, state it!
4588
4589Often people omit facts because they think they know what causes the
4590problem and assume that some details do not matter. Thus, you might
4591assume that the name of a file you use in an example does not matter.
4592Well, probably it does not, but one cannot be sure. Perhaps the bug is
4593a stray memory reference which happens to fetch from the location where
4594that pathname is stored in memory; perhaps, if the pathname were
4595different, the contents of that location would fool the utility into
4596doing the right thing despite the bug. Play it safe and give a
4597specific, complete example. That is the easiest thing for you to do,
4598and the most helpful.
4599
4600Keep in mind that the purpose of a bug report is to enable us to fix the bug if
4601it is new to us. Therefore, always write your bug reports on the assumption
4602that the bug has not been reported previously.
4603
4604Sometimes people give a few sketchy facts and ask, ``Does this ring a
947ed062
NC
4605bell?'' This cannot help us fix a bug, so it is basically useless. We
4606respond by asking for enough details to enable us to investigate.
4607You might as well expedite matters by sending them to begin with.
252b5132
RH
4608
4609To enable us to fix the bug, you should include all these things:
4610
4611@itemize @bullet
4612@item
4613The version of the utility. Each utility announces it if you start it
c7c55b78 4614with the @option{--version} argument.
252b5132
RH
4615
4616Without this, we will not know whether there is any point in looking for
4617the bug in the current version of the binary utilities.
4618
4619@item
4620Any patches you may have applied to the source, including any patches
4621made to the @code{BFD} library.
4622
4623@item
4624The type of machine you are using, and the operating system name and
4625version number.
4626
4627@item
4628What compiler (and its version) was used to compile the utilities---e.g.
4629``@code{gcc-2.7}''.
4630
4631@item
4632The command arguments you gave the utility to observe the bug. To
4633guarantee you will not omit something important, list them all. A copy
4634of the Makefile (or the output from make) is sufficient.
4635
4636If we were to try to guess the arguments, we would probably guess wrong
4637and then we might not encounter the bug.
4638
4639@item
4640A complete input file, or set of input files, that will reproduce the
4641bug. If the utility is reading an object file or files, then it is
ad22bfe8 4642generally most helpful to send the actual object files.
252b5132
RH
4643
4644If the source files were produced exclusively using @sc{gnu} programs
c7c55b78 4645(e.g., @command{gcc}, @command{gas}, and/or the @sc{gnu} @command{ld}), then it
252b5132 4646may be OK to send the source files rather than the object files. In
c7c55b78 4647this case, be sure to say exactly what version of @command{gcc}, or
252b5132 4648whatever, was used to produce the object files. Also say how
c7c55b78 4649@command{gcc}, or whatever, was configured.
252b5132
RH
4650
4651@item
4652A description of what behavior you observe that you believe is
4653incorrect. For example, ``It gets a fatal signal.''
4654
4655Of course, if the bug is that the utility gets a fatal signal, then we
4656will certainly notice it. But if the bug is incorrect output, we might
4657not notice unless it is glaringly wrong. You might as well not give us
4658a chance to make a mistake.
4659
4660Even if the problem you experience is a fatal signal, you should still
f20a759a 4661say so explicitly. Suppose something strange is going on, such as your
b45619c0 4662copy of the utility is out of sync, or you have encountered a bug in
252b5132
RH
4663the C library on your system. (This has happened!) Your copy might
4664crash and ours would not. If you told us to expect a crash, then when
4665ours fails to crash, we would know that the bug was not happening for
4666us. If you had not told us to expect a crash, then we would not be able
4667to draw any conclusion from our observations.
4668
4669@item
4670If you wish to suggest changes to the source, send us context diffs, as
c7c55b78 4671generated by @command{diff} with the @option{-u}, @option{-c}, or @option{-p}
252b5132 4672option. Always send diffs from the old file to the new file. If you
c7c55b78 4673wish to discuss something in the @command{ld} source, refer to it by
f20a759a 4674context, not by line number.
252b5132
RH
4675
4676The line numbers in our development sources will not match those in your
4677sources. Your line numbers would convey no useful information to us.
4678@end itemize
4679
4680Here are some things that are not necessary:
4681
4682@itemize @bullet
4683@item
4684A description of the envelope of the bug.
4685
4686Often people who encounter a bug spend a lot of time investigating
4687which changes to the input file will make the bug go away and which
4688changes will not affect it.
4689
4690This is often time consuming and not very useful, because the way we
4691will find the bug is by running a single example under the debugger
4692with breakpoints, not by pure deduction from a series of examples.
4693We recommend that you save your time for something else.
4694
4695Of course, if you can find a simpler example to report @emph{instead}
4696of the original one, that is a convenience for us. Errors in the
4697output will be easier to spot, running under the debugger will take
4698less time, and so on.
4699
4700However, simplification is not vital; if you do not want to do this,
4701report the bug anyway and send us the entire test case you used.
4702
4703@item
4704A patch for the bug.
4705
4706A patch for the bug does help us if it is a good one. But do not omit
4707the necessary information, such as the test case, on the assumption that
4708a patch is all we need. We might see problems with your patch and decide
4709to fix the problem another way, or we might not understand it at all.
4710
4711Sometimes with programs as complicated as the binary utilities it is
4712very hard to construct an example that will make the program follow a
4713certain path through the code. If you do not send us the example, we
4714will not be able to construct one, so we will not be able to verify that
4715the bug is fixed.
4716
4717And if we cannot understand what bug you are trying to fix, or why your
4718patch should be an improvement, we will not install it. A test case will
4719help us to understand.
4720
4721@item
4722A guess about what the bug is or what it depends on.
4723
4724Such guesses are usually wrong. Even we cannot guess right about such
4725things without first using the debugger to find the facts.
4726@end itemize
4727
fff279a7
NC
4728@node GNU Free Documentation License
4729@appendix GNU Free Documentation License
b3364cb9 4730
947ed062 4731@include fdl.texi
cf055d54 4732
fa0d8a3e
NC
4733@node Binutils Index
4734@unnumbered Binutils Index
252b5132
RH
4735
4736@printindex cp
4737
252b5132 4738@bye
This page took 0.80878 seconds and 4 git commands to generate.