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