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