Initial revision
[deliverable/binutils-gdb.git] / binutils / binutils.texinfo
1 \input texinfo
2 @setfilename binutils.info
3 @synindex ky cp
4 @c
5 @c This file documents the GNU binary utilities "ar", "ld", "objdump", "nm",
6 @c "size", "strip", and "ranlib".
7 @c
8 @c Copyright (C) 1991 Free Software Foundation, Inc.
9 @c
10 @c This text may be freely distributed under the terms of the GNU
11 @c General Public License.
12 @c
13 @c $Id$
14 @iftex
15 @finalout
16 @c @smallbook
17 @end iftex
18 @c @cropmarks
19 @setchapternewpage odd
20 @settitle GNU Binary Utilities
21 @titlepage
22 @title The GNU Binary Utilities
23 @subtitle Version 1.90
24 @sp 1
25 @subtitle October 1991
26 @author Roland H. Pesch
27 @author Cygnus Support
28 @page
29
30 @tex
31 \def\$#1${{#1}} % Kluge: collect RCS revision info without $...$
32 \xdef\manvers{\$Revision$} % For use in headers, footers too
33 {\parskip=0pt \hfill Cygnus Support\par \hfill \manvers\par \hfill
34 \TeX{}info \texinfoversion\par }
35 @end tex
36
37 @vskip 0pt plus 1filll
38 Copyright @copyright{} 1991 Free Software Foundation, Inc.
39
40 Permission is granted to make and distribute verbatim copies of
41 this manual provided the copyright notice and this permission notice
42 are preserved on all copies.
43
44 Permission is granted to copy and distribute modified versions of this
45 manual under the conditions for verbatim copying, provided also that
46 the entire resulting derived work is distributed under the terms of a
47 permission notice identical to this one.
48
49 Permission is granted to copy and distribute translations of this manual
50 into another language, under the above conditions for modified versions.
51 @end titlepage
52
53 @node Top, ar, (dir), (dir)
54 @chapter Introduction
55
56 @cindex version
57 This brief manual contains preliminary documentation for the GNU binary
58 utilities (collectively version 1.90):
59 @table @code
60 @item ar
61 Create, modify, and extract from archives
62
63 @item nm
64 List symbols from object files
65
66 @item objdump
67 Display information from object files
68
69 @item ranlib
70 Generate index to archive contents
71
72 @item size
73 List section sizes and total size
74
75 @item strip
76 Discard symbols
77 @end table
78
79 @ifinfo
80 Copyright @copyright{} 1991 Free Software Foundation, Inc.
81
82 Permission is granted to make and distribute verbatim copies of
83 this manual provided the copyright notice and this permission notice
84 are preserved on all copies.
85
86 @ignore
87 Permission is granted to process this file through TeX and print the
88 results, provided the printed document carries a copying permission
89 notice identical to this one except for the removal of this paragraph
90 (this paragraph not being relevant to the printed manual).
91
92 @end ignore
93
94 Permission is granted to copy and distribute modified versions of this
95 manual under the conditions for verbatim copying, provided also that
96 the entire resulting derived work is distributed under the terms of a
97 permission notice identical to this one.
98
99 Permission is granted to copy and distribute translations of this manual
100 into another language, under the above conditions for modified versions.
101 @end ifinfo
102
103 @menu
104 * ar:: Create, modify, and extract from archives
105 * ld:: See ld.info
106 * nm:: List symbols from object files
107 * objdump:: Display information from object files
108 * ranlib:: Generate index to archive contents
109 * size:: List section sizes and total size
110 * strip:: Discard symbols
111 * Index::
112 @end menu
113
114 @node ar, ld, Top, Top
115 @chapter ar
116
117 @kindex ar
118 @cindex archives
119 @cindex collections of files
120 @smallexample
121 ar [-]@var{p}@var{mod} [ @var{membername} ] @var{archive} @var{files}@dots{}
122 @end smallexample
123
124 The GNU @code{ar} program creates, modifies, and extracts from
125 archives. An @dfn{archive} is a single file holding a collection of
126 other files in a structure that makes it possible to retrieve
127 the original individual files (called @dfn{members} of the archive).
128
129 The original files' contents, mode (permissions), timestamp, owner, and
130 group are preserved in the archive, and may be reconstituted on
131 extraction.
132
133 @cindex name length
134 GNU @code{ar} can maintain archives whose members have names of any
135 length; however, depending on how @code{ar} is configured on your
136 system, a limit on member-name length may be imposed (for compatibility
137 with archive formats maintained with other tools). If it exists, the
138 limit is often 15 characters (typical of formats related to a.out) or 16
139 characters (typical of formats related to coff).
140
141 @cindex libraries
142 @code{ar} is considered a binary utility because archives of this sort
143 are most often used as @dfn{libraries} holding commonly needed
144 subroutines.
145
146 @cindex symbol index
147 @code{ar} will create an index to the symbols defined in relocatable
148 object modules in the archive when you specify the modifier @samp{s}.
149 Once created, this index is updated in the archive whenever @code{ar}
150 makes a change to its contents (save for the @samp{q} update operation).
151 An archive with such an index speeds up linking to the library, and
152 allows routines in the library to call each other without regard to
153 their placement in the archive.
154
155 You may use @samp{nm -s} or @samp{nm +print-armap} to list this index
156 table. If an archive lacks the table, another form of @code{ar} called
157 @code{ranlib} can be used to add just the table.
158
159 @code{ar} insists on at least two arguments to execute: one
160 keyletter specifying the @emph{operation} (optionally accompanied by other
161 keyletters specifying @emph{modifiers}), and the archive name to act on.
162
163 Most operations can also accept further @var{files} arguments,
164 specifying particular files to operate on.
165
166 GNU @code{ar} allows you to mix the operation code @var{p} and modifier
167 flags @var{mod} in any order, within the first command-line argument.
168
169 If you wish, you may begin the first command-line argument with a
170 dash.
171
172 @cindex operations on archive
173 The @var{p} keyletter specifies what operation to execute; it may be
174 any of the following, but you must specify only one of them:
175
176 @table @code
177 @item d
178 @cindex deleting from archive
179 @emph{Delete} modules from the archive. Specify the names of modules to
180 be deleted as @var{files}; the archive is untouched if you
181 specify no files to delete.
182
183 If you specify the @samp{v} modifier, @code{ar} will list each module
184 as it is deleted.
185
186 @item m
187 @cindex moving in archive
188 Use this operation to @emph{move} members in an archive.
189
190 The ordering of members in an archive can make a difference in how
191 programs are linked using the library, if a symbol is defined in more
192 than one member.
193
194 If no modifiers are used with @code{m}, any members you name in the
195 @var{files} arguments are moved to the @emph{end} of the archive;
196 you can use the @samp{a}, @samp{b}, or @samp{i} modifiers to move them to a
197 specified place instead.
198
199 @item p
200 @cindex printing from archive
201 @emph{Print} the specified members of the archive, to the standard
202 output file. If the @samp{v} modifier is specified, show the member
203 name before copying its contents to standard output.
204
205 If you specify no @var{files}, all the files in the archive are printed.
206
207 @item q
208 @cindex quick append to archive
209 @emph{Quick append}; add @var{files} to the end of @var{archive},
210 without checking for replacement.
211
212 The modifiers @samp{a}, @samp{b}, and @samp{i} do @emph{not} affect this
213 operation; new members are always placed at the end of the archive.
214
215 The modifier @samp{v} makes @code{ar} list each file as it is appended.
216
217 Since the point of this operation is speed, the archive's symbol table
218 index is not updated, even if it already existed; you can use @samp{ar s} or
219 @code{ranlib} explicitly to update the symbol table index.
220
221 @item r
222 @cindex replacement in archive
223 Insert @var{files} into @var{archive} (with @emph{replacement}). This
224 operation differs from @samp{q} in that any previously existing members
225 are deleted if their names match those being added.
226
227 If one of the files named in @var{files} doesn't exist, @code{ar}
228 displays an error message, and leaves undisturbed any existing members
229 of the archive matching that name.
230
231 By default, new members are added at the end of the file; but you may
232 use one of the modifiers @samp{a}, @samp{b}, or @samp{i} to request
233 placement relative to some existing member.
234
235 The modifier @samp{v} used with this operation elicits a line of
236 output for each file inserted, along with one of the letters @samp{a} or
237 @samp{r} to indicate whether the file was appended (no old member
238 deleted) or replaced.
239
240 @item t
241 @cindex contents of archive
242 Display a @emph{table} listing the contents of @var{archive}, or those
243 of the files listed in @var{files} that are present in the
244 archive. Normally only the member name is shown; if you also want to
245 see the modes (permissions), timestamp, owner, group, and size, you can
246 request that by also specifying the @samp{v} modifier.
247
248 If you do not specify any @var{files}, all files in the archive
249 are listed.
250
251 @cindex repeated names in archive
252 @cindex name duplication in archive
253 If there is more than one file with the same name (say, @samp{fie}) in
254 an archive (say @samp{b.a}), @samp{ar t b.a fie} will list only the
255 first instance; to see them all, you must ask for a complete
256 listing---in our example, @samp{ar t b.a}.
257 @c WRS only; per Gumby, this is implementation-dependent, and in a more
258 @c recent case in fact works the other way.
259
260 @item x
261 @cindex extract from archive
262 @emph{Extract} members (named @var{files}) from the archive. You can
263 use the @samp{v} modifier with this operation, to request that
264 @code{ar} list each name as it extracts it.
265
266 If you do not specify any @var{files}, all files in the archive
267 are extracted.
268
269 @end table
270
271 A number of modifiers (@var{mod}) may immediately follow the @var{p}
272 keyletter, to specify variations on an operation's behavior:
273
274 @table @code
275 @item a
276 @cindex relative placement in archive
277 Add new files @emph{after} an existing member of the
278 archive. If you use the modifier @code{a}, the name of an existing archive
279 member must be present as the @var{membername} argument, before the
280 @var{archive} specification.
281
282 @item b
283 Add new files @emph{before} an existing member of the
284 archive. If you use the modifier @code{b}, the name of an existing archive
285 member must be present as the @var{membername} argument, before the
286 @var{archive} specification. (same as @samp{i}).
287
288 @item c
289 @cindex creating archives
290 @emph{Create} the archive. The specified @var{archive} is always
291 created if it didn't exist, when you request an update. But a warning is
292 issued unless you specify in advance that you expect to create it, by
293 using this modifier.
294
295 @item i
296 Insert new files @emph{before} an existing member of the
297 archive. If you use the modifier @code{i}, the name of an existing archive
298 member must be present as the @var{membername} argument, before the
299 @var{archive} specification. (same as @samp{b}).
300
301 @item l
302 This modifier is accepted but not used.
303 @c whaffor ar l modifier??? presumably compat; with
304 @c what???---pesch@@cygnus.com, 25jan91
305
306 @item o
307 @cindex dates in archive
308 Preserve the @emph{original} dates of members when extracting them. If
309 you do not specify this modifier, files extracted from the archive
310 will be stamped with the time of extraction.
311
312 @item s
313 @cindex writing archive index
314 Write an object-file index into the archive, or update an existing one,
315 even if no other change is made to the archive. You may use this modifier
316 flag either with any operation, or alone. Running @samp{ar s} on an
317 archive is equivalent to running @samp{ranlib} on it.
318
319 @item u
320 @cindex updating an archive
321 Normally, @code{ar r}@dots{} inserts all files
322 listed into the archive. If you would like to insert @emph{only} those
323 of the files you list that are newer than existing members of the same
324 names, use this modifier. The @samp{u} modifier is allowed only for the
325 operation @samp{r} (replace). In particular, the combination @samp{qu} is
326 not allowed, since checking the timestamps would lose any speed
327 advantage from the operation @samp{q}.
328
329 @item v
330 This modifier requests the @emph{verbose} version of an operation. Many
331 operations display additional information, such as filenames processed,
332 when the modifier @samp{v} is appended.
333
334 @end table
335
336 @node ld, nm, ar, Top
337 @chapter ld
338 @cindex linker
339 @kindex ld
340 The GNU linker @code{ld} is now described in a separate manual.
341 @xref{Top,, Overview,, GLD: the GNU linker}.
342
343 @node nm, objdump, ld, Top
344 @chapter nm
345 @cindex symbols
346 @kindex nm
347
348 @smallexample
349 nm [ -a | +debug-syms ] [ -g | +extern-only ]
350 [ -s | +print-armap ] [ -o | +print-file-name ]
351 [ -n | +numeric-sort ] [ -p | +no-sort ]
352 [ -r | +reverse-sort ] [ -u | +undefined-only ]
353 [ +target @var{bfdname} ]
354 [ @var{objfiles}@dots{} ]
355 @end smallexample
356
357 GNU @code{nm} will list the symbols from object files @var{objfiles}.
358
359 The long and short forms of options, shown here as alternatives, are
360 equivalent.
361
362 @table @code
363 @item @var{objfiles}@dots{}
364 @kindex a.out
365 Object files whose symbols are to be listed. If no object files are
366 listed as arguments, @code{nm} assumes @samp{a.out}.
367
368 @item -a
369 @itemx +debug-syms
370 @cindex debugging symbols
371 Display debugger-only symbols; normally these are not listed.
372
373 @item -g
374 @itemx +extern-only
375 @cindex external symbols
376 Display only external symbols.
377
378 @item -p
379 @itemx +no-sort
380 @cindex sorting symbols
381 Don't bother to sort the symbols in any order; just print them in the
382 order encountered.
383
384 @item -n
385 @itemx +numeric-sort
386 Sort symbols numerically by their addresses, not alphabetically by their
387 names.
388
389 @item -s
390 @itemx +print-armap
391 @cindex symbol index, listing
392 When listing symbols from archive members, include the index: a mapping
393 (stored in the archive by @code{ar} or @code{ranlib}) of what modules
394 contain definitions for what names.
395
396 @item -o
397 @itemx +print-file-name
398 @cindex input file name
399 @cindex file name
400 @cindex source file name
401 Precede each symbol by the name of the input file where it was found,
402 rather than identifying the input file once only before all of its
403 symbols.
404
405 @item -r
406 @itemx +reverse-sort
407 Reverse the sense of the sort (whether numeric or alphabetic); let the
408 last come first.
409
410 @item +target @var{bfdname}
411 @c @item +target
412 @cindex object code format
413 Specify an object code format other than your system's default format.
414 @xref{objdump}, for information on listing available formats.
415 @c FIXME what *does* +target/no arg do?
416
417 @item -u
418 @itemx +undefined-only
419 @cindex external symbols
420 @cindex undefined symbols
421 Display only undefined symbols (those external to each object file).
422
423 @end table
424
425 @node objdump, ranlib, nm, Top
426 @chapter objdump
427
428 @cindex object file information
429 @kindex objdump
430
431 @smallexample
432 objdump [ -a ] [ -b @var{bfdname} ] [ -d ] [ -f ]
433 [ -h | +header ] [ -i ] [ -j @var{section} ] [ -l ]
434 [ -m @var{machine} ] [ -r | +reloc ] [ -s ]
435 [ -t | +syms ] [ -x ]
436 @var{objfiles}@dots{}
437 @end smallexample
438
439 @code{objdump} displays information about one or more object files.
440 The options control what particular information to display. This
441 information is mostly useful to programmers who are working on the
442 compilation tools, as opposed to programmers who just want their
443 program to compile and work.
444
445 The long and short forms of options, shown here as alternatives, are
446 equivalent.
447
448 @table @code
449 @item @var{objfiles}@dots{}
450 The object files to be examined. When you specify archives,
451 @code{objdump} shows information on each of the member object files.
452
453 @item -a
454 @c print_arelt_descr
455 @cindex archive headers
456 If any files from @var{objfiles} are archives, display the archive
457 header information (in a format similar to @samp{ls -l}). Besides the
458 information you could list with @samp{ar tv}, @samp{objdump -a} shows
459 the object file format of each archive member.
460
461 @c suggest longname +target or +format or +bfd
462 @item -b @var{bfdname}
463 @cindex object code format
464 You can specify a particular object-code format for your object files as
465 @var{bfdname}. This may not be necessary; @var{objdump} can
466 automatically recognize many formats. For example,
467 @example
468 objdump -b oasys -m vax -h fu.o
469 @end example
470 @noindent
471 Displays summary information from the section headers (@samp{-h}) of
472 @file{fu.o}, which is explicitly identified (@samp{-m}) as a Vax object
473 file in the format produced by Oasys compilers. You can list the
474 formats available with the @samp{-i} option.
475
476 @item -d
477 @cindex disassembling object code
478 @cindex machine instructions
479 Disassemble. Display the assembler mnemonics for the machine
480 instructions from @var{objfiles}.
481
482 @item -f
483 @cindex object file header
484 File header. Display summary information from the overall header of
485 each file in @var{objfiles}.
486
487 @item -h
488 @itemx +header
489 @cindex section headers
490 Header. Display summary information from the section headers of the
491 object file.
492
493 @item -i
494 @cindex architectures available
495 @cindex object formats available
496 Display a list showing all architectures and object formats available
497 for specification with @code{-b} or @code{-m}.
498
499 @c suggest longname +section
500 @item -j @var{name}
501 @cindex section information
502 Display information only for section @var{name}
503
504 @c suggest longname +label or +linespec
505 @item -l
506 @cindex source filenames for object files
507 Label the display (using debugging information) with the source filename
508 and line numbers corresponding to the object code shown.
509
510 @c suggest longname +architecture
511 @item -m @var{machine}
512 @cindex architecture
513 Specify the object files @var{objfiles} are for architecture
514 @var{machine}. You can list available architectures using the @samp{-i}
515 option.
516
517 @item -r
518 @itemx +reloc
519 @cindex relocation entries, in object file
520 Relocation. Print the relocation entries of the file.
521
522 @item -s
523 @cindex sections, full contents
524 @cindex object file sections
525 Display the full contents of any sections requested.
526
527 @item -t
528 @itemx +syms
529 @cindex symbol table entries, printing
530 Symbol Table. Print the symbol table entries of the file.
531 This is similar to the information provided by the @samp{nm} program.
532
533 @item -x
534 @cindex all header information, object file
535 @cindex header information, all
536 Display all available header information, including the symbol table and
537 relocation entries. Using @samp{-x} is equivalent to specifying all of
538 @samp{-a -f -h -r -t}.
539
540 @end table
541
542 @node ranlib, size, objdump, Top
543 @chapter ranlib
544
545 @kindex ranlib
546 @cindex archive contents
547 @cindex symbol index
548
549 @smallexample
550 ranlib @var{archive}
551 @end smallexample
552
553 @code{ranlib} generates an index to the contents of an archive, and
554 stores it in the archive. The index lists each symbol defined by a
555 member of an archive that is a relocatable object file.
556
557 You may use @samp{nm -s} or @samp{nm +print-armap} to list this index.
558
559 An archive with such an index speeds up linking to the library, and
560 allows routines in the library to call each other without regard to
561 their placement in the archive.
562
563 The GNU @code{ranlib} program is another form of GNU @code{ar}; running
564 @code{ranlib} is completely equivalent to executing @samp{ar -s}.
565 @xref{ar}.
566
567 @node size, strip, ranlib, Top
568 @chapter size
569
570 @kindex size
571 @cindex section sizes
572
573 @smallexample
574 size [ -A | -B | +format @var{compatibility} ]
575 [ +help ] [ -d | -o | -x | +radix @var{number} ]
576 [ +target @var{bfdname} ] [ -V | +version ]
577 @var{objfiles}@dots{}
578 @end smallexample
579
580 The GNU @code{size} utility lists the section sizes---and the total
581 size---for each of the object files @var{objfiles} in its argument list.
582 By default, one line of output is generated for each object file or each
583 module in an archive.
584
585 The command line options have the following meanings:
586 @table @code
587 @item @var{objfiles}@dots{}
588 The object files to be examined.
589
590 @item -A
591 @itemx -B
592 @itemx +format @var{compatibility}
593 @cindex size display format
594 Using one of these options, you can choose whether the output from GNU
595 @code{size} resembles output from System V @code{size} (using @samp{-A},
596 or @samp{+format sysv}), or Berkeley @code{size} (using @samp{-B}, or
597 @samp{+format berkeley}). The default is the one-line format similar to
598 Berkeley's.
599 @c Bonus for doc-source readers: you can also say +format=strange (or
600 @c anything else that starts with 's') for sysv, and +format=boring (or
601 @c anything else that starts with 'b') for Berkeley.
602
603 Here is an example of the Berkeley (default) format of output from
604 @code{size}:
605 @smallexample
606 eg$ size +format Berkeley ranlib size
607 text data bss dec hex filename
608 294880 81920 11592 388392 5ed28 ranlib
609 294880 81920 11888 388688 5ee50 size
610 @end smallexample
611
612 @noindent
613 This is the same data, but displayed closer to System V conventions:
614
615 @smallexample
616 eg$ size +format SysV ranlib size
617 ranlib :
618 section size addr
619 .text 294880 8192
620 .data 81920 303104
621 .bss 11592 385024
622 Total 388392
623
624
625 size :
626 section size addr
627 .text 294880 8192
628 .data 81920 303104
629 .bss 11888 385024
630 Total 388688
631 @end smallexample
632
633 @item +help
634 Show a summary of acceptable arguments and options.
635
636 @item -d
637 @itemx -o
638 @itemx -x
639 @itemx +radix @var{number}
640 @cindex size number format
641 @cindex radix for section sizes
642 Using one of these options, you can control whether the size of each
643 section is given in decimal (@samp{-d}, or @samp{+radix 10}); octal
644 (@samp{-o}, or @samp{+radix 8}); or hexadecimal (@samp{-x}, or
645 @samp{+radix 16}). In @samp{+radix @var{number}}, only the three
646 values (8, 10, 16) are supported. The total size is always given in two
647 radices; decimal and hexadecimal for @samp{-d} or @samp{-x} output, or
648 octal and hexadecimal if you're using @samp{-o}.
649
650 @item +target @var{bfdname}
651 @cindex object code format
652 You can specify a particular object-code format for @var{objfiles} as
653 @var{bfdname}. This may not be necessary; @var{size} can
654 automatically recognize many formats. @xref{objdump}, for information
655 on listing available formats.
656
657 @item -V
658 @itemx +version
659 Display version number information on @code{size} itself.
660
661 @end table
662
663 @node strip, Index, size, Top
664 @chapter strip
665
666 @kindex strip
667 @cindex removing symbols
668 @cindex discarding symbols
669
670 @smallexample
671 strip [ -s | +strip-all ] [ -g | -S | +strip-debug ]
672 [ -x | +discard-all ] [ -X | +discard-locals ]
673 [ -T @var{bfdname} ]
674 @var{objfiles}@dots{}
675 @end smallexample
676
677 GNU @code{strip} will discard all symbols from object files
678 @var{objfiles}, if no options are specified; or only certain symbols,
679 depending on its command-line options.
680
681 @code{strip} will not execute unless at least one object file is listed.
682
683 @quotation
684 @emph{WARNING:} @code{strip} modifies the files named in its argument,
685 rather than writing modified copies under different names.
686 @end quotation
687
688 The long and short forms of options, shown here as alternatives, are
689 equivalent.
690
691 @table @code
692 @item -s
693 @itemx +strip-all
694 @cindex all symbols, discarding
695 This is the default case: strip all symbol entries from @var{objfiles}.
696
697 @item -g
698 @itemx -S
699 @itemx +strip-debug
700 @cindex debugging symbols, discarding
701 Discard only debugging symbol information from @var{objfiles}.
702
703 @item -x
704 @itemx +discard-all
705 @cindex local symbols, discarding
706 Discard all symbols local to each file in @var{objfiles}.
707 @emph{WARNING:} Note that @code{+discard-all} discards only @emph{local}
708 symbols, in spite of its name.
709
710 @item -X
711 @itemx +discard-locals
712 Discard local symbols starting with @samp{L} from each file in
713 @var{objfiles}. (Some compilers produce internally-used symbols that
714 begin with @samp{L}.)
715
716 @item -T @var{bfdname}
717 @cindex object code format
718 You can specify a particular object-code format @var{bfdname} for
719 @var{objfiles}. This may not be necessary; @var{strip} can automatically
720 recognize many formats. @xref{objdump}, for information on listing
721 available formats.
722 @end table
723
724 @node Index, , strip, Top
725 @unnumbered Index
726
727 @printindex cp
728
729 @contents
730 @bye
This page took 0.049447 seconds and 4 git commands to generate.