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