2001-03-20 Michael Chastain <chastain@redhat.com>
[deliverable/binutils-gdb.git] / binutils / binutils.texi
CommitLineData
252b5132
RH
1\input texinfo @c -*- Texinfo -*-
2@setfilename binutils.info
8c2bc687
NC
3@c Copyright 2001 Free Software Foundation, Inc.
4
252b5132
RH
5@include config.texi
6
7@ifinfo
8@format
9START-INFO-DIR-ENTRY
ad0481cd
AS
10* Binutils: (binutils). The GNU binary utilities.
11* ar: (binutils)ar. Create, modify, and extract from archives
12* nm: (binutils)nm. List symbols from object files
13* objcopy: (binutils)objcopy. Copy and translate object files
14* objdump: (binutils)objdump. Display information from object files
15* ranlib: (binutils)ranlib. Generate index to archive contents
16* readelf: (binutils)readelf. Display the contents of ELF format files.
17* size: (binutils)size. List section sizes and total size
18* strings: (binutils)strings. List printable strings from files
19* strip: (binutils)strip. Discard symbols
20* c++filt: (binutils)c++filt. Filter to demangle encoded C++ symbols
21* cxxfilt: (binutils)c++filt. MS-DOS name for c++filt
22* addr2line: (binutils)addr2line. Convert addresses to file and line
23* nlmconv: (binutils)nlmconv. Converts object code into an NLM
24* windres: (binutils)windres. Manipulate Windows resources
25* dlltool: (binutils)dlltool. Create files needed to build and use DLLs
252b5132
RH
26END-INFO-DIR-ENTRY
27@end format
28@end ifinfo
29
30@ifinfo
18356cf2 31Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001 Free Software Foundation, Inc.
252b5132 32
cf055d54
NC
33 Permission is granted to copy, distribute and/or modify this document
34 under the terms of the GNU Free Documentation License, Version 1.1
35 or any later version published by the Free Software Foundation;
36 with no Invariant Sections, with no Front-Cover Texts, and with no
37 Back-Cover Texts. A copy of the license is included in the
38 section entitled "GNU Free Documentation License".
252b5132
RH
39
40@ignore
41Permission is granted to process this file through TeX and print the
42results, provided the printed document carries a copying permission
43notice identical to this one except for the removal of this paragraph
44(this paragraph not being relevant to the printed manual).
45
46@end ignore
252b5132
RH
47@end ifinfo
48
49@synindex ky cp
50@c
51@c This file documents the GNU binary utilities "ar", "ld", "objcopy",
52@c "objdump", "nm", "size", "strings", "strip", "readelf" and "ranlib".
53@c
18356cf2 54@c Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001 Free Software Foundation, Inc.
252b5132
RH
55@c
56@c This text may be freely distributed under the terms of the GNU
cf055d54 57@c Free Documentation License.
252b5132
RH
58@c
59
60@setchapternewpage odd
61@settitle @sc{gnu} Binary Utilities
62@titlepage
63@finalout
64@title The @sc{gnu} Binary Utilities
65@subtitle Version @value{VERSION}
66@sp 1
67@subtitle May 1993
68@author Roland H. Pesch
69@author Jeffrey M. Osier
70@author Cygnus Support
71@page
72
73@tex
74{\parskip=0pt \hfill Cygnus Support\par \hfill
75\TeX{}info \texinfoversion\par }
76@end tex
77
78@vskip 0pt plus 1filll
18356cf2 79Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 97, 1998, 2000, 2001 Free Software Foundation, Inc.
252b5132 80
cf055d54
NC
81 Permission is granted to copy, distribute and/or modify this document
82 under the terms of the GNU Free Documentation License, Version 1.1
83 or any later version published by the Free Software Foundation;
84 with no Invariant Sections, with no Front-Cover Texts, and with no
85 Back-Cover Texts. A copy of the license is included in the
86 section entitled "GNU Free Documentation License".
252b5132 87
252b5132
RH
88@end titlepage
89
90@node Top
91@top Introduction
92
93@cindex version
94This brief manual contains preliminary documentation for the @sc{gnu} binary
95utilities (collectively version @value{VERSION}):
96
97@iftex
98@table @code
99@item ar
100Create, modify, and extract from archives
101
102@item nm
103List symbols from object files
104
105@item objcopy
106Copy and translate object files
107
108@item objdump
109Display information from object files
110
111@item ranlib
112Generate index to archive contents
113
114@item readelf
115Display the contents of ELF format files.
116
117@item size
118List file section sizes and total size
119
120@item strings
121List printable strings from files
122
123@item strip
124Discard symbols
125
126@item c++filt
9d51cc66
ILT
127Demangle encoded C++ symbols (on MS-DOS, this program is named
128@code{cxxfilt})
252b5132
RH
129
130@item addr2line
131Convert addresses into file names and line numbers
132
133@item nlmconv
134Convert object code into a Netware Loadable Module
135
136@item windres
137Manipulate Windows resources
138
139@item dlltool
140Create the files needed to build and use Dynamic Link Libraries
141@end table
142@end iftex
143
cf055d54
NC
144This document is distributed under the terms of the GNU Free
145Documentation License. A copy of the license is included in the
146section entitled "GNU Free Documentation License".
147
252b5132
RH
148@menu
149* ar:: Create, modify, and extract from archives
150* nm:: List symbols from object files
151* objcopy:: Copy and translate object files
152* objdump:: Display information from object files
153* ranlib:: Generate index to archive contents
154* readelf:: Display the contents of ELF format files.
155* size:: List section sizes and total size
156* strings:: List printable strings from files
157* strip:: Discard symbols
158* c++filt:: Filter to demangle encoded C++ symbols
9d51cc66 159* cxxfilt: c++filt. MS-DOS name for c++filt
252b5132
RH
160* addr2line:: Convert addresses to file and line
161* nlmconv:: Converts object code into an NLM
162* windres:: Manipulate Windows resources
163* dlltool:: Create files needed to build and use DLLs
164* Selecting The Target System:: How these utilities determine the target.
165* Reporting Bugs:: Reporting Bugs
cf055d54 166* GNU Free Documentation License:: GNU Free Documentation License
252b5132
RH
167* Index:: Index
168@end menu
169
170@node ar
171@chapter ar
172
173@kindex ar
174@cindex archives
175@cindex collections of files
176@smallexample
3de39064 177ar [-]@var{p}[@var{mod} [@var{relpos}] [@var{count}]] @var{archive} [@var{member}@dots{}]
252b5132
RH
178ar -M [ <mri-script ]
179@end smallexample
180
181The @sc{gnu} @code{ar} program creates, modifies, and extracts from
182archives. An @dfn{archive} is a single file holding a collection of
183other files in a structure that makes it possible to retrieve
184the original individual files (called @dfn{members} of the archive).
185
186The original files' contents, mode (permissions), timestamp, owner, and
187group are preserved in the archive, and can be restored on
188extraction.
189
190@cindex name length
191@sc{gnu} @code{ar} can maintain archives whose members have names of any
192length; however, depending on how @code{ar} is configured on your
193system, a limit on member-name length may be imposed for compatibility
194with archive formats maintained with other tools. If it exists, the
195limit is often 15 characters (typical of formats related to a.out) or 16
196characters (typical of formats related to coff).
197
198@cindex libraries
199@code{ar} is considered a binary utility because archives of this sort
200are most often used as @dfn{libraries} holding commonly needed
201subroutines.
202
203@cindex symbol index
204@code{ar} creates an index to the symbols defined in relocatable
205object modules in the archive when you specify the modifier @samp{s}.
206Once created, this index is updated in the archive whenever @code{ar}
207makes a change to its contents (save for the @samp{q} update operation).
208An archive with such an index speeds up linking to the library, and
209allows routines in the library to call each other without regard to
210their placement in the archive.
211
212You may use @samp{nm -s} or @samp{nm --print-armap} to list this index
213table. If an archive lacks the table, another form of @code{ar} called
214@code{ranlib} can be used to add just the table.
215
216@cindex compatibility, @code{ar}
217@cindex @code{ar} compatibility
218@sc{gnu} @code{ar} is designed to be compatible with two different
219facilities. You can control its activity using command-line options,
220like the different varieties of @code{ar} on Unix systems; or, if you
221specify the single command-line option @samp{-M}, you can control it
222with a script supplied via standard input, like the MRI ``librarian''
223program.
224
225@menu
226* ar cmdline:: Controlling @code{ar} on the command line
227* ar scripts:: Controlling @code{ar} with a script
228@end menu
229
230@page
231@node ar cmdline
232@section Controlling @code{ar} on the command line
233
234@smallexample
6e800839 235ar [-X32_64] [-]@var{p}[@var{mod} [@var{relpos}] [@var{count}]] @var{archive} [@var{member}@dots{}]
252b5132
RH
236@end smallexample
237
238@cindex Unix compatibility, @code{ar}
239When you use @code{ar} in the Unix style, @code{ar} insists on at least two
240arguments to execute: one keyletter specifying the @emph{operation}
241(optionally accompanied by other keyletters specifying
242@emph{modifiers}), and the archive name to act on.
243
244Most operations can also accept further @var{member} arguments,
245specifying particular files to operate on.
246
247@sc{gnu} @code{ar} allows you to mix the operation code @var{p} and modifier
248flags @var{mod} in any order, within the first command-line argument.
249
250If you wish, you may begin the first command-line argument with a
251dash.
252
253@cindex operations on archive
254The @var{p} keyletter specifies what operation to execute; it may be
255any of the following, but you must specify only one of them:
256
257@table @code
258@item d
259@cindex deleting from archive
260@emph{Delete} modules from the archive. Specify the names of modules to
261be deleted as @var{member}@dots{}; the archive is untouched if you
262specify no files to delete.
263
264If you specify the @samp{v} modifier, @code{ar} lists each module
265as it is deleted.
266
267@item m
268@cindex moving in archive
269Use this operation to @emph{move} members in an archive.
270
271The ordering of members in an archive can make a difference in how
272programs are linked using the library, if a symbol is defined in more
273than one member.
274
275If no modifiers are used with @code{m}, any members you name in the
276@var{member} arguments are moved to the @emph{end} of the archive;
277you can use the @samp{a}, @samp{b}, or @samp{i} modifiers to move them to a
278specified place instead.
279
280@item p
281@cindex printing from archive
282@emph{Print} the specified members of the archive, to the standard
283output file. If the @samp{v} modifier is specified, show the member
284name before copying its contents to standard output.
285
286If you specify no @var{member} arguments, all the files in the archive are
287printed.
288
289@item q
290@cindex quick append to archive
291@emph{Quick append}; Historically, add the files @var{member}@dots{} to the end of
292@var{archive}, without checking for replacement.
293
294The modifiers @samp{a}, @samp{b}, and @samp{i} do @emph{not} affect this
295operation; new members are always placed at the end of the archive.
296
297The modifier @samp{v} makes @code{ar} list each file as it is appended.
298
299Since the point of this operation is speed, the archive's symbol table
300index is not updated, even if it already existed; you can use @samp{ar s} or
301@code{ranlib} explicitly to update the symbol table index.
302
303However, too many different systems assume quick append rebuilds the
304index, so GNU ar implements @code{q} as a synonym for @code{r}.
305
306@item r
307@cindex replacement in archive
308Insert the files @var{member}@dots{} into @var{archive} (with
309@emph{replacement}). This operation differs from @samp{q} in that any
310previously existing members are deleted if their names match those being
311added.
312
313If one of the files named in @var{member}@dots{} does not exist, @code{ar}
314displays an error message, and leaves undisturbed any existing members
315of the archive matching that name.
316
317By default, new members are added at the end of the file; but you may
318use one of the modifiers @samp{a}, @samp{b}, or @samp{i} to request
319placement relative to some existing member.
320
321The modifier @samp{v} used with this operation elicits a line of
322output for each file inserted, along with one of the letters @samp{a} or
323@samp{r} to indicate whether the file was appended (no old member
324deleted) or replaced.
325
326@item t
327@cindex contents of archive
328Display a @emph{table} listing the contents of @var{archive}, or those
329of the files listed in @var{member}@dots{} that are present in the
330archive. Normally only the member name is shown; if you also want to
331see the modes (permissions), timestamp, owner, group, and size, you can
332request that by also specifying the @samp{v} modifier.
333
334If you do not specify a @var{member}, all files in the archive
335are listed.
336
337@cindex repeated names in archive
338@cindex name duplication in archive
339If there is more than one file with the same name (say, @samp{fie}) in
340an archive (say @samp{b.a}), @samp{ar t b.a fie} lists only the
341first instance; to see them all, you must ask for a complete
342listing---in our example, @samp{ar t b.a}.
343@c WRS only; per Gumby, this is implementation-dependent, and in a more
344@c recent case in fact works the other way.
345
346@item x
347@cindex extract from archive
348@emph{Extract} members (named @var{member}) from the archive. You can
349use the @samp{v} modifier with this operation, to request that
350@code{ar} list each name as it extracts it.
351
352If you do not specify a @var{member}, all files in the archive
353are extracted.
354
355@end table
356
357A number of modifiers (@var{mod}) may immediately follow the @var{p}
358keyletter, to specify variations on an operation's behavior:
359
360@table @code
361@item a
362@cindex relative placement in archive
363Add new files @emph{after} an existing member of the
364archive. If you use the modifier @samp{a}, the name of an existing archive
365member must be present as the @var{relpos} argument, before the
366@var{archive} specification.
367
368@item b
369Add new files @emph{before} an existing member of the
370archive. If you use the modifier @samp{b}, the name of an existing archive
371member must be present as the @var{relpos} argument, before the
372@var{archive} specification. (same as @samp{i}).
373
374@item c
375@cindex creating archives
376@emph{Create} the archive. The specified @var{archive} is always
377created if it did not exist, when you request an update. But a warning is
378issued unless you specify in advance that you expect to create it, by
379using this modifier.
380
381@item f
382Truncate names in the archive. @sc{gnu} @code{ar} will normally permit file
383names of any length. This will cause it to create archives which are
384not compatible with the native @code{ar} program on some systems. If
385this is a concern, the @samp{f} modifier may be used to truncate file
386names when putting them in the archive.
387
388@item i
389Insert new files @emph{before} an existing member of the
390archive. If you use the modifier @samp{i}, the name of an existing archive
391member must be present as the @var{relpos} argument, before the
392@var{archive} specification. (same as @samp{b}).
393
394@item l
395This modifier is accepted but not used.
396@c whaffor ar l modifier??? presumably compat; with
397@c what???---doc@@cygnus.com, 25jan91
398
3de39064
ILT
399@item N
400Uses the @var{count} parameter. This is used if there are multiple
401entries in the archive with the same name. Extract or delete instance
402@var{count} of the given name from the archive.
403
252b5132
RH
404@item o
405@cindex dates in archive
406Preserve the @emph{original} dates of members when extracting them. If
407you do not specify this modifier, files extracted from the archive
408are stamped with the time of extraction.
409
3de39064
ILT
410@item P
411Use the full path name when matching names in the archive. @sc{gnu}
412@code{ar} can not create an archive with a full path name (such archives
413are not POSIX complaint), but other archive creators can. This option
414will cause @sc{gnu} @code{ar} to match file names using a complete path
415name, which can be convenient when extracting a single file from an
416archive created by another tool.
417
252b5132
RH
418@item s
419@cindex writing archive index
420Write an object-file index into the archive, or update an existing one,
421even if no other change is made to the archive. You may use this modifier
422flag either with any operation, or alone. Running @samp{ar s} on an
423archive is equivalent to running @samp{ranlib} on it.
424
425@item S
426@cindex not writing archive index
427Do not generate an archive symbol table. This can speed up building a
428large library in several steps. The resulting archive can not be used
429with the linker. In order to build a symbol table, you must omit the
430@samp{S} modifier on the last execution of @samp{ar}, or you must run
431@samp{ranlib} on the archive.
432
433@item u
434@cindex updating an archive
435Normally, @samp{ar r}@dots{} inserts all files
436listed into the archive. If you would like to insert @emph{only} those
437of the files you list that are newer than existing members of the same
438names, use this modifier. The @samp{u} modifier is allowed only for the
439operation @samp{r} (replace). In particular, the combination @samp{qu} is
440not allowed, since checking the timestamps would lose any speed
441advantage from the operation @samp{q}.
442
443@item v
444This modifier requests the @emph{verbose} version of an operation. Many
445operations display additional information, such as filenames processed,
446when the modifier @samp{v} is appended.
447
448@item V
449This modifier shows the version number of @code{ar}.
450@end table
451
6e800839
GK
452@code{ar} ignores an initial option spelt @code{-X32_64}, for
453compatibility with AIX. The behaviour produced by this option is the
454default for GNU @code{ar}. @code{ar} does not support any of the other
455@code{-X} options; in particular, it does not support @code{-X32}
456which is the default for AIX @code{ar}.
457
252b5132
RH
458@node ar scripts
459@section Controlling @code{ar} with a script
460
461@smallexample
462ar -M [ <@var{script} ]
463@end smallexample
464
465@cindex MRI compatibility, @code{ar}
466@cindex scripts, @code{ar}
467If you use the single command-line option @samp{-M} with @code{ar}, you
468can control its operation with a rudimentary command language. This
469form of @code{ar} operates interactively if standard input is coming
470directly from a terminal. During interactive use, @code{ar} prompts for
471input (the prompt is @samp{AR >}), and continues executing even after
472errors. If you redirect standard input to a script file, no prompts are
473issued, and @code{ar} abandons execution (with a nonzero exit code)
474on any error.
475
476The @code{ar} command language is @emph{not} designed to be equivalent
477to the command-line options; in fact, it provides somewhat less control
478over archives. The only purpose of the command language is to ease the
479transition to @sc{gnu} @code{ar} for developers who already have scripts
480written for the MRI ``librarian'' program.
481
482The syntax for the @code{ar} command language is straightforward:
483@itemize @bullet
484@item
485commands are recognized in upper or lower case; for example, @code{LIST}
486is the same as @code{list}. In the following descriptions, commands are
487shown in upper case for clarity.
488
489@item
490a single command may appear on each line; it is the first word on the
491line.
492
493@item
494empty lines are allowed, and have no effect.
495
496@item
497comments are allowed; text after either of the characters @samp{*}
498or @samp{;} is ignored.
499
500@item
501Whenever you use a list of names as part of the argument to an @code{ar}
502command, you can separate the individual names with either commas or
503blanks. Commas are shown in the explanations below, for clarity.
504
505@item
506@samp{+} is used as a line continuation character; if @samp{+} appears
507at the end of a line, the text on the following line is considered part
508of the current command.
509@end itemize
510
511Here are the commands you can use in @code{ar} scripts, or when using
512@code{ar} interactively. Three of them have special significance:
513
514@code{OPEN} or @code{CREATE} specify a @dfn{current archive}, which is
515a temporary file required for most of the other commands.
516
517@code{SAVE} commits the changes so far specified by the script. Prior
518to @code{SAVE}, commands affect only the temporary copy of the current
519archive.
520
521@table @code
522@item ADDLIB @var{archive}
523@itemx ADDLIB @var{archive} (@var{module}, @var{module}, @dots{} @var{module})
524Add all the contents of @var{archive} (or, if specified, each named
525@var{module} from @var{archive}) to the current archive.
526
527Requires prior use of @code{OPEN} or @code{CREATE}.
528
529@item ADDMOD @var{member}, @var{member}, @dots{} @var{member}
530@c FIXME! w/Replacement?? If so, like "ar r @var{archive} @var{names}"
531@c else like "ar q..."
532Add each named @var{member} as a module in the current archive.
533
534Requires prior use of @code{OPEN} or @code{CREATE}.
535
536@item CLEAR
537Discard the contents of the current archive, canceling the effect of
538any operations since the last @code{SAVE}. May be executed (with no
539effect) even if no current archive is specified.
540
541@item CREATE @var{archive}
542Creates an archive, and makes it the current archive (required for many
543other commands). The new archive is created with a temporary name; it
544is not actually saved as @var{archive} until you use @code{SAVE}.
545You can overwrite existing archives; similarly, the contents of any
546existing file named @var{archive} will not be destroyed until @code{SAVE}.
547
548@item DELETE @var{module}, @var{module}, @dots{} @var{module}
549Delete each listed @var{module} from the current archive; equivalent to
550@samp{ar -d @var{archive} @var{module} @dots{} @var{module}}.
551
552Requires prior use of @code{OPEN} or @code{CREATE}.
553
554@item DIRECTORY @var{archive} (@var{module}, @dots{} @var{module})
555@itemx DIRECTORY @var{archive} (@var{module}, @dots{} @var{module}) @var{outputfile}
556List each named @var{module} present in @var{archive}. The separate
557command @code{VERBOSE} specifies the form of the output: when verbose
558output is off, output is like that of @samp{ar -t @var{archive}
559@var{module}@dots{}}. When verbose output is on, the listing is like
560@samp{ar -tv @var{archive} @var{module}@dots{}}.
561
562Output normally goes to the standard output stream; however, if you
563specify @var{outputfile} as a final argument, @code{ar} directs the
564output to that file.
565
566@item END
567Exit from @code{ar}, with a @code{0} exit code to indicate successful
568completion. This command does not save the output file; if you have
569changed the current archive since the last @code{SAVE} command, those
570changes are lost.
571
572@item EXTRACT @var{module}, @var{module}, @dots{} @var{module}
573Extract each named @var{module} from the current archive, writing them
574into the current directory as separate files. Equivalent to @samp{ar -x
575@var{archive} @var{module}@dots{}}.
576
577Requires prior use of @code{OPEN} or @code{CREATE}.
578
579@ignore
580@c FIXME Tokens but no commands???
581@item FULLDIR
582
583@item HELP
584@end ignore
585
586@item LIST
587Display full contents of the current archive, in ``verbose'' style
588regardless of the state of @code{VERBOSE}. The effect is like @samp{ar
c89746f6 589tv @var{archive}}. (This single command is a @sc{gnu} @code{ar}
252b5132
RH
590enhancement, rather than present for MRI compatibility.)
591
592Requires prior use of @code{OPEN} or @code{CREATE}.
593
594@item OPEN @var{archive}
595Opens an existing archive for use as the current archive (required for
596many other commands). Any changes as the result of subsequent commands
597will not actually affect @var{archive} until you next use @code{SAVE}.
598
599@item REPLACE @var{module}, @var{module}, @dots{} @var{module}
600In the current archive, replace each existing @var{module} (named in
601the @code{REPLACE} arguments) from files in the current working directory.
602To execute this command without errors, both the file, and the module in
603the current archive, must exist.
604
605Requires prior use of @code{OPEN} or @code{CREATE}.
606
607@item VERBOSE
608Toggle an internal flag governing the output from @code{DIRECTORY}.
609When the flag is on, @code{DIRECTORY} output matches output from
610@samp{ar -tv }@dots{}.
611
612@item SAVE
613Commit your changes to the current archive, and actually save it as a
614file with the name specified in the last @code{CREATE} or @code{OPEN}
615command.
616
617Requires prior use of @code{OPEN} or @code{CREATE}.
618
619@end table
620
621@iftex
622@node ld
623@chapter ld
624@cindex linker
625@kindex ld
626The @sc{gnu} linker @code{ld} is now described in a separate manual.
627@xref{Top,, Overview,, Using LD: the @sc{gnu} linker}.
628@end iftex
629
630@node nm
631@chapter nm
632@cindex symbols
633@kindex nm
634
635@smallexample
636nm [ -a | --debug-syms ] [ -g | --extern-only ]
28c309a2 637 [ -B ] [ -C | --demangle[=@var{style}] ] [ -D | --dynamic ]
252b5132
RH
638 [ -s | --print-armap ] [ -A | -o | --print-file-name ]
639 [ -n | -v | --numeric-sort ] [ -p | --no-sort ]
640 [ -r | --reverse-sort ] [ --size-sort ] [ -u | --undefined-only ]
641 [ -t @var{radix} | --radix=@var{radix} ] [ -P | --portability ]
642 [ --target=@var{bfdname} ] [ -f @var{format} | --format=@var{format} ]
6e800839
GK
643 [ --defined-only ] [-l | --line-numbers ] [ --no-demangle ]
644 [ -V | --version ] [ -X 32_64 ] [ --help ] [ @var{objfile}@dots{} ]
252b5132
RH
645@end smallexample
646
647@sc{gnu} @code{nm} lists the symbols from object files @var{objfile}@dots{}.
f20a759a 648If no object files are listed as arguments, @code{nm} assumes the file
252b5132
RH
649@file{a.out}.
650
651For each symbol, @code{nm} shows:
652
653@itemize @bullet
654@item
655The symbol value, in the radix selected by options (see below), or
656hexadecimal by default.
657
658@item
659The symbol type. At least the following types are used; others are, as
660well, depending on the object file format. If lowercase, the symbol is
661local; if uppercase, the symbol is global (external).
662
663@c Some more detail on exactly what these symbol types are used for
664@c would be nice.
665@table @code
666@item A
667The symbol's value is absolute, and will not be changed by further
668linking.
669
670@item B
671The symbol is in the uninitialized data section (known as BSS).
672
673@item C
674The symbol is common. Common symbols are uninitialized data. When
675linking, multiple common symbols may appear with the same name. If the
676symbol is defined anywhere, the common symbols are treated as undefined
677references. For more details on common symbols, see the discussion of
678--warn-common in @ref{Options,,Linker options,ld.info,The GNU linker}.
679
680@item D
681The symbol is in the initialized data section.
682
683@item G
684The symbol is in an initialized data section for small objects. Some
685object file formats permit more efficient access to small data objects,
686such as a global int variable as opposed to a large global array.
687
688@item I
689The symbol is an indirect reference to another symbol. This is a GNU
690extension to the a.out object file format which is rarely used.
691
692@item N
693The symbol is a debugging symbol.
694
695@item R
696The symbol is in a read only data section.
697
698@item S
699The symbol is in an uninitialized data section for small objects.
700
701@item T
702The symbol is in the text (code) section.
703
704@item U
705The symbol is undefined.
706
fad6fcbb
NC
707@item V
708The symbol is a weak object. When a weak defined symbol is linked with
709a normal defined symbol, the normal defined symbol is used with no error.
710When a weak undefined symbol is linked and the symbol is not defined,
711the value of the weak symbol becomes zero with no error.
712
252b5132 713@item W
fad6fcbb
NC
714The symbol is a weak symbol that has not been specifically tagged as a
715weak object symbol. When a weak defined symbol is linked with a normal
716defined symbol, the normal defined symbol is used with no error.
717When a weak undefined symbol is linked and the symbol is not defined,
718the value of the weak symbol becomes zero with no error.
252b5132
RH
719
720@item -
721The symbol is a stabs symbol in an a.out object file. In this case, the
722next values printed are the stabs other field, the stabs desc field, and
723the stab type. Stabs symbols are used to hold debugging information;
724for more information, see @ref{Top,Stabs,Stabs Overview,stabs.info, The
725``stabs'' debug format}.
726
727@item ?
728The symbol type is unknown, or object file format specific.
729@end table
730
731@item
732The symbol name.
733@end itemize
734
735The long and short forms of options, shown here as alternatives, are
736equivalent.
737
738@table @code
739@item -A
740@itemx -o
741@itemx --print-file-name
742@cindex input file name
743@cindex file name
744@cindex source file name
f20a759a 745Precede each symbol by the name of the input file (or archive member)
252b5132
RH
746in which it was found, rather than identifying the input file once only,
747before all of its symbols.
748
749@item -a
750@itemx --debug-syms
751@cindex debugging symbols
752Display all symbols, even debugger-only symbols; normally these are not
753listed.
754
755@item -B
756@cindex @code{nm} format
757@cindex @code{nm} compatibility
758The same as @samp{--format=bsd} (for compatibility with the MIPS @code{nm}).
759
760@item -C
28c309a2 761@itemx --demangle[=@var{style}]
252b5132
RH
762@cindex demangling in nm
763Decode (@dfn{demangle}) low-level symbol names into user-level names.
764Besides removing any initial underscore prepended by the system, this
28c309a2
NC
765makes C++ function names readable. Different compilers have different
766mangling styles. The optional demangling style argument can be used to
767choose an appropriate demangling style for your compiler. @xref{c++filt},
768for more information on demangling.
252b5132
RH
769
770@item --no-demangle
771Do not demangle low-level symbol names. This is the default.
772
773@item -D
774@itemx --dynamic
775@cindex dynamic symbols
776Display the dynamic symbols rather than the normal symbols. This is
777only meaningful for dynamic objects, such as certain types of shared
778libraries.
779
780@item -f @var{format}
781@itemx --format=@var{format}
782@cindex @code{nm} format
783@cindex @code{nm} compatibility
784Use the output format @var{format}, which can be @code{bsd},
785@code{sysv}, or @code{posix}. The default is @code{bsd}.
786Only the first character of @var{format} is significant; it can be
787either upper or lower case.
788
789@item -g
790@itemx --extern-only
791@cindex external symbols
792Display only external symbols.
793
794@item -l
795@itemx --line-numbers
796@cindex symbol line numbers
797For each symbol, use debugging information to try to find a filename and
798line number. For a defined symbol, look for the line number of the
799address of the symbol. For an undefined symbol, look for the line
800number of a relocation entry which refers to the symbol. If line number
801information can be found, print it after the other symbol information.
802
803@item -n
804@itemx -v
805@itemx --numeric-sort
806Sort symbols numerically by their addresses, rather than alphabetically
807by their names.
808
809@item -p
810@itemx --no-sort
811@cindex sorting symbols
812Do not bother to sort the symbols in any order; print them in the order
813encountered.
814
815@item -P
816@itemx --portability
817Use the POSIX.2 standard output format instead of the default format.
818Equivalent to @samp{-f posix}.
819
820@item -s
821@itemx --print-armap
822@cindex symbol index, listing
823When listing symbols from archive members, include the index: a mapping
824(stored in the archive by @code{ar} or @code{ranlib}) of which modules
825contain definitions for which names.
826
827@item -r
828@itemx --reverse-sort
829Reverse the order of the sort (whether numeric or alphabetic); let the
830last come first.
831
832@item --size-sort
833Sort symbols by size. The size is computed as the difference between
834the value of the symbol and the value of the symbol with the next higher
835value. The size of the symbol is printed, rather than the value.
836
837@item -t @var{radix}
838@itemx --radix=@var{radix}
839Use @var{radix} as the radix for printing the symbol values. It must be
840@samp{d} for decimal, @samp{o} for octal, or @samp{x} for hexadecimal.
841
842@item --target=@var{bfdname}
843@cindex object code format
844Specify an object code format other than your system's default format.
845@xref{Target Selection}, for more information.
846
847@item -u
848@itemx --undefined-only
849@cindex external symbols
850@cindex undefined symbols
851Display only undefined symbols (those external to each object file).
852
853@item --defined-only
854@cindex external symbols
855@cindex undefined symbols
856Display only defined symbols for each object file.
857
858@item -V
859@itemx --version
860Show the version number of @code{nm} and exit.
861
6e800839
GK
862@item -X
863This option is ignored for compatibility with the AIX version of
864@code{nm}. It takes one parameter which must be the string
865@code{32_64}. The default mode of AIX @code{nm} corresponds
866to @code{-X 32}, which is not supported by @sc{gnu} @code{nm}.
867
252b5132
RH
868@item --help
869Show a summary of the options to @code{nm} and exit.
870@end table
871
872@node objcopy
873@chapter objcopy
874
875@smallexample
876objcopy [ -F @var{bfdname} | --target=@var{bfdname} ]
877 [ -I @var{bfdname} | --input-target=@var{bfdname} ]
878 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
43a0748c 879 [ -B @var{bfdarch} | --binary-architecture=@var{bfdarch} ]
252b5132
RH
880 [ -S | --strip-all ] [ -g | --strip-debug ]
881 [ -K @var{symbolname} | --keep-symbol=@var{symbolname} ]
882 [ -N @var{symbolname} | --strip-symbol=@var{symbolname} ]
883 [ -L @var{symbolname} | --localize-symbol=@var{symbolname} ]
884 [ -W @var{symbolname} | --weaken-symbol=@var{symbolname} ]
885 [ -x | --discard-all ] [ -X | --discard-locals ]
886 [ -b @var{byte} | --byte=@var{byte} ]
887 [ -i @var{interleave} | --interleave=@var{interleave} ]
f91ea849 888 [ -j @var{sectionname} | --only-section=@var{sectionname} ]
252b5132
RH
889 [ -R @var{sectionname} | --remove-section=@var{sectionname} ]
890 [ -p | --preserve-dates ] [ --debugging ]
891 [ --gap-fill=@var{val} ] [ --pad-to=@var{address} ]
892 [ --set-start=@var{val} ] [ --adjust-start=@var{incr} ]
893 [ --change-addresses=@var{incr} ]
57938635
AM
894 [ --change-section-address @var{section}@{=,+,-@}@var{val} ]
895 [ --change-section-lma @var{section}@{=,+,-@}@var{val} ]
896 [ --change-section-vma @var{section}@{=,+,-@}@var{val} ]
252b5132 897 [ --change-warnings ] [ --no-change-warnings ]
57938635
AM
898 [ --set-section-flags @var{section}=@var{flags} ]
899 [ --add-section @var{sectionname}=@var{filename} ]
252b5132 900 [ --change-leading-char ] [ --remove-leading-char ]
420496c1 901 [ --srec-len=@var{ival} ] [ --srec-forceS3 ]
57938635 902 [ --redefine-sym @var{old}=@var{new} ] [ --weaken ]
252b5132
RH
903 [ -v | --verbose ] [ -V | --version ] [ --help ]
904 @var{infile} [@var{outfile}]
905@end smallexample
906
907The @sc{gnu} @code{objcopy} utility copies the contents of an object
908file to another. @code{objcopy} uses the @sc{gnu} @sc{bfd} Library to
909read and write the object files. It can write the destination object
910file in a format different from that of the source object file. The
911exact behavior of @code{objcopy} is controlled by command-line options.
ccd13d18
L
912Note that @code{objcopy} should be able to copy a fully linked file
913between any two formats. However, copying a relocatable object file
914between any two formats may not work as expected.
252b5132
RH
915
916@code{objcopy} creates temporary files to do its translations and
917deletes them afterward. @code{objcopy} uses @sc{bfd} to do all its
918translation work; it has access to all the formats described in @sc{bfd}
919and thus is able to recognize most formats without being told
920explicitly. @xref{BFD,,BFD,ld.info,Using LD}.
921
922@code{objcopy} can be used to generate S-records by using an output
923target of @samp{srec} (e.g., use @samp{-O srec}).
924
925@code{objcopy} can be used to generate a raw binary file by using an
926output target of @samp{binary} (e.g., use @samp{-O binary}). When
927@code{objcopy} generates a raw binary file, it will essentially produce
928a memory dump of the contents of the input object file. All symbols and
929relocation information will be discarded. The memory dump will start at
930the load address of the lowest section copied into the output file.
931
932When generating an S-record or a raw binary file, it may be helpful to
933use @samp{-S} to remove sections containing debugging information. In
934some cases @samp{-R} will be useful to remove sections which contain
f20a759a 935information that is not needed by the binary file.
252b5132 936
18356cf2
NC
937Note - @code{objcopy} is not able to change the endianness of its input
938files. If the input format has an endianness, (some formats do not),
939@code{objcopy} can only copy the inputs into file formats that have the
940same endianness or which have no endianness (eg @samp{srec}).
941
252b5132
RH
942@table @code
943@item @var{infile}
944@itemx @var{outfile}
f20a759a 945The input and output files, respectively.
252b5132
RH
946If you do not specify @var{outfile}, @code{objcopy} creates a
947temporary file and destructively renames the result with
948the name of @var{infile}.
949
950@item -I @var{bfdname}
951@itemx --input-target=@var{bfdname}
952Consider the source file's object format to be @var{bfdname}, rather than
953attempting to deduce it. @xref{Target Selection}, for more information.
954
955@item -O @var{bfdname}
956@itemx --output-target=@var{bfdname}
957Write the output file using the object format @var{bfdname}.
958@xref{Target Selection}, for more information.
959
960@item -F @var{bfdname}
961@itemx --target=@var{bfdname}
962Use @var{bfdname} as the object format for both the input and the output
963file; i.e., simply transfer data from source to destination with no
964translation. @xref{Target Selection}, for more information.
965
43a0748c
NC
966@item -B @var{bfdarch}
967@itemx --binary-architecture=@var{bfdarch}
968Useful when transforming a raw binary input file into an object file.
969In this case the output architecture can be set to @var{bfdarch}. This
970option will be ignored if the input file has a known @var{bfdarch}. You
971can access this binary data inside a program by referencing the special
972symbols that are created by the conversion process. These symbols are
973called _binary_@var{objfile}_start, _binary_@var{objfile}_end and
974_binary_@var{objfile}_size. e.g. you can transform a picture file into
975an object file and then access it in your code using these symbols.
976
f91ea849
ILT
977@item -j @var{sectionname}
978@itemx --only-section=@var{sectionname}
979Copy only the named section from the input file to the output file.
980This option may be given more than once. Note that using this option
981inappropriately may make the output file unusable.
982
252b5132
RH
983@item -R @var{sectionname}
984@itemx --remove-section=@var{sectionname}
985Remove any section named @var{sectionname} from the output file. This
986option may be given more than once. Note that using this option
987inappropriately may make the output file unusable.
988
989@item -S
990@itemx --strip-all
991Do not copy relocation and symbol information from the source file.
992
993@item -g
994@itemx --strip-debug
995Do not copy debugging symbols from the source file.
996
997@item --strip-unneeded
998Strip all symbols that are not needed for relocation processing.
999
1000@item -K @var{symbolname}
1001@itemx --keep-symbol=@var{symbolname}
1002Copy only symbol @var{symbolname} from the source file. This option may
1003be given more than once.
1004
1005@item -N @var{symbolname}
1006@itemx --strip-symbol=@var{symbolname}
1007Do not copy symbol @var{symbolname} from the source file. This option
1008may be given more than once.
1009
1010@item -L @var{symbolname}
1011@itemx --localize-symbol=@var{symbolname}
1012Make symbol @var{symbolname} local to the file, so that it is not
1013visible externally. This option may be given more than once.
1014
1015@item -W @var{symbolname}
1016@itemx --weaken-symbol=@var{symbolname}
1017Make symbol @var{symbolname} weak. This option may be given more than once.
1018
1019@item -x
1020@itemx --discard-all
1021Do not copy non-global symbols from the source file.
1022@c FIXME any reason to prefer "non-global" to "local" here?
1023
1024@item -X
1025@itemx --discard-locals
1026Do not copy compiler-generated local symbols.
1027(These usually start with @samp{L} or @samp{.}.)
1028
1029@item -b @var{byte}
1030@itemx --byte=@var{byte}
1031Keep only every @var{byte}th byte of the input file (header data is not
1032affected). @var{byte} can be in the range from 0 to @var{interleave}-1,
1033where @var{interleave} is given by the @samp{-i} or @samp{--interleave}
1034option, or the default of 4. This option is useful for creating files
1035to program @sc{rom}. It is typically used with an @code{srec} output
1036target.
1037
1038@item -i @var{interleave}
1039@itemx --interleave=@var{interleave}
1040Only copy one out of every @var{interleave} bytes. Select which byte to
1041copy with the @var{-b} or @samp{--byte} option. The default is 4.
1042@code{objcopy} ignores this option if you do not specify either @samp{-b} or
1043@samp{--byte}.
1044
1045@item -p
1046@itemx --preserve-dates
1047Set the access and modification dates of the output file to be the same
1048as those of the input file.
1049
1050@item --debugging
1051Convert debugging information, if possible. This is not the default
1052because only certain debugging formats are supported, and the
1053conversion process can be time consuming.
1054
1055@item --gap-fill @var{val}
1056Fill gaps between sections with @var{val}. This operation applies to
1057the @emph{load address} (LMA) of the sections. It is done by increasing
1058the size of the section with the lower address, and filling in the extra
1059space created with @var{val}.
1060
1061@item --pad-to @var{address}
1062Pad the output file up to the load address @var{address}. This is
1063done by increasing the size of the last section. The extra space is
1064filled in with the value specified by @samp{--gap-fill} (default zero).
1065
1066@item --set-start @var{val}
f20a759a 1067Set the start address of the new file to @var{val}. Not all object file
252b5132
RH
1068formats support setting the start address.
1069
1070@item --change-start @var{incr}
1071@itemx --adjust-start @var{incr}
1072@cindex changing start address
1073Change the start address by adding @var{incr}. Not all object file
1074formats support setting the start address.
1075
1076@item --change-addresses @var{incr}
1077@itemx --adjust-vma @var{incr}
1078@cindex changing object addresses
1079Change the VMA and LMA addresses of all sections, as well as the start
1080address, by adding @var{incr}. Some object file formats do not permit
1081section addresses to be changed arbitrarily. Note that this does not
1082relocate the sections; if the program expects sections to be loaded at a
1083certain address, and this option is used to change the sections such
1084that they are loaded at a different address, the program may fail.
1085
1086@item --change-section-address @var{section}@{=,+,-@}@var{val}
1087@itemx --adjust-section-vma @var{section}@{=,+,-@}@var{val}
1088@cindex changing section address
1089Set or change both the VMA address and the LMA address of the named
1090@var{section}. If @samp{=} is used, the section address is set to
1091@var{val}. Otherwise, @var{val} is added to or subtracted from the
1092section address. See the comments under @samp{--change-addresses},
1093above. If @var{section} does not exist in the input file, a warning will
1094be issued, unless @samp{--no-change-warnings} is used.
1095
1096@item --change-section-lma @var{section}@{=,+,-@}@var{val}
1097@cindex changing section LMA
1098Set or change the LMA address of the named @var{section}. The LMA
1099address is the address where the section will be loaded into memory at
1100program load time. Normally this is the same as the VMA address, which
1101is the address of the section at program run time, but on some systems,
1102especially those where a program is held in ROM, the two can be
1103different. If @samp{=} is used, the section address is set to
1104@var{val}. Otherwise, @var{val} is added to or subtracted from the
1105section address. See the comments under @samp{--change-addresses},
1106above. If @var{section} does not exist in the input file, a warning
1107will be issued, unless @samp{--no-change-warnings} is used.
1108
1109@item --change-section-vma @var{section}@{=,+,-@}@var{val}
1110@cindex changing section VMA
1111Set or change the VMA address of the named @var{section}. The VMA
1112address is the address where the section will be located once the
1113program has started executing. Normally this is the same as the LMA
1114address, which is the address where the section will be loaded into
1115memory, but on some systems, especially those where a program is held in
1116ROM, the two can be different. If @samp{=} is used, the section address
1117is set to @var{val}. Otherwise, @var{val} is added to or subtracted
1118from the section address. See the comments under
1119@samp{--change-addresses}, above. If @var{section} does not exist in
1120the input file, a warning will be issued, unless
1121@samp{--no-change-warnings} is used.
1122
1123@item --change-warnings
1124@itemx --adjust-warnings
1125If @samp{--change-section-address} or @samp{--change-section-lma} or
1126@samp{--change-section-vma} is used, and the named section does not
1127exist, issue a warning. This is the default.
1128
1129@item --no-change-warnings
1130@itemx --no-adjust-warnings
1131Do not issue a warning if @samp{--change-section-address} or
1132@samp{--adjust-section-lma} or @samp{--adjust-section-vma} is used, even
1133if the named section does not exist.
1134
1135@item --set-section-flags @var{section}=@var{flags}
1136Set the flags for the named section. The @var{flags} argument is a
1137comma separated string of flag names. The recognized names are
3994e2c6
ILT
1138@samp{alloc}, @samp{contents}, @samp{load}, @samp{noload},
1139@samp{readonly}, @samp{code}, @samp{data}, @samp{rom}, @samp{share}, and
1140@samp{debug}. You can set the @samp{contents} flag for a section which
1141does not have contents, but it is not meaningful to clear the
1142@samp{contents} flag of a section which does have contents--just remove
1143the section instead. Not all flags are meaningful for all object file
1144formats.
252b5132
RH
1145
1146@item --add-section @var{sectionname}=@var{filename}
1147Add a new section named @var{sectionname} while copying the file. The
1148contents of the new section are taken from the file @var{filename}. The
1149size of the section will be the size of the file. This option only
1150works on file formats which can support sections with arbitrary names.
1151
1152@item --change-leading-char
1153Some object file formats use special characters at the start of
1154symbols. The most common such character is underscore, which compilers
1155often add before every symbol. This option tells @code{objcopy} to
1156change the leading character of every symbol when it converts between
1157object file formats. If the object file formats use the same leading
1158character, this option has no effect. Otherwise, it will add a
1159character, or remove a character, or change a character, as
1160appropriate.
1161
1162@item --remove-leading-char
1163If the first character of a global symbol is a special symbol leading
1164character used by the object file format, remove the character. The
1165most common symbol leading character is underscore. This option will
1166remove a leading underscore from all global symbols. This can be useful
1167if you want to link together objects of different file formats with
1168different conventions for symbol names. This is different from
1169@code{--change-leading-char} because it always changes the symbol name
1170when appropriate, regardless of the object file format of the output
1171file.
1172
420496c1
NC
1173@item --srec-len=@var{ival}
1174Meaningful only for srec output. Set the maximum length of the Srecords
1175being produced to @var{ival}. This length covers both address, data and
1176crc fields.
1177
1178@item --srec-forceS3
1179Meaningful only for srec output. Avoid generation of S1/S2 records,
1180creating S3-only record format.
1181
57938635
AM
1182@item --redefine-sym @var{old}=@var{new}
1183Change the name of a symbol @var{old}, to @var{new}. This can be useful
1184when one is trying link two things together for which you have no
1185source, and there are name collisions.
1186
252b5132
RH
1187@item --weaken
1188Change all global symbols in the file to be weak. This can be useful
1189when building an object which will be linked against other objects using
1190the @code{-R} option to the linker. This option is only effective when
1191using an object file format which supports weak symbols.
1192
1193@item -V
1194@itemx --version
1195Show the version number of @code{objcopy}.
1196
1197@item -v
1198@itemx --verbose
1199Verbose output: list all object files modified. In the case of
1200archives, @samp{objcopy -V} lists all members of the archive.
1201
1202@item --help
1203Show a summary of the options to @code{objcopy}.
1204@end table
1205
1206@node objdump
1207@chapter objdump
1208
1209@cindex object file information
1210@kindex objdump
1211
1212@smallexample
1213objdump [ -a | --archive-headers ]
1dada9c5 1214 [ -b @var{bfdname} | --target=@var{bfdname} ]
28c309a2 1215 [ -C | --demangle[=@var{style}] ]
1dada9c5
NC
1216 [ -d | --disassemble ]
1217 [ -D | --disassemble-all ]
1218 [ -z | --disassemble-zeroes ]
252b5132
RH
1219 [ -EB | -EL | --endian=@{big | little @} ]
1220 [ -f | --file-headers ]
f1563258 1221 [ --file-start-context ]
1dada9c5
NC
1222 [ -g | --debugging ]
1223 [ -h | --section-headers | --headers ]
1224 [ -i | --info ]
252b5132 1225 [ -j @var{section} | --section=@var{section} ]
1dada9c5
NC
1226 [ -l | --line-numbers ]
1227 [ -S | --source ]
252b5132 1228 [ -m @var{machine} | --architecture=@var{machine} ]
dd92f639 1229 [ -M @var{options} | --disassembler-options=@var{options}]
252b5132 1230 [ -p | --private-headers ]
1dada9c5
NC
1231 [ -r | --reloc ]
1232 [ -R | --dynamic-reloc ]
1233 [ -s | --full-contents ]
1234 [ -G | --stabs ]
1235 [ -t | --syms ]
1236 [ -T | --dynamic-syms ]
1237 [ -x | --all-headers ]
1238 [ -w | --wide ]
1239 [ --start-address=@var{address} ]
252b5132 1240 [ --stop-address=@var{address} ]
1dada9c5
NC
1241 [ --prefix-addresses]
1242 [ --[no-]show-raw-insn ]
252b5132 1243 [ --adjust-vma=@var{offset} ]
1dada9c5
NC
1244 [ -V | --version ]
1245 [ -H | --help ]
252b5132
RH
1246 @var{objfile}@dots{}
1247@end smallexample
1248
1249@code{objdump} displays information about one or more object files.
1250The options control what particular information to display. This
1251information is mostly useful to programmers who are working on the
1252compilation tools, as opposed to programmers who just want their
1253program to compile and work.
1254
1255@var{objfile}@dots{} are the object files to be examined. When you
1256specify archives, @code{objdump} shows information on each of the member
1257object files.
1258
1259The long and short forms of options, shown here as alternatives, are
1dada9c5
NC
1260equivalent. At least one option from the list
1261@samp{-a,-d,-D,-f,-g,-G,-h,-H,-p,-r,-R,-S,-t,-T,-V,-x} must be given.
252b5132
RH
1262
1263@table @code
1264@item -a
1265@itemx --archive-header
1266@cindex archive headers
1267If any of the @var{objfile} files are archives, display the archive
1268header information (in a format similar to @samp{ls -l}). Besides the
1269information you could list with @samp{ar tv}, @samp{objdump -a} shows
1270the object file format of each archive member.
1271
1272@item --adjust-vma=@var{offset}
1273@cindex section addresses in objdump
1274@cindex VMA in objdump
1275When dumping information, first add @var{offset} to all the section
1276addresses. This is useful if the section addresses do not correspond to
1277the symbol table, which can happen when putting sections at particular
1278addresses when using a format which can not represent section addresses,
1279such as a.out.
1280
1281@item -b @var{bfdname}
1282@itemx --target=@var{bfdname}
1283@cindex object code format
1284Specify that the object-code format for the object files is
1285@var{bfdname}. This option may not be necessary; @var{objdump} can
1286automatically recognize many formats.
1287
1288For example,
1289@example
1290objdump -b oasys -m vax -h fu.o
1291@end example
1292@noindent
1293displays summary information from the section headers (@samp{-h}) of
1294@file{fu.o}, which is explicitly identified (@samp{-m}) as a VAX object
1295file in the format produced by Oasys compilers. You can list the
1296formats available with the @samp{-i} option.
1297@xref{Target Selection}, for more information.
1298
1299@item -C
28c309a2 1300@itemx --demangle[=@var{style}]
252b5132
RH
1301@cindex demangling in objdump
1302Decode (@dfn{demangle}) low-level symbol names into user-level names.
1303Besides removing any initial underscore prepended by the system, this
28c309a2
NC
1304makes C++ function names readable. Different compilers have different
1305mangling styles. The optional demangling style argument can be used to
1306choose an appropriate demangling style for your compiler. @xref{c++filt},
1307for more information on demangling.
252b5132 1308
1dada9c5 1309@item -G
252b5132
RH
1310@item --debugging
1311Display debugging information. This attempts to parse debugging
1312information stored in the file and print it out using a C like syntax.
1313Only certain types of debugging information have been implemented.
1314
1315@item -d
1316@itemx --disassemble
1317@cindex disassembling object code
1318@cindex machine instructions
1319Display the assembler mnemonics for the machine instructions from
1320@var{objfile}. This option only disassembles those sections which are
1321expected to contain instructions.
1322
1323@item -D
1324@itemx --disassemble-all
1325Like @samp{-d}, but disassemble the contents of all sections, not just
1326those expected to contain instructions.
1327
1328@item --prefix-addresses
1329When disassembling, print the complete address on each line. This is
1330the older disassembly format.
1331
1332@item --disassemble-zeroes
1333Normally the disassembly output will skip blocks of zeroes. This
1334option directs the disassembler to disassemble those blocks, just like
1335any other data.
1336
1337@item -EB
1338@itemx -EL
1339@itemx --endian=@{big|little@}
1340@cindex endianness
1341@cindex disassembly endianness
1342Specify the endianness of the object files. This only affects
1343disassembly. This can be useful when disassembling a file format which
1344does not describe endianness information, such as S-records.
1345
1346@item -f
1347@itemx --file-header
1348@cindex object file header
1349Display summary information from the overall header of
1350each of the @var{objfile} files.
1351
f1563258
TW
1352@item --file-start-context
1353@cindex source code context
1354Specify that when displaying interlisted source code/disassembly
1355(assumes '-S') from a file that has not yet been displayed, extend the
1356context to the start of the file.
1357
252b5132
RH
1358@item -h
1359@itemx --section-header
1360@itemx --header
1361@cindex section headers
1362Display summary information from the section headers of the
1363object file.
1364
1365File segments may be relocated to nonstandard addresses, for example by
1366using the @samp{-Ttext}, @samp{-Tdata}, or @samp{-Tbss} options to
1367@code{ld}. However, some object file formats, such as a.out, do not
1368store the starting address of the file segments. In those situations,
1369although @code{ld} relocates the sections correctly, using @samp{objdump
1370-h} to list the file section headers cannot show the correct addresses.
1371Instead, it shows the usual addresses, which are implicit for the
1372target.
1373
1374@item --help
1375Print a summary of the options to @code{objdump} and exit.
1376
1377@item -i
1378@itemx --info
1379@cindex architectures available
1380@cindex object formats available
1381Display a list showing all architectures and object formats available
1382for specification with @samp{-b} or @samp{-m}.
1383
1384@item -j @var{name}
1385@itemx --section=@var{name}
1386@cindex section information
1387Display information only for section @var{name}.
1388
1389@item -l
1390@itemx --line-numbers
1391@cindex source filenames for object files
1392Label the display (using debugging information) with the filename and
1393source line numbers corresponding to the object code or relocs shown.
1394Only useful with @samp{-d}, @samp{-D}, or @samp{-r}.
1395
1396@item -m @var{machine}
1397@itemx --architecture=@var{machine}
1398@cindex architecture
1399@cindex disassembly architecture
1400Specify the architecture to use when disassembling object files. This
1401can be useful when disassembling object files which do not describe
1402architecture information, such as S-records. You can list the available
1403architectures with the @samp{-i} option.
1404
dd92f639
NC
1405@item -M @var{options}
1406@itemx --disassembler-options=@var{options}
1407Pass target specific information to the disassembler. Only supported on
1408some targets.
1409
1410If the target is an ARM architecture then this switch can be used to
1411select which register name set is used during disassembler. Specifying
58efb6c0
NC
1412@samp{-M reg-name-std} (the default) will select the register names as
1413used in ARM's instruction set documentation, but with register 13 called
1414'sp', register 14 called 'lr' and register 15 called 'pc'. Specifying
1415@samp{-M reg-names-apcs} will select the name set used by the ARM
1416Procedure Call Standard, whilst specifying @samp{-M reg-names-raw} will
1417just use @samp{r} followed by the register number.
1418
1419There are also two variants on the APCS register naming scheme enabled
0fff8110 1420by @samp{-M reg-names-atpcs} and @samp{-M reg-names-special-atpcs} which
58efb6c0
NC
1421use the ARM/Thumb Procedure Call Standard naming conventions. (Eiuther
1422with the normal register name sor the special register names).
dd92f639 1423
8f915f68
NC
1424This option can also be used for ARM architectures to force the
1425disassembler to interpret all instructions as THUMB instructions by
1426using the switch @samp{--disassembler-options=force-thumb}. This can be
1427useful when attempting to disassemble thumb code produced by other
1428compilers.
1429
252b5132
RH
1430@item -p
1431@itemx --private-headers
1432Print information that is specific to the object file format. The exact
1433information printed depends upon the object file format. For some
1434object file formats, no additional information is printed.
1435
1436@item -r
1437@itemx --reloc
1438@cindex relocation entries, in object file
1439Print the relocation entries of the file. If used with @samp{-d} or
1440@samp{-D}, the relocations are printed interspersed with the
1441disassembly.
1442
1443@item -R
1444@itemx --dynamic-reloc
1445@cindex dynamic relocation entries, in object file
1446Print the dynamic relocation entries of the file. This is only
1447meaningful for dynamic objects, such as certain types of shared
1448libraries.
1449
1450@item -s
1451@itemx --full-contents
1452@cindex sections, full contents
1453@cindex object file sections
1454Display the full contents of any sections requested.
1455
1456@item -S
1457@itemx --source
1458@cindex source disassembly
1459@cindex disassembly, with source
1460Display source code intermixed with disassembly, if possible. Implies
1461@samp{-d}.
1462
1463@item --show-raw-insn
1464When disassembling instructions, print the instruction in hex as well as
1465in symbolic form. This is the default except when
1466@code{--prefix-addresses} is used.
1467
1468@item --no-show-raw-insn
1469When disassembling instructions, do not print the instruction bytes.
1470This is the default when @code{--prefix-addresses} is used.
1471
1dada9c5 1472@item -G
252b5132
RH
1473@item --stabs
1474@cindex stab
1475@cindex .stab
1476@cindex debug symbols
1477@cindex ELF object file format
1478Display the full contents of any sections requested. Display the
1479contents of the .stab and .stab.index and .stab.excl sections from an
1480ELF file. This is only useful on systems (such as Solaris 2.0) in which
1481@code{.stab} debugging symbol-table entries are carried in an ELF
1482section. In most other file formats, debugging symbol-table entries are
1483interleaved with linkage symbols, and are visible in the @samp{--syms}
1484output. For more information on stabs symbols, see @ref{Top,Stabs,Stabs
1485Overview,stabs.info, The ``stabs'' debug format}.
1486
1487@item --start-address=@var{address}
1488@cindex start-address
1489Start displaying data at the specified address. This affects the output
1490of the @code{-d}, @code{-r} and @code{-s} options.
1491
1492@item --stop-address=@var{address}
1493@cindex stop-address
1494Stop displaying data at the specified address. This affects the output
1495of the @code{-d}, @code{-r} and @code{-s} options.
1496
1497@item -t
1498@itemx --syms
1499@cindex symbol table entries, printing
1500Print the symbol table entries of the file.
1501This is similar to the information provided by the @samp{nm} program.
1502
1503@item -T
1504@itemx --dynamic-syms
1505@cindex dynamic symbol table entries, printing
1506Print the dynamic symbol table entries of the file. This is only
1507meaningful for dynamic objects, such as certain types of shared
1508libraries. This is similar to the information provided by the @samp{nm}
1509program when given the @samp{-D} (@samp{--dynamic}) option.
1510
1511@item --version
1512Print the version number of @code{objdump} and exit.
1513
1514@item -x
1515@itemx --all-header
1516@cindex all header information, object file
1517@cindex header information, all
1518Display all available header information, including the symbol table and
1519relocation entries. Using @samp{-x} is equivalent to specifying all of
1520@samp{-a -f -h -r -t}.
1521
1522@item -w
1523@itemx --wide
1524@cindex wide output, printing
1525Format some lines for output devices that have more than 80 columns.
1526@end table
1527
1528@node ranlib
1529@chapter ranlib
1530
1531@kindex ranlib
1532@cindex archive contents
1533@cindex symbol index
1534
1535@smallexample
1536ranlib [-vV] @var{archive}
1537@end smallexample
1538
1539@code{ranlib} generates an index to the contents of an archive and
1540stores it in the archive. The index lists each symbol defined by a
1541member of an archive that is a relocatable object file.
1542
1543You may use @samp{nm -s} or @samp{nm --print-armap} to list this index.
1544
1545An archive with such an index speeds up linking to the library and
1546allows routines in the library to call each other without regard to
1547their placement in the archive.
1548
1549The @sc{gnu} @code{ranlib} program is another form of @sc{gnu} @code{ar}; running
1550@code{ranlib} is completely equivalent to executing @samp{ar -s}.
1551@xref{ar}.
1552
1553@table @code
1554@item -v
1555@itemx -V
f20a759a 1556@itemx --version
252b5132
RH
1557Show the version number of @code{ranlib}.
1558@end table
1559
1560@node size
1561@chapter size
1562
1563@kindex size
1564@cindex section sizes
1565
1566@smallexample
1567size [ -A | -B | --format=@var{compatibility} ]
1568 [ --help ] [ -d | -o | -x | --radix=@var{number} ]
1569 [ --target=@var{bfdname} ] [ -V | --version ]
1570 [ @var{objfile}@dots{} ]
1571@end smallexample
1572
1573The @sc{gnu} @code{size} utility lists the section sizes---and the total
1574size---for each of the object or archive files @var{objfile} in its
1575argument list. By default, one line of output is generated for each
1576object file or each module in an archive.
1577
1578@var{objfile}@dots{} are the object files to be examined.
1579If none are specified, the file @code{a.out} will be used.
1580
1581The command line options have the following meanings:
1582
1583@table @code
1584@item -A
1585@itemx -B
1586@itemx --format=@var{compatibility}
1587@cindex @code{size} display format
1588Using one of these options, you can choose whether the output from @sc{gnu}
1589@code{size} resembles output from System V @code{size} (using @samp{-A},
1590or @samp{--format=sysv}), or Berkeley @code{size} (using @samp{-B}, or
1591@samp{--format=berkeley}). The default is the one-line format similar to
1592Berkeley's.
1593@c Bonus for doc-source readers: you can also say --format=strange (or
1594@c anything else that starts with 's') for sysv, and --format=boring (or
1595@c anything else that starts with 'b') for Berkeley.
1596
1597Here is an example of the Berkeley (default) format of output from
1598@code{size}:
1599@smallexample
f20a759a 1600$ size --format=Berkeley ranlib size
252b5132
RH
1601text data bss dec hex filename
1602294880 81920 11592 388392 5ed28 ranlib
1603294880 81920 11888 388688 5ee50 size
1604@end smallexample
1605
1606@noindent
1607This is the same data, but displayed closer to System V conventions:
1608
1609@smallexample
f20a759a 1610$ size --format=SysV ranlib size
252b5132
RH
1611ranlib :
1612section size addr
1613.text 294880 8192
1614.data 81920 303104
1615.bss 11592 385024
1616Total 388392
1617
1618
1619size :
1620section size addr
1621.text 294880 8192
1622.data 81920 303104
1623.bss 11888 385024
1624Total 388688
1625@end smallexample
1626
1627@item --help
1628Show a summary of acceptable arguments and options.
1629
1630@item -d
1631@itemx -o
1632@itemx -x
1633@itemx --radix=@var{number}
1634@cindex @code{size} number format
1635@cindex radix for section sizes
1636Using one of these options, you can control whether the size of each
1637section is given in decimal (@samp{-d}, or @samp{--radix=10}); octal
1638(@samp{-o}, or @samp{--radix=8}); or hexadecimal (@samp{-x}, or
1639@samp{--radix=16}). In @samp{--radix=@var{number}}, only the three
1640values (8, 10, 16) are supported. The total size is always given in two
1641radices; decimal and hexadecimal for @samp{-d} or @samp{-x} output, or
1642octal and hexadecimal if you're using @samp{-o}.
1643
1644@item --target=@var{bfdname}
1645@cindex object code format
1646Specify that the object-code format for @var{objfile} is
1647@var{bfdname}. This option may not be necessary; @code{size} can
1648automatically recognize many formats.
1649@xref{Target Selection}, for more information.
1650
1651@item -V
1652@itemx --version
1653Display the version number of @code{size}.
1654@end table
1655
1656@node strings
1657@chapter strings
1658@kindex strings
1659@cindex listings strings
1660@cindex printing strings
1661@cindex strings, printing
1662
1663@smallexample
1664strings [-afov] [-@var{min-len}] [-n @var{min-len}] [-t @var{radix}] [-]
1665 [--all] [--print-file-name] [--bytes=@var{min-len}]
1666 [--radix=@var{radix}] [--target=@var{bfdname}]
1667 [--help] [--version] @var{file}@dots{}
1668@end smallexample
1669
1670For each @var{file} given, @sc{gnu} @code{strings} prints the printable
1671character sequences that are at least 4 characters long (or the number
1672given with the options below) and are followed by an unprintable
1673character. By default, it only prints the strings from the initialized
1674and loaded sections of object files; for other types of files, it prints
1675the strings from the whole file.
1676
1677@code{strings} is mainly useful for determining the contents of non-text
1678files.
1679
1680@table @code
1681@item -a
1682@itemx --all
1683@itemx -
1684Do not scan only the initialized and loaded sections of object files;
1685scan the whole files.
1686
1687@item -f
1688@itemx --print-file-name
1689Print the name of the file before each string.
1690
1691@item --help
1692Print a summary of the program usage on the standard output and exit.
1693
1694@item -@var{min-len}
1695@itemx -n @var{min-len}
1696@itemx --bytes=@var{min-len}
1697Print sequences of characters that are at least @var{min-len} characters
1698long, instead of the default 4.
1699
1700@item -o
1701Like @samp{-t o}. Some other versions of @code{strings} have @samp{-o}
1702act like @samp{-t d} instead. Since we can not be compatible with both
1703ways, we simply chose one.
1704
1705@item -t @var{radix}
1706@itemx --radix=@var{radix}
1707Print the offset within the file before each string. The single
1708character argument specifies the radix of the offset---@samp{o} for
1709octal, @samp{x} for hexadecimal, or @samp{d} for decimal.
1710
1711@item --target=@var{bfdname}
1712@cindex object code format
1713Specify an object code format other than your system's default format.
1714@xref{Target Selection}, for more information.
1715
1716@item -v
1717@itemx --version
1718Print the program version number on the standard output and exit.
1719@end table
1720
1721@node strip
1722@chapter strip
1723
1724@kindex strip
1725@cindex removing symbols
1726@cindex discarding symbols
1727@cindex symbols, discarding
1728
1729@smallexample
1730strip [ -F @var{bfdname} | --target=@var{bfdname} ]
1731 [ -I @var{bfdname} | --input-target=@var{bfdname} ]
1732 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
1733 [ -s | --strip-all ] [ -S | -g | --strip-debug ]
1734 [ -K @var{symbolname} | --keep-symbol=@var{symbolname} ]
1735 [ -N @var{symbolname} | --strip-symbol=@var{symbolname} ]
1736 [ -x | --discard-all ] [ -X | --discard-locals ]
1737 [ -R @var{sectionname} | --remove-section=@var{sectionname} ]
1738 [ -o @var{file} ] [ -p | --preserve-dates ]
1739 [ -v | --verbose ] [ -V | --version ] [ --help ]
1740 @var{objfile}@dots{}
1741@end smallexample
1742
1743@sc{gnu} @code{strip} discards all symbols from object files
1744@var{objfile}. The list of object files may include archives.
1745At least one object file must be given.
1746
1747@code{strip} modifies the files named in its argument,
1748rather than writing modified copies under different names.
1749
1750@table @code
1751@item -F @var{bfdname}
1752@itemx --target=@var{bfdname}
1753Treat the original @var{objfile} as a file with the object
1754code format @var{bfdname}, and rewrite it in the same format.
1755@xref{Target Selection}, for more information.
1756
1757@item --help
1758Show a summary of the options to @code{strip} and exit.
1759
1760@item -I @var{bfdname}
1761@itemx --input-target=@var{bfdname}
1762Treat the original @var{objfile} as a file with the object
1763code format @var{bfdname}.
1764@xref{Target Selection}, for more information.
1765
1766@item -O @var{bfdname}
1767@itemx --output-target=@var{bfdname}
1768Replace @var{objfile} with a file in the output format @var{bfdname}.
1769@xref{Target Selection}, for more information.
1770
1771@item -R @var{sectionname}
1772@itemx --remove-section=@var{sectionname}
1773Remove any section named @var{sectionname} from the output file. This
1774option may be given more than once. Note that using this option
1775inappropriately may make the output file unusable.
1776
1777@item -s
1778@itemx --strip-all
1779Remove all symbols.
1780
1781@item -g
1782@itemx -S
1783@itemx --strip-debug
1784Remove debugging symbols only.
1785
1786@item --strip-unneeded
1787Remove all symbols that are not needed for relocation processing.
1788
1789@item -K @var{symbolname}
1790@itemx --keep-symbol=@var{symbolname}
1791Keep only symbol @var{symbolname} from the source file. This option may
1792be given more than once.
1793
1794@item -N @var{symbolname}
1795@itemx --strip-symbol=@var{symbolname}
1796Remove symbol @var{symbolname} from the source file. This option may be
1797given more than once, and may be combined with strip options other than
1798@code{-K}.
1799
1800@item -o @var{file}
1801Put the stripped output in @var{file}, rather than replacing the
1802existing file. When this argument is used, only one @var{objfile}
1803argument may be specified.
1804
1805@item -p
1806@itemx --preserve-dates
1807Preserve the access and modification dates of the file.
1808
1809@item -x
1810@itemx --discard-all
1811Remove non-global symbols.
1812
1813@item -X
1814@itemx --discard-locals
1815Remove compiler-generated local symbols.
1816(These usually start with @samp{L} or @samp{.}.)
1817
1818@item -V
1819@itemx --version
1820Show the version number for @code{strip}.
1821
1822@item -v
1823@itemx --verbose
1824Verbose output: list all object files modified. In the case of
1825archives, @samp{strip -v} lists all members of the archive.
1826@end table
1827
9d51cc66 1828@node c++filt, addr2line, strip, Top
252b5132
RH
1829@chapter c++filt
1830
1831@kindex c++filt
1832@cindex demangling C++ symbols
1833
1834@smallexample
1835c++filt [ -_ | --strip-underscores ]
1836 [ -j | --java ]
1837 [ -n | --no-strip-underscores ]
1838 [ -s @var{format} | --format=@var{format} ]
1839 [ --help ] [ --version ] [ @var{symbol}@dots{} ]
1840@end smallexample
1841
9d51cc66 1842@kindex cxxfilt
252b5132
RH
1843The C++ and Java languages provides function overloading, which means
1844that you can write many functions with the same name (providing each
1845takes parameters of different types). All C++ and Java function names
1846are encoded into a low-level assembly label (this process is known as
9d51cc66
ILT
1847@dfn{mangling}). The @code{c++filt}
1848@footnote{MS-DOS does not allow @kbd{+} characters in file names, so on
1849MS-DOS this program is named @code{cxxfilt}.}
1850program does the inverse mapping: it decodes (@dfn{demangles}) low-level
1851names into user-level names so that the linker can keep these overloaded
1852functions from clashing.
252b5132
RH
1853
1854Every alphanumeric word (consisting of letters, digits, underscores,
1855dollars, or periods) seen in the input is a potential label. If the
1856label decodes into a C++ name, the C++ name replaces the low-level
1857name in the output.
1858
1859You can use @code{c++filt} to decipher individual symbols:
1860
1861@example
1862c++filt @var{symbol}
1863@end example
1864
1865If no @var{symbol} arguments are given, @code{c++filt} reads symbol
1866names from the standard input and writes the demangled names to the
1867standard output. All results are printed on the standard output.
1868
1869@table @code
1870@item -_
1871@itemx --strip-underscores
1872On some systems, both the C and C++ compilers put an underscore in front
1873of every name. For example, the C name @code{foo} gets the low-level
1874name @code{_foo}. This option removes the initial underscore. Whether
1875@code{c++filt} removes the underscore by default is target dependent.
1876
1877@item -j
1878@itemx --java
1879Prints demangled names using Java syntax. The default is to use C++
1880syntax.
1881
1882@item -n
1883@itemx --no-strip-underscores
1884Do not remove the initial underscore.
1885
1886@item -s @var{format}
1887@itemx --format=@var{format}
1888@sc{gnu} @code{nm} can decode three different methods of mangling, used by
1889different C++ compilers. The argument to this option selects which
1890method it uses:
1891
1892@table @code
1893@item gnu
1894the one used by the @sc{gnu} compiler (the default method)
1895@item lucid
1896the one used by the Lucid compiler
1897@item arm
1898the one specified by the C++ Annotated Reference Manual
1899@item hp
1900the one used by the HP compiler
1901@item edg
1902the one used by the EDG compiler
28c309a2
NC
1903@item gnu-new-abi
1904the one used by the @sc{gnu} compiler with the new ABI.
252b5132
RH
1905@end table
1906
1907@item --help
1908Print a summary of the options to @code{c++filt} and exit.
1909
1910@item --version
1911Print the version number of @code{c++filt} and exit.
1912@end table
1913
1914@quotation
1915@emph{Warning:} @code{c++filt} is a new utility, and the details of its
1916user interface are subject to change in future releases. In particular,
1917a command-line option may be required in the the future to decode a name
1918passed as an argument on the command line; in other words,
1919
1920@example
1921c++filt @var{symbol}
1922@end example
1923
1924@noindent
1925may in a future release become
1926
1927@example
1928c++filt @var{option} @var{symbol}
1929@end example
1930@end quotation
1931
1932@node addr2line
1933@chapter addr2line
1934
1935@kindex addr2line
1936@cindex address to file name and line number
1937
1938@smallexample
1939addr2line [ -b @var{bfdname} | --target=@var{bfdname} ]
28c309a2 1940 [ -C | --demangle[=@var{style} ]
252b5132
RH
1941 [ -e @var{filename} | --exe=@var{filename} ]
1942 [ -f | --functions ] [ -s | --basename ]
1943 [ -H | --help ] [ -V | --version ]
1944 [ addr addr ... ]
1945@end smallexample
1946
1947@code{addr2line} translates program addresses into file names and line
1948numbers. Given an address and an executable, it uses the debugging
1949information in the executable to figure out which file name and line
1950number are associated with a given address.
1951
1952The executable to use is specified with the @code{-e} option. The
f20a759a 1953default is the file @file{a.out}.
252b5132
RH
1954
1955@code{addr2line} has two modes of operation.
1956
1957In the first, hexadecimal addresses are specified on the command line,
1958and @code{addr2line} displays the file name and line number for each
1959address.
1960
1961In the second, @code{addr2line} reads hexadecimal addresses from
1962standard input, and prints the file name and line number for each
1963address on standard output. In this mode, @code{addr2line} may be used
1964in a pipe to convert dynamically chosen addresses.
1965
1966The format of the output is @samp{FILENAME:LINENO}. The file name and
1967line number for each address is printed on a separate line. If the
1968@code{-f} option is used, then each @samp{FILENAME:LINENO} line is
1969preceded by a @samp{FUNCTIONNAME} line which is the name of the function
1970containing the address.
1971
1972If the file name or function name can not be determined,
1973@code{addr2line} will print two question marks in their place. If the
1974line number can not be determined, @code{addr2line} will print 0.
1975
1976The long and short forms of options, shown here as alternatives, are
1977equivalent.
1978
1979@table @code
1980@item -b @var{bfdname}
1981@itemx --target=@var{bfdname}
1982@cindex object code format
1983Specify that the object-code format for the object files is
1984@var{bfdname}.
1985
1986@item -C
28c309a2 1987@itemx --demangle[=@var{style}]
252b5132
RH
1988@cindex demangling in objdump
1989Decode (@dfn{demangle}) low-level symbol names into user-level names.
1990Besides removing any initial underscore prepended by the system, this
28c309a2
NC
1991makes C++ function names readable. Different compilers have different
1992mangling styles. The optional demangling style argument can be used to
1993choose an appropriate demangling style for your compiler. @xref{c++filt},
1994for more information on demangling.
252b5132
RH
1995
1996@item -e @var{filename}
1997@itemx --exe=@var{filename}
1998Specify the name of the executable for which addresses should be
1999translated. The default file is @file{a.out}.
2000
2001@item -f
2002@itemx --functions
2003Display function names as well as file and line number information.
2004
2005@item -s
2006@itemx --basenames
2007Display only the base of each file name.
e107c42f 2008@end table
252b5132
RH
2009
2010@node nlmconv
2011@chapter nlmconv
2012
2013@code{nlmconv} converts a relocatable object file into a NetWare
2014Loadable Module.
2015
2016@ignore
2017@code{nlmconv} currently works with @samp{i386} object
2018files in @code{coff}, @sc{elf}, or @code{a.out} format, and @sc{SPARC}
2019object files in @sc{elf}, or @code{a.out} format@footnote{
2020@code{nlmconv} should work with any @samp{i386} or @sc{sparc} object
2021format in the Binary File Descriptor library. It has only been tested
2022with the above formats.}.
2023@end ignore
2024
2025@quotation
2026@emph{Warning:} @code{nlmconv} is not always built as part of the binary
2027utilities, since it is only useful for NLM targets.
2028@end quotation
2029
2030@smallexample
2031nlmconv [ -I @var{bfdname} | --input-target=@var{bfdname} ]
2032 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
2033 [ -T @var{headerfile} | --header-file=@var{headerfile} ]
2034 [ -d | --debug] [ -l @var{linker} | --linker=@var{linker} ]
2035 [ -h | --help ] [ -V | --version ]
2036 @var{infile} @var{outfile}
2037@end smallexample
2038
2039@code{nlmconv} converts the relocatable @samp{i386} object file
2040@var{infile} into the NetWare Loadable Module @var{outfile}, optionally
2041reading @var{headerfile} for NLM header information. For instructions
2042on writing the NLM command file language used in header files, see the
2043@samp{linkers} section, @samp{NLMLINK} in particular, of the @cite{NLM
2044Development and Tools Overview}, which is part of the NLM Software
2045Developer's Kit (``NLM SDK''), available from Novell, Inc.
2046@code{nlmconv} uses the @sc{gnu} Binary File Descriptor library to read
2047@var{infile}; see @ref{BFD,,BFD,ld.info,Using LD}, for
2048more information.
2049
2050@code{nlmconv} can perform a link step. In other words, you can list
2051more than one object file for input if you list them in the definitions
2052file (rather than simply specifying one input file on the command line).
2053In this case, @code{nlmconv} calls the linker for you.
2054
2055@table @code
2056@item -I @var{bfdname}
2057@itemx --input-target=@var{bfdname}
2058Object format of the input file. @code{nlmconv} can usually determine
2059the format of a given file (so no default is necessary).
2060@xref{Target Selection}, for more information.
2061
2062@item -O @var{bfdname}
2063@itemx --output-target=@var{bfdname}
2064Object format of the output file. @code{nlmconv} infers the output
2065format based on the input format, e.g. for a @samp{i386} input file the
2066output format is @samp{nlm32-i386}.
2067@xref{Target Selection}, for more information.
2068
2069@item -T @var{headerfile}
2070@itemx --header-file=@var{headerfile}
2071Reads @var{headerfile} for NLM header information. For instructions on
2072writing the NLM command file language used in header files, see@ see the
2073@samp{linkers} section, of the @cite{NLM Development and Tools
2074Overview}, which is part of the NLM Software Developer's Kit, available
2075from Novell, Inc.
2076
2077@item -d
2078@itemx --debug
2079Displays (on standard error) the linker command line used by @code{nlmconv}.
2080
2081@item -l @var{linker}
2082@itemx --linker=@var{linker}
2083Use @var{linker} for any linking. @var{linker} can be an absolute or a
2084relative pathname.
2085
2086@item -h
2087@itemx --help
2088Prints a usage summary.
2089
2090@item -V
2091@itemx --version
2092Prints the version number for @code{nlmconv}.
2093@end table
2094
2095@node windres
2096@chapter windres
2097
2098@code{windres} may be used to manipulate Windows resources.
2099
2100@quotation
2101@emph{Warning:} @code{windres} is not always built as part of the binary
2102utilities, since it is only useful for Windows targets.
2103@end quotation
2104
2105@smallexample
2106windres [options] [input-file] [output-file]
2107@end smallexample
2108
2109@code{windres} reads resources from an input file and copies them into
2110an output file. Either file may be in one of three formats:
2111
2112@table @code
2113@item rc
2114A text format read by the Resource Compiler.
2115
2116@item res
2117A binary format generated by the Resource Compiler.
2118
2119@item coff
2120A COFF object or executable.
2121@end table
2122
2123The exact description of these different formats is available in
2124documentation from Microsoft.
2125
2126When @code{windres} converts from the @code{rc} format to the @code{res}
2127format, it is acting like the Windows Resource Compiler. When
2128@code{windres} converts from the @code{res} format to the @code{coff}
2129format, it is acting like the Windows @code{CVTRES} program.
2130
2131When @code{windres} generates an @code{rc} file, the output is similar
2132but not identical to the format expected for the input. When an input
2133@code{rc} file refers to an external filename, an output @code{rc} file
2134will instead include the file contents.
2135
2136If the input or output format is not specified, @code{windres} will
2137guess based on the file name, or, for the input file, the file contents.
2138A file with an extension of @file{.rc} will be treated as an @code{rc}
2139file, a file with an extension of @file{.res} will be treated as a
2140@code{res} file, and a file with an extension of @file{.o} or
2141@file{.exe} will be treated as a @code{coff} file.
2142
2143If no output file is specified, @code{windres} will print the resources
2144in @code{rc} format to standard output.
2145
2146The normal use is for you to write an @code{rc} file, use @code{windres}
2147to convert it to a COFF object file, and then link the COFF file into
2148your application. This will make the resources described in the
2149@code{rc} file available to Windows.
2150
2151@table @code
2152@item -i @var{filename}
2153@itemx --input @var{filename}
2154The name of the input file. If this option is not used, then
2155@code{windres} will use the first non-option argument as the input file
2156name. If there are no non-option arguments, then @code{windres} will
2157read from standard input. @code{windres} can not read a COFF file from
2158standard input.
2159
2160@item -o @var{filename}
2161@itemx --output @var{filename}
2162The name of the output file. If this option is not used, then
2163@code{windres} will use the first non-option argument, after any used
2164for the input file name, as the output file name. If there is no
2165non-option argument, then @code{windres} will write to standard output.
2166@code{windres} can not write a COFF file to standard output.
2167
2168@item -I @var{format}
2169@itemx --input-format @var{format}
2170The input format to read. @var{format} may be @samp{res}, @samp{rc}, or
2171@samp{coff}. If no input format is specified, @code{windres} will
2172guess, as described above.
2173
2174@item -O @var{format}
2175@itemx --output-format @var{format}
2176The output format to generate. @var{format} may be @samp{res},
2177@samp{rc}, or @samp{coff}. If no output format is specified,
2178@code{windres} will guess, as described above.
2179
2180@item -F @var{target}
2181@itemx --target @var{target}
2182Specify the BFD format to use for a COFF file as input or output. This
2183is a BFD target name; you can use the @code{--help} option to see a list
2184of supported targets. Normally @code{windres} will use the default
2185format, which is the first one listed by the @code{--help} option.
2186@ref{Target Selection}.
2187
2188@item --preprocessor @var{program}
2189When @code{windres} reads an @code{rc} file, it runs it through the C
2190preprocessor first. This option may be used to specify the preprocessor
2191to use, including any leading arguments. The default preprocessor
2192argument is @code{gcc -E -xc-header -DRC_INVOKED}.
2193
2194@item --include-dir @var{directory}
2195Specify an include directory to use when reading an @code{rc} file.
2196@code{windres} will pass this to the preprocessor as an @code{-I}
2197option. @code{windres} will also search this directory when looking for
2198files named in the @code{rc} file.
2199
751d21b5 2200@item -D @var{target}
ad0481cd 2201@itemx --define @var{sym}[=@var{val}]
252b5132
RH
2202Specify a @code{-D} option to pass to the preprocessor when reading an
2203@code{rc} file.
2204
751d21b5
DD
2205@item -v
2206Enable verbose mode. This tells you what the preprocessor is if you
2207didn't specify one.
2208
252b5132
RH
2209@item --language @var{val}
2210Specify the default language to use when reading an @code{rc} file.
2211@var{val} should be a hexadecimal language code. The low eight bits are
2212the language, and the high eight bits are the sublanguage.
2213
5a298d2d
NC
2214@item --use-temp-file
2215Use a temporary file to instead of using popen to read the output of
2216the preprocessor. Use this option if the popen implementation is buggy
2217on the host (eg., certain non-English language versions of Windows 95 and
2218Windows 98 are known to have buggy popen where the output will instead
2219go the console).
2220
2221@item --no-use-temp-file
2222Use popen, not a temporary file, to read the output of the preprocessor.
2223This is the default behaviour.
2224
252b5132
RH
2225@item --help
2226Prints a usage summary.
2227
2228@item --version
2229Prints the version number for @code{windres}.
2230
2231@item --yydebug
2232If @code{windres} is compiled with @code{YYDEBUG} defined as @code{1},
2233this will turn on parser debugging.
2234@end table
2235
2236
2237@node dlltool
2238@chapter Create files needed to build and use DLLs
2239@cindex DLL
2240@kindex dlltool
2241
2242@code{dlltool} may be used to create the files needed to build and use
2243dynamic link libraries (DLLs).
2244
2245@quotation
2246@emph{Warning:} @code{dlltool} is not always built as part of the binary
2247utilities, since it is only useful for those targets which support DLLs.
2248@end quotation
2249
2250@smallexample
2251dlltool [-d|--input-def @var{def-file-name}]
2252 [-b|--base-file @var{base-file-name}]
2253 [-e|--output-exp @var{exports-file-name}]
2254 [-z|--output-def @var{def-file-name}]
2255 [-l|--output-lib @var{library-file-name}]
2256 [--export-all-symbols] [--no-export-all-symbols]
2257 [--exclude-symbols @var{list}]
2258 [--no-default-excludes]
2259 [-S|--as @var{path-to-assembler}] [-f|--as-flags @var{options}]
2260 [-D|--dllname @var{name}] [-m|--machine @var{machine}]
2261 [-a|--add-indirect] [-U|--add-underscore] [-k|--kill-at]
2262 [-A|--add-stdcall-alias]
2263 [-x|--no-idata4] [-c|--no-idata5] [-i|--interwork]
2264 [-n|--nodelete] [-v|--verbose] [-h|--help] [-V|--version]
2265 [object-file @dots{}]
2266@end smallexample
2267
2268@code{dlltool} reads its inputs, which can come from the @samp{-d} and
2269@samp{-b} options as well as object files specified on the command
2270line. It then processes these inputs and if the @samp{-e} option has
2271been specified it creates a exports file. If the @samp{-l} option
2272has been specified it creates a library file and if the @samp{-z} option
2273has been specified it creates a def file. Any or all of the -e, -l
2274and -z options can be present in one invocation of dlltool.
2275
2276When creating a DLL, along with the source for the DLL, it is necessary
2277to have three other files. @code{dlltool} can help with the creation of
2278these files.
2279
2280The first file is a @samp{.def} file which specifies which functions are
2281exported from the DLL, which functions the DLL imports, and so on. This
2282is a text file and can be created by hand, or @code{dlltool} can be used
2283to create it using the @samp{-z} option. In this case @code{dlltool}
2284will scan the object files specified on its command line looking for
2285those functions which have been specially marked as being exported and
2286put entries for them in the .def file it creates.
2287
2288In order to mark a function as being exported from a DLL, it needs to
2289have an @samp{-export:<name_of_function>} entry in the @samp{.drectve}
2290section of the object file. This can be done in C by using the
2291asm() operator:
2292
2293@smallexample
2294 asm (".section .drectve");
2295 asm (".ascii \"-export:my_func\"");
2296
2297 int my_func (void) @{ @dots{} @}
2298@end smallexample
2299
2300The second file needed for DLL creation is an exports file. This file
2301is linked with the object files that make up the body of the DLL and it
2302handles the interface between the DLL and the outside world. This is a
2303binary file and it can be created by giving the @samp{-e} option to
2304@code{dlltool} when it is creating or reading in a .def file.
2305
2306The third file needed for DLL creation is the library file that programs
2307will link with in order to access the functions in the DLL. This file
2308can be created by giving the @samp{-l} option to dlltool when it
2309is creating or reading in a .def file.
2310
2311@code{dlltool} builds the library file by hand, but it builds the
2312exports file by creating temporary files containing assembler statements
2313and then assembling these. The @samp{-S} command line option can be
2314used to specify the path to the assembler that dlltool will use,
2315and the @samp{-f} option can be used to pass specific flags to that
2316assembler. The @samp{-n} can be used to prevent dlltool from deleting
2317these temporary assembler files when it is done, and if @samp{-n} is
2318specified twice then this will prevent dlltool from deleting the
2319temporary object files it used to build the library.
2320
2321Here is an example of creating a DLL from a source file @samp{dll.c} and
2322also creating a program (from an object file called @samp{program.o})
2323that uses that DLL:
2324
2325@smallexample
2326 gcc -c dll.c
2327 dlltool -e exports.o -l dll.lib dll.o
2328 gcc dll.o exports.o -o dll.dll
2329 gcc program.o dll.lib -o program
2330@end smallexample
2331
2332The command line options have the following meanings:
2333
2334@table @code
2335
2336@item -d @var{filename}
2337@itemx --input-def @var{filename}
2338@cindex input .def file
2339Specifies the name of a .def file to be read in and processed.
2340
2341@item -b @var{filename}
2342@itemx --base-file @var{filename}
2343@cindex base files
2344Specifies the name of a base file to be read in and processed. The
2345contents of this file will be added to the relocation section in the
2346exports file generated by dlltool.
2347
2348@item -e @var{filename}
2349@itemx --output-exp @var{filename}
2350Specifies the name of the export file to be created by dlltool.
2351
2352@item -z @var{filename}
2353@itemx --output-def @var{filename}
2354Specifies the name of the .def file to be created by dlltool.
2355
2356@item -l @var{filename}
2357@itemx --output-lib @var{filename}
2358Specifies the name of the library file to be created by dlltool.
2359
2360@item --export-all-symbols
2361Treat all global and weak defined symbols found in the input object
2362files as symbols to be exported. There is a small list of symbols which
2363are not exported by default; see the @code{--no-default-excludes}
2364option. You may add to the list of symbols to not export by using the
2365@code{--exclude-symbols} option.
2366
2367@item --no-export-all-symbols
2368Only export symbols explicitly listed in an input .def file or in
2369@samp{.drectve} sections in the input object files. This is the default
2370behaviour. The @samp{.drectve} sections are created by @samp{dllexport}
2371attributes in the source code.
2372
2373@item --exclude-symbols @var{list}
2374Do not export the symbols in @var{list}. This is a list of symbol names
2375separated by comma or colon characters. The symbol names should not
2376contain a leading underscore. This is only meaningful when
2377@code{--export-all-symbols} is used.
2378
2379@item --no-default-excludes
2380When @code{--export-all-symbols} is used, it will by default avoid
2381exporting certain special symbols. The current list of symbols to avoid
2382exporting is @samp{DllMain@@12}, @samp{DllEntryPoint@@0},
2383@samp{impure_ptr}. You may use the @code{--no-default-excludes} option
2384to go ahead and export these special symbols. This is only meaningful
2385when @code{--export-all-symbols} is used.
2386
2387@item -S @var{path}
2388@itemx --as @var{path}
2389Specifies the path, including the filename, of the assembler to be used
2390to create the exports file.
2391
2392@item -f @var{switches}
2393@itemx --as-flags @var{switches}
2394Specifies any specific command line switches to be passed to the
2395assembler when building the exports file. This option will work even if
2396the @samp{-S} option is not used. This option only takes one argument,
2397and if it occurs more than once on the command line, then later
2398occurrences will override earlier occurrences. So if it is necessary to
2399pass multiple switches to the assembler they should be enclosed in
2400double quotes.
2401
2402@item -D @var{name}
2403@itemx --dll-name @var{name}
2404Specifies the name to be stored in the .def file as the name of the DLL
2405when the @samp{-e} option is used. If this option is not present, then
2406the filename given to the @samp{-e} option will be used as the name of
2407the DLL.
2408
2409@item -m @var{machine}
2410@itemx -machine @var{machine}
2411Specifies the type of machine for which the library file should be
2412built. @code{dlltool} has a built in default type, depending upon how
2413it was created, but this option can be used to override that. This is
2414normally only useful when creating DLLs for an ARM processor, when the
2415contents of the DLL are actually encode using THUMB instructions.
2416
2417@item -a
2418@itemx --add-indirect
2419Specifies that when @code{dlltool} is creating the exports file it
2420should add a section which allows the exported functions to be
2421referenced without using the import library. Whatever the hell that
2422means!
2423
2424@item -U
2425@itemx --add-underscore
2426Specifies that when @code{dlltool} is creating the exports file it
2427should prepend an underscore to the names of the exported functions.
2428
2429@item -k
2430@itemx --kill-at
2431Specifies that when @code{dlltool} is creating the exports file it
2432should not append the string @samp{@@ <number>}. These numbers are
2433called ordinal numbers and they represent another way of accessing the
2434function in a DLL, other than by name.
2435
2436@item -A
2437@itemx --add-stdcall-alias
2438Specifies that when @code{dlltool} is creating the exports file it
2439should add aliases for stdcall symbols without @samp{@@ <number>}
2440in addition to the symbols with @samp{@@ <number>}.
2441
2442@item -x
2443@itemx --no-idata4
2444Specifies that when @code{dlltool} is creating the exports and library
2445files it should omit the .idata4 section. This is for compatibility
2446with certain operating systems.
2447
2448@item -c
2449@itemx --no-idata5
2450Specifies that when @code{dlltool} is creating the exports and library
2451files it should omit the .idata5 section. This is for compatibility
2452with certain operating systems.
2453
2454@item -i
2455@itemx --interwork
2456Specifies that @code{dlltool} should mark the objects in the library
2457file and exports file that it produces as supporting interworking
2458between ARM and THUMB code.
2459
2460@item -n
2461@itemx --nodelete
2462Makes @code{dlltool} preserve the temporary assembler files it used to
2463create the exports file. If this option is repeated then dlltool will
2464also preserve the temporary object files it uses to create the library
2465file.
2466
2467@item -v
2468@itemx --verbose
2469Make dlltool describe what it is doing.
2470
2471@item -h
2472@itemx --help
2473Displays a list of command line options and then exits.
2474
2475@item -V
2476@itemx --version
2477Displays dlltool's version number and then exits.
2478
2479@end table
2480
2481@node readelf
2482@chapter readelf
2483
2484@cindex ELF file information
2485@kindex readelf
2486
2487@smallexample
2488readelf [ -a | --all ]
2489 [ -h | --file-header]
2490 [ -l | --program-headers | --segments]
2491 [ -S | --section-headers | --sections]
2492 [ -e | --headers]
2493 [ -s | --syms | --symbols]
779fe533 2494 [ -n | --notes]
252b5132 2495 [ -r | --relocs]
f5e21966 2496 [ -u | --unwind]
252b5132
RH
2497 [ -d | --dynamic]
2498 [ -V | --version-info]
2499 [ -D | --use-dynamic]
2500 [ -x <number> | --hex-dump=<number>]
c47d488e 2501 [ -w[liaprf] | --debug-dump[=info,=line,=abbrev,=pubnames,=ranges,=frames]]
252b5132
RH
2502 [ --histogram]
2503 [ -v | --version]
2504 [ -H | --help]
2505 @var{elffile}@dots{}
2506@end smallexample
2507
2508@code{readelf} displays information about one or more ELF format object
2509files. The options control what particular information to display.
2510
2511@var{elffile}@dots{} are the object files to be examined. At the
2512moment, @code{readelf} does not support examining archives, nor does it
2513support examing 64 bit ELF files.
2514
2515The long and short forms of options, shown here as alternatives, are
2516equivalent. At least one option besides @samp{-v} or @samp{-H} must be
2517given.
2518
2519@table @code
2520@item -a
2521@itemx --all
2522Equivalent to specifiying @samp{--file-header},
2523@samp{--program-headers}, @samp{--sections}, @samp{--symbols},
779fe533
NC
2524@samp{--relocs}, @samp{--dynamic}, @samp{--notes} and
2525@samp{--version-info}.
252b5132
RH
2526
2527@item -h
2528@itemx --file-header
2529@cindex ELF file header information
2530Displays the information contained in the ELF header at the start of the
2531file.
2532
2533@item -l
2534@itemx --program-headers
2535@itemx --segments
2536@cindex ELF program header information
2537@cindex ELF segment information
2538Displays the information contained in the file's segment headers, if it
2539has any.
2540
2541@item -S
2542@itemx --sections
2543@itemx --section-headers
2544@cindex ELF section information
2545Displays the information contained in the file's section headers, if it
2546has any.
2547
2548@item -s
2549@itemx --symbols
2550@itemx --syms
2551@cindex ELF symbol table information
2552Displays the entries in symbol table section of the file, if it has one.
2553
2554@item -e
2555@itemx --headers
2556Display all the headers in the file. Equivalent to @samp{-h -l -S}.
2557
779fe533
NC
2558@item -n
2559@itemx --notes
2560@cindex ELF core notes
2561Displays the contents of the NOTE segment, if it exists.
2562
252b5132
RH
2563@item -r
2564@itemx --relocs
2565@cindex ELF reloc information
f5e21966
NC
2566Displays the contents of the file's relocation section, if it has one.
2567
2568@item -u
2569@itemx --unwind
2570@cindex unwind information
2571Displays the contents of the file's unwind section, if it has one. Only
2572the unwind sections for IA64 ELF files are currently supported.
252b5132
RH
2573
2574@item -d
2575@itemx --dynamic
2576@cindex ELF dynamic section information
2577Displays the contents of the file's dynamic section, if it has one.
2578
2579@item -V
2580@itemx --version-info
2581@cindex ELF version sections informations
2582Displays the contents of the version sections in the file, it they
2583exist.
2584
2585@item -D
2586@itemx --use-dynamic
2587When displaying symbols, this option makes @code{readelf} use the
6dbb55b6 2588symbol table in the file's dynamic section, rather than the one in the
252b5132
RH
2589symbols section.
2590
2591@item -x <number>
2592@itemx --hex-dump=<number>
2593Displays the contents of the indicated section as a hexadecimal dump.
2594
c47d488e
DD
2595@item -w[liaprf]
2596@itemx --debug-dump[=line,=info,=abbrev,=pubnames,=ranges,=frames]
252b5132
RH
2597Displays the contents of the debug sections in the file, if any are
2598present. If one of the optional letters or words follows the switch
2599then only data found in those specific sections will be dumped.
2600
2601@item --histogram
2602Display a histogram of bucket list lengths when displaying the contents
2603of the symbol tables.
2604
2605@item -v
2606@itemx --version
2607Display the version number of readelf.
2608
2609@item -H
2610@itemx --help
2611Display the command line options understood by @code{readelf}.
2612
2613@end table
2614
2615
2616@node Selecting The Target System
2617@chapter Selecting the target system
2618
2619You can specify three aspects of the target system to the @sc{gnu}
2620binary file utilities, each in several ways:
2621
2622@itemize @bullet
2623@item
2624the target
2625
2626@item
2627the architecture
2628
2629@item
2630the linker emulation (which applies to the linker only)
2631@end itemize
2632
2633In the following summaries, the lists of ways to specify values are in
2634order of decreasing precedence. The ways listed first override those
2635listed later.
2636
2637The commands to list valid values only list the values for which the
2638programs you are running were configured. If they were configured with
2639@samp{--enable-targets=all}, the commands list most of the available
2640values, but a few are left out; not all targets can be configured in at
2641once because some of them can only be configured @dfn{native} (on hosts
2642with the same type as the target system).
2643
2644@menu
2645* Target Selection::
2646* Architecture Selection::
2647* Linker Emulation Selection::
2648@end menu
2649
2650@node Target Selection
2651@section Target Selection
2652
2653A @dfn{target} is an object file format. A given target may be
2654supported for multiple architectures (@pxref{Architecture Selection}).
2655A target selection may also have variations for different operating
2656systems or architectures.
2657
2658The command to list valid target values is @samp{objdump -i}
2659(the first column of output contains the relevant information).
2660
2661Some sample values are: @samp{a.out-hp300bsd}, @samp{ecoff-littlemips},
2662@samp{a.out-sunos-big}.
2663
2664You can also specify a target using a configuration triplet. This is
f20a759a
ILT
2665the same sort of name that is passed to @file{configure} to specify a
2666target. When you use a configuration triplet as an argument, it must be
2667fully canonicalized. You can see the canonical version of a triplet by
252b5132
RH
2668running the shell script @file{config.sub} which is included with the
2669sources.
2670
2671Some sample configuration triplets are: @samp{m68k-hp-bsd},
2672@samp{mips-dec-ultrix}, @samp{sparc-sun-sunos}.
2673
2674@subheading @code{objdump} Target
2675
2676Ways to specify:
2677
2678@enumerate
2679@item
2680command line option: @samp{-b} or @samp{--target}
2681
2682@item
2683environment variable @code{GNUTARGET}
2684
2685@item
2686deduced from the input file
2687@end enumerate
2688
2689@subheading @code{objcopy} and @code{strip} Input Target
2690
2691Ways to specify:
2692
2693@enumerate
2694@item
2695command line options: @samp{-I} or @samp{--input-target}, or @samp{-F} or @samp{--target}
2696
2697@item
2698environment variable @code{GNUTARGET}
2699
2700@item
2701deduced from the input file
2702@end enumerate
2703
2704@subheading @code{objcopy} and @code{strip} Output Target
2705
2706Ways to specify:
2707
2708@enumerate
2709@item
2710command line options: @samp{-O} or @samp{--output-target}, or @samp{-F} or @samp{--target}
2711
2712@item
2713the input target (see ``@code{objcopy} and @code{strip} Input Target'' above)
2714
2715@item
2716environment variable @code{GNUTARGET}
2717
2718@item
2719deduced from the input file
2720@end enumerate
2721
2722@subheading @code{nm}, @code{size}, and @code{strings} Target
2723
2724Ways to specify:
2725
2726@enumerate
2727@item
2728command line option: @samp{--target}
2729
2730@item
2731environment variable @code{GNUTARGET}
2732
2733@item
2734deduced from the input file
2735@end enumerate
2736
2737@subheading Linker Input Target
2738
2739Ways to specify:
2740
2741@enumerate
2742@item
2743command line option: @samp{-b} or @samp{--format}
2744(@pxref{Options,,Options,ld.info,Using LD})
2745
2746@item
2747script command @code{TARGET}
2748(@pxref{Option Commands,,Option Commands,ld.info,Using LD})
2749
2750@item
2751environment variable @code{GNUTARGET}
2752(@pxref{Environment,,Environment,ld.info,Using LD})
2753
2754@item
2755the default target of the selected linker emulation
2756(@pxref{Linker Emulation Selection})
2757@end enumerate
2758
2759@subheading Linker Output Target
2760
2761Ways to specify:
2762
2763@enumerate
2764@item
2765command line option: @samp{-oformat}
2766(@pxref{Options,,Options,ld.info,Using LD})
2767
2768@item
2769script command @code{OUTPUT_FORMAT}
2770(@pxref{Option Commands,,Option Commands,ld.info,Using LD})
2771
2772@item
2773the linker input target (see ``Linker Input Target'' above)
2774@end enumerate
2775
2776@node Architecture Selection
2777@section Architecture selection
2778
2779An @dfn{architecture} is a type of @sc{cpu} on which an object file is
2780to run. Its name may contain a colon, separating the name of the
2781processor family from the name of the particular @sc{cpu}.
2782
2783The command to list valid architecture values is @samp{objdump -i} (the
2784second column contains the relevant information).
2785
2786Sample values: @samp{m68k:68020}, @samp{mips:3000}, @samp{sparc}.
2787
2788@subheading @code{objdump} Architecture
2789
2790Ways to specify:
2791
2792@enumerate
2793@item
2794command line option: @samp{-m} or @samp{--architecture}
2795
2796@item
2797deduced from the input file
2798@end enumerate
2799
2800@subheading @code{objcopy}, @code{nm}, @code{size}, @code{strings} Architecture
2801
2802Ways to specify:
2803
2804@enumerate
2805@item
2806deduced from the input file
2807@end enumerate
2808
2809@subheading Linker Input Architecture
2810
2811Ways to specify:
2812
2813@enumerate
2814@item
2815deduced from the input file
2816@end enumerate
2817
2818@subheading Linker Output Architecture
2819
2820Ways to specify:
2821
2822@enumerate
2823@item
2824script command @code{OUTPUT_ARCH}
2825(@pxref{Option Commands,,Option Commands,ld.info,Using LD})
2826
2827@item
2828the default architecture from the linker output target
2829(@pxref{Target Selection})
2830@end enumerate
2831
2832@node Linker Emulation Selection
2833@section Linker emulation selection
2834
2835A linker @dfn{emulation} is a ``personality'' of the linker, which gives
2836the linker default values for the other aspects of the target system.
2837In particular, it consists of
2838
2839@itemize @bullet
2840@item
2841the linker script
2842
2843@item
2844the target
2845
2846@item
2847several ``hook'' functions that are run at certain stages of the linking
2848process to do special things that some targets require
2849@end itemize
2850
2851The command to list valid linker emulation values is @samp{ld -V}.
2852
2853Sample values: @samp{hp300bsd}, @samp{mipslit}, @samp{sun4}.
2854
2855Ways to specify:
2856
2857@enumerate
2858@item
2859command line option: @samp{-m}
2860(@pxref{Options,,Options,ld.info,Using LD})
2861
2862@item
2863environment variable @code{LDEMULATION}
2864
2865@item
2866compiled-in @code{DEFAULT_EMULATION} from @file{Makefile},
2867which comes from @code{EMUL} in @file{config/@var{target}.mt}
2868@end enumerate
2869
2870@node Reporting Bugs
2871@chapter Reporting Bugs
2872@cindex bugs
2873@cindex reporting bugs
2874
2875Your bug reports play an essential role in making the binary utilities
2876reliable.
2877
2878Reporting a bug may help you by bringing a solution to your problem, or
2879it may not. But in any case the principal function of a bug report is
2880to help the entire community by making the next version of the binary
2881utilities work better. Bug reports are your contribution to their
2882maintenance.
2883
2884In order for a bug report to serve its purpose, you must include the
2885information that enables us to fix the bug.
2886
2887@menu
2888* Bug Criteria:: Have you found a bug?
2889* Bug Reporting:: How to report bugs
2890@end menu
2891
2892@node Bug Criteria
2893@section Have you found a bug?
2894@cindex bug criteria
2895
2896If you are not sure whether you have found a bug, here are some guidelines:
2897
2898@itemize @bullet
2899@cindex fatal signal
2900@cindex crash
2901@item
2902If a binary utility gets a fatal signal, for any input whatever, that is
2903a bug. Reliable utilities never crash.
2904
2905@cindex error on valid input
2906@item
2907If a binary utility produces an error message for valid input, that is a
2908bug.
2909
2910@item
2911If you are an experienced user of binary utilities, your suggestions for
2912improvement are welcome in any case.
2913@end itemize
2914
2915@node Bug Reporting
2916@section How to report bugs
2917@cindex bug reports
2918@cindex bugs, reporting
2919
2920A number of companies and individuals offer support for @sc{gnu}
2921products. If you obtained the binary utilities from a support
2922organization, we recommend you contact that organization first.
2923
2924You can find contact information for many support companies and
2925individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
2926distribution.
2927
2928In any event, we also recommend that you send bug reports for the binary
2f952d20 2929utilities to @samp{bug-binutils@@gnu.org}.
252b5132
RH
2930
2931The fundamental principle of reporting bugs usefully is this:
2932@strong{report all the facts}. If you are not sure whether to state a
2933fact or leave it out, state it!
2934
2935Often people omit facts because they think they know what causes the
2936problem and assume that some details do not matter. Thus, you might
2937assume that the name of a file you use in an example does not matter.
2938Well, probably it does not, but one cannot be sure. Perhaps the bug is
2939a stray memory reference which happens to fetch from the location where
2940that pathname is stored in memory; perhaps, if the pathname were
2941different, the contents of that location would fool the utility into
2942doing the right thing despite the bug. Play it safe and give a
2943specific, complete example. That is the easiest thing for you to do,
2944and the most helpful.
2945
2946Keep in mind that the purpose of a bug report is to enable us to fix the bug if
2947it is new to us. Therefore, always write your bug reports on the assumption
2948that the bug has not been reported previously.
2949
2950Sometimes people give a few sketchy facts and ask, ``Does this ring a
2951bell?'' Those bug reports are useless, and we urge everyone to
2952@emph{refuse to respond to them} except to chide the sender to report
2953bugs properly.
2954
2955To enable us to fix the bug, you should include all these things:
2956
2957@itemize @bullet
2958@item
2959The version of the utility. Each utility announces it if you start it
2960with the @samp{--version} argument.
2961
2962Without this, we will not know whether there is any point in looking for
2963the bug in the current version of the binary utilities.
2964
2965@item
2966Any patches you may have applied to the source, including any patches
2967made to the @code{BFD} library.
2968
2969@item
2970The type of machine you are using, and the operating system name and
2971version number.
2972
2973@item
2974What compiler (and its version) was used to compile the utilities---e.g.
2975``@code{gcc-2.7}''.
2976
2977@item
2978The command arguments you gave the utility to observe the bug. To
2979guarantee you will not omit something important, list them all. A copy
2980of the Makefile (or the output from make) is sufficient.
2981
2982If we were to try to guess the arguments, we would probably guess wrong
2983and then we might not encounter the bug.
2984
2985@item
2986A complete input file, or set of input files, that will reproduce the
2987bug. If the utility is reading an object file or files, then it is
2988generally most helpful to send the actual object files, uuencoded if
757acbc5 2989necessary to get them through the mail system. Note that
2f952d20 2990@samp{bug-binutils@@gnu.org} is a mailing list, so you should avoid
757acbc5
ILT
2991sending very large files to it. Making the files available for
2992anonymous FTP is OK.
252b5132
RH
2993
2994If the source files were produced exclusively using @sc{gnu} programs
2995(e.g., @code{gcc}, @code{gas}, and/or the @sc{gnu} @code{ld}), then it
2996may be OK to send the source files rather than the object files. In
2997this case, be sure to say exactly what version of @code{gcc}, or
2998whatever, was used to produce the object files. Also say how
2999@code{gcc}, or whatever, was configured.
3000
3001@item
3002A description of what behavior you observe that you believe is
3003incorrect. For example, ``It gets a fatal signal.''
3004
3005Of course, if the bug is that the utility gets a fatal signal, then we
3006will certainly notice it. But if the bug is incorrect output, we might
3007not notice unless it is glaringly wrong. You might as well not give us
3008a chance to make a mistake.
3009
3010Even if the problem you experience is a fatal signal, you should still
f20a759a 3011say so explicitly. Suppose something strange is going on, such as your
252b5132
RH
3012copy of the utility is out of synch, or you have encountered a bug in
3013the C library on your system. (This has happened!) Your copy might
3014crash and ours would not. If you told us to expect a crash, then when
3015ours fails to crash, we would know that the bug was not happening for
3016us. If you had not told us to expect a crash, then we would not be able
3017to draw any conclusion from our observations.
3018
3019@item
3020If you wish to suggest changes to the source, send us context diffs, as
3021generated by @code{diff} with the @samp{-u}, @samp{-c}, or @samp{-p}
3022option. Always send diffs from the old file to the new file. If you
f20a759a
ILT
3023wish to discuss something in the @code{ld} source, refer to it by
3024context, not by line number.
252b5132
RH
3025
3026The line numbers in our development sources will not match those in your
3027sources. Your line numbers would convey no useful information to us.
3028@end itemize
3029
3030Here are some things that are not necessary:
3031
3032@itemize @bullet
3033@item
3034A description of the envelope of the bug.
3035
3036Often people who encounter a bug spend a lot of time investigating
3037which changes to the input file will make the bug go away and which
3038changes will not affect it.
3039
3040This is often time consuming and not very useful, because the way we
3041will find the bug is by running a single example under the debugger
3042with breakpoints, not by pure deduction from a series of examples.
3043We recommend that you save your time for something else.
3044
3045Of course, if you can find a simpler example to report @emph{instead}
3046of the original one, that is a convenience for us. Errors in the
3047output will be easier to spot, running under the debugger will take
3048less time, and so on.
3049
3050However, simplification is not vital; if you do not want to do this,
3051report the bug anyway and send us the entire test case you used.
3052
3053@item
3054A patch for the bug.
3055
3056A patch for the bug does help us if it is a good one. But do not omit
3057the necessary information, such as the test case, on the assumption that
3058a patch is all we need. We might see problems with your patch and decide
3059to fix the problem another way, or we might not understand it at all.
3060
3061Sometimes with programs as complicated as the binary utilities it is
3062very hard to construct an example that will make the program follow a
3063certain path through the code. If you do not send us the example, we
3064will not be able to construct one, so we will not be able to verify that
3065the bug is fixed.
3066
3067And if we cannot understand what bug you are trying to fix, or why your
3068patch should be an improvement, we will not install it. A test case will
3069help us to understand.
3070
3071@item
3072A guess about what the bug is or what it depends on.
3073
3074Such guesses are usually wrong. Even we cannot guess right about such
3075things without first using the debugger to find the facts.
3076@end itemize
3077
cf055d54
NC
3078@node GNU Free Documentation License
3079@chapter GNU Free Documentation License
3080@cindex GNU Free Documentation License
3081
3082 GNU Free Documentation License
3083
3084 Version 1.1, March 2000
3085
3086 Copyright (C) 2000 Free Software Foundation, Inc.
3087 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
3088
3089 Everyone is permitted to copy and distribute verbatim copies
3090 of this license document, but changing it is not allowed.
3091
3092
30930. PREAMBLE
3094
3095The purpose of this License is to make a manual, textbook, or other
3096written document "free" in the sense of freedom: to assure everyone
3097the effective freedom to copy and redistribute it, with or without
3098modifying it, either commercially or noncommercially. Secondarily,
3099this License preserves for the author and publisher a way to get
3100credit for their work, while not being considered responsible for
3101modifications made by others.
3102
3103This License is a kind of "copyleft", which means that derivative
3104works of the document must themselves be free in the same sense. It
3105complements the GNU General Public License, which is a copyleft
3106license designed for free software.
3107
3108We have designed this License in order to use it for manuals for free
3109software, because free software needs free documentation: a free
3110program should come with manuals providing the same freedoms that the
3111software does. But this License is not limited to software manuals;
3112it can be used for any textual work, regardless of subject matter or
3113whether it is published as a printed book. We recommend this License
3114principally for works whose purpose is instruction or reference.
3115
3116
31171. APPLICABILITY AND DEFINITIONS
3118
3119This License applies to any manual or other work that contains a
3120notice placed by the copyright holder saying it can be distributed
3121under the terms of this License. The "Document", below, refers to any
3122such manual or work. Any member of the public is a licensee, and is
3123addressed as "you".
3124
3125A "Modified Version" of the Document means any work containing the
3126Document or a portion of it, either copied verbatim, or with
3127modifications and/or translated into another language.
3128
3129A "Secondary Section" is a named appendix or a front-matter section of
3130the Document that deals exclusively with the relationship of the
3131publishers or authors of the Document to the Document's overall subject
3132(or to related matters) and contains nothing that could fall directly
3133within that overall subject. (For example, if the Document is in part a
3134textbook of mathematics, a Secondary Section may not explain any
3135mathematics.) The relationship could be a matter of historical
3136connection with the subject or with related matters, or of legal,
3137commercial, philosophical, ethical or political position regarding
3138them.
3139
3140The "Invariant Sections" are certain Secondary Sections whose titles
3141are designated, as being those of Invariant Sections, in the notice
3142that says that the Document is released under this License.
3143
3144The "Cover Texts" are certain short passages of text that are listed,
3145as Front-Cover Texts or Back-Cover Texts, in the notice that says that
3146the Document is released under this License.
3147
3148A "Transparent" copy of the Document means a machine-readable copy,
3149represented in a format whose specification is available to the
3150general public, whose contents can be viewed and edited directly and
3151straightforwardly with generic text editors or (for images composed of
3152pixels) generic paint programs or (for drawings) some widely available
3153drawing editor, and that is suitable for input to text formatters or
3154for automatic translation to a variety of formats suitable for input
3155to text formatters. A copy made in an otherwise Transparent file
3156format whose markup has been designed to thwart or discourage
3157subsequent modification by readers is not Transparent. A copy that is
3158not "Transparent" is called "Opaque".
3159
3160Examples of suitable formats for Transparent copies include plain
3161ASCII without markup, Texinfo input format, LaTeX input format, SGML
3162or XML using a publicly available DTD, and standard-conforming simple
3163HTML designed for human modification. Opaque formats include
3164PostScript, PDF, proprietary formats that can be read and edited only
3165by proprietary word processors, SGML or XML for which the DTD and/or
3166processing tools are not generally available, and the
3167machine-generated HTML produced by some word processors for output
3168purposes only.
3169
3170The "Title Page" means, for a printed book, the title page itself,
3171plus such following pages as are needed to hold, legibly, the material
3172this License requires to appear in the title page. For works in
3173formats which do not have any title page as such, "Title Page" means
3174the text near the most prominent appearance of the work's title,
3175preceding the beginning of the body of the text.
3176
3177
31782. VERBATIM COPYING
3179
3180You may copy and distribute the Document in any medium, either
3181commercially or noncommercially, provided that this License, the
3182copyright notices, and the license notice saying this License applies
3183to the Document are reproduced in all copies, and that you add no other
3184conditions whatsoever to those of this License. You may not use
3185technical measures to obstruct or control the reading or further
3186copying of the copies you make or distribute. However, you may accept
3187compensation in exchange for copies. If you distribute a large enough
3188number of copies you must also follow the conditions in section 3.
3189
3190You may also lend copies, under the same conditions stated above, and
3191you may publicly display copies.
3192
3193
31943. COPYING IN QUANTITY
3195
3196If you publish printed copies of the Document numbering more than 100,
3197and the Document's license notice requires Cover Texts, you must enclose
3198the copies in covers that carry, clearly and legibly, all these Cover
3199Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
3200the back cover. Both covers must also clearly and legibly identify
3201you as the publisher of these copies. The front cover must present
3202the full title with all words of the title equally prominent and
3203visible. You may add other material on the covers in addition.
3204Copying with changes limited to the covers, as long as they preserve
3205the title of the Document and satisfy these conditions, can be treated
3206as verbatim copying in other respects.
3207
3208If the required texts for either cover are too voluminous to fit
3209legibly, you should put the first ones listed (as many as fit
3210reasonably) on the actual cover, and continue the rest onto adjacent
3211pages.
3212
3213If you publish or distribute Opaque copies of the Document numbering
3214more than 100, you must either include a machine-readable Transparent
3215copy along with each Opaque copy, or state in or with each Opaque copy
3216a publicly-accessible computer-network location containing a complete
3217Transparent copy of the Document, free of added material, which the
3218general network-using public has access to download anonymously at no
3219charge using public-standard network protocols. If you use the latter
3220option, you must take reasonably prudent steps, when you begin
3221distribution of Opaque copies in quantity, to ensure that this
3222Transparent copy will remain thus accessible at the stated location
3223until at least one year after the last time you distribute an Opaque
3224copy (directly or through your agents or retailers) of that edition to
3225the public.
3226
3227It is requested, but not required, that you contact the authors of the
3228Document well before redistributing any large number of copies, to give
3229them a chance to provide you with an updated version of the Document.
3230
3231
32324. MODIFICATIONS
3233
3234You may copy and distribute a Modified Version of the Document under
3235the conditions of sections 2 and 3 above, provided that you release
3236the Modified Version under precisely this License, with the Modified
3237Version filling the role of the Document, thus licensing distribution
3238and modification of the Modified Version to whoever possesses a copy
3239of it. In addition, you must do these things in the Modified Version:
3240
3241A. Use in the Title Page (and on the covers, if any) a title distinct
3242 from that of the Document, and from those of previous versions
3243 (which should, if there were any, be listed in the History section
3244 of the Document). You may use the same title as a previous version
3245 if the original publisher of that version gives permission.
3246B. List on the Title Page, as authors, one or more persons or entities
3247 responsible for authorship of the modifications in the Modified
3248 Version, together with at least five of the principal authors of the
3249 Document (all of its principal authors, if it has less than five).
3250C. State on the Title page the name of the publisher of the
3251 Modified Version, as the publisher.
3252D. Preserve all the copyright notices of the Document.
3253E. Add an appropriate copyright notice for your modifications
3254 adjacent to the other copyright notices.
3255F. Include, immediately after the copyright notices, a license notice
3256 giving the public permission to use the Modified Version under the
3257 terms of this License, in the form shown in the Addendum below.
3258G. Preserve in that license notice the full lists of Invariant Sections
3259 and required Cover Texts given in the Document's license notice.
3260H. Include an unaltered copy of this License.
3261I. Preserve the section entitled "History", and its title, and add to
3262 it an item stating at least the title, year, new authors, and
3263 publisher of the Modified Version as given on the Title Page. If
3264 there is no section entitled "History" in the Document, create one
3265 stating the title, year, authors, and publisher of the Document as
3266 given on its Title Page, then add an item describing the Modified
3267 Version as stated in the previous sentence.
3268J. Preserve the network location, if any, given in the Document for
3269 public access to a Transparent copy of the Document, and likewise
3270 the network locations given in the Document for previous versions
3271 it was based on. These may be placed in the "History" section.
3272 You may omit a network location for a work that was published at
3273 least four years before the Document itself, or if the original
3274 publisher of the version it refers to gives permission.
3275K. In any section entitled "Acknowledgements" or "Dedications",
3276 preserve the section's title, and preserve in the section all the
3277 substance and tone of each of the contributor acknowledgements
3278 and/or dedications given therein.
3279L. Preserve all the Invariant Sections of the Document,
3280 unaltered in their text and in their titles. Section numbers
3281 or the equivalent are not considered part of the section titles.
3282M. Delete any section entitled "Endorsements". Such a section
3283 may not be included in the Modified Version.
3284N. Do not retitle any existing section as "Endorsements"
3285 or to conflict in title with any Invariant Section.
3286
3287If the Modified Version includes new front-matter sections or
3288appendices that qualify as Secondary Sections and contain no material
3289copied from the Document, you may at your option designate some or all
3290of these sections as invariant. To do this, add their titles to the
3291list of Invariant Sections in the Modified Version's license notice.
3292These titles must be distinct from any other section titles.
3293
3294You may add a section entitled "Endorsements", provided it contains
3295nothing but endorsements of your Modified Version by various
3296parties--for example, statements of peer review or that the text has
3297been approved by an organization as the authoritative definition of a
3298standard.
3299
3300You may add a passage of up to five words as a Front-Cover Text, and a
3301passage of up to 25 words as a Back-Cover Text, to the end of the list
3302of Cover Texts in the Modified Version. Only one passage of
3303Front-Cover Text and one of Back-Cover Text may be added by (or
3304through arrangements made by) any one entity. If the Document already
3305includes a cover text for the same cover, previously added by you or
3306by arrangement made by the same entity you are acting on behalf of,
3307you may not add another; but you may replace the old one, on explicit
3308permission from the previous publisher that added the old one.
3309
3310The author(s) and publisher(s) of the Document do not by this License
3311give permission to use their names for publicity for or to assert or
3312imply endorsement of any Modified Version.
3313
3314
33155. COMBINING DOCUMENTS
3316
3317You may combine the Document with other documents released under this
3318License, under the terms defined in section 4 above for modified
3319versions, provided that you include in the combination all of the
3320Invariant Sections of all of the original documents, unmodified, and
3321list them all as Invariant Sections of your combined work in its
3322license notice.
3323
3324The combined work need only contain one copy of this License, and
3325multiple identical Invariant Sections may be replaced with a single
3326copy. If there are multiple Invariant Sections with the same name but
3327different contents, make the title of each such section unique by
3328adding at the end of it, in parentheses, the name of the original
3329author or publisher of that section if known, or else a unique number.
3330Make the same adjustment to the section titles in the list of
3331Invariant Sections in the license notice of the combined work.
3332
3333In the combination, you must combine any sections entitled "History"
3334in the various original documents, forming one section entitled
3335"History"; likewise combine any sections entitled "Acknowledgements",
3336and any sections entitled "Dedications". You must delete all sections
3337entitled "Endorsements."
3338
3339
33406. COLLECTIONS OF DOCUMENTS
3341
3342You may make a collection consisting of the Document and other documents
3343released under this License, and replace the individual copies of this
3344License in the various documents with a single copy that is included in
3345the collection, provided that you follow the rules of this License for
3346verbatim copying of each of the documents in all other respects.
3347
3348You may extract a single document from such a collection, and distribute
3349it individually under this License, provided you insert a copy of this
3350License into the extracted document, and follow this License in all
3351other respects regarding verbatim copying of that document.
3352
3353
33547. AGGREGATION WITH INDEPENDENT WORKS
3355
3356A compilation of the Document or its derivatives with other separate
3357and independent documents or works, in or on a volume of a storage or
3358distribution medium, does not as a whole count as a Modified Version
3359of the Document, provided no compilation copyright is claimed for the
3360compilation. Such a compilation is called an "aggregate", and this
3361License does not apply to the other self-contained works thus compiled
3362with the Document, on account of their being thus compiled, if they
3363are not themselves derivative works of the Document.
3364
3365If the Cover Text requirement of section 3 is applicable to these
3366copies of the Document, then if the Document is less than one quarter
3367of the entire aggregate, the Document's Cover Texts may be placed on
3368covers that surround only the Document within the aggregate.
3369Otherwise they must appear on covers around the whole aggregate.
3370
3371
33728. TRANSLATION
3373
3374Translation is considered a kind of modification, so you may
3375distribute translations of the Document under the terms of section 4.
3376Replacing Invariant Sections with translations requires special
3377permission from their copyright holders, but you may include
3378translations of some or all Invariant Sections in addition to the
3379original versions of these Invariant Sections. You may include a
3380translation of this License provided that you also include the
3381original English version of this License. In case of a disagreement
3382between the translation and the original English version of this
3383License, the original English version will prevail.
3384
3385
33869. TERMINATION
3387
3388You may not copy, modify, sublicense, or distribute the Document except
3389as expressly provided for under this License. Any other attempt to
3390copy, modify, sublicense or distribute the Document is void, and will
3391automatically terminate your rights under this License. However,
3392parties who have received copies, or rights, from you under this
3393License will not have their licenses terminated so long as such
3394parties remain in full compliance.
3395
3396
339710. FUTURE REVISIONS OF THIS LICENSE
3398
3399The Free Software Foundation may publish new, revised versions
3400of the GNU Free Documentation License from time to time. Such new
3401versions will be similar in spirit to the present version, but may
3402differ in detail to address new problems or concerns. See
3403http://www.gnu.org/copyleft/.
3404
3405Each version of the License is given a distinguishing version number.
3406If the Document specifies that a particular numbered version of this
3407License "or any later version" applies to it, you have the option of
3408following the terms and conditions either of that specified version or
3409of any later version that has been published (not as a draft) by the
3410Free Software Foundation. If the Document does not specify a version
3411number of this License, you may choose any version ever published (not
3412as a draft) by the Free Software Foundation.
3413
3414
3415ADDENDUM: How to use this License for your documents
3416
3417To use this License in a document you have written, include a copy of
3418the License in the document and put the following copyright and
3419license notices just after the title page:
3420
3421@smallexample
3422 Copyright (c) YEAR YOUR NAME.
3423 Permission is granted to copy, distribute and/or modify this document
3424 under the terms of the GNU Free Documentation License, Version 1.1
3425 or any later version published by the Free Software Foundation;
3426 with the Invariant Sections being LIST THEIR TITLES, with the
3427 Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
3428 A copy of the license is included in the section entitled "GNU
3429 Free Documentation License".
3430@end smallexample
3431
3432If you have no Invariant Sections, write "with no Invariant Sections"
3433instead of saying which ones are invariant. If you have no
3434Front-Cover Texts, write "no Front-Cover Texts" instead of
3435"Front-Cover Texts being LIST"; likewise for Back-Cover Texts.
3436
3437If your document contains nontrivial examples of program code, we
3438recommend releasing these examples in parallel under your choice of
3439free software license, such as the GNU General Public License,
3440to permit their use in free software.
3441
252b5132
RH
3442@node Index
3443@unnumbered Index
3444
3445@printindex cp
3446
3447@contents
3448@bye
This page took 0.287198 seconds and 4 git commands to generate.