]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/binutils.texi
* objcopy.c (enum strip_action): Define strip_unneeded.
[thirdparty/binutils-gdb.git] / binutils / binutils.texi
1 \input texinfo @c -*- Texinfo -*-
2 @setfilename binutils.info
3
4 @ifinfo
5 @format
6 START-INFO-DIR-ENTRY
7 * Binutils: (binutils). The GNU binary utilities "ar", "objcopy",
8 "objdump", "nm", "nlmconv", "size",
9 "strings", "strip", and "ranlib".
10 END-INFO-DIR-ENTRY
11 @end format
12 @end ifinfo
13
14 @ifinfo
15 Copyright @copyright{} 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
16
17 Permission is granted to make and distribute verbatim copies of
18 this manual provided the copyright notice and this permission notice
19 are preserved on all copies.
20
21 @ignore
22 Permission is granted to process this file through TeX and print the
23 results, provided the printed document carries a copying permission
24 notice identical to this one except for the removal of this paragraph
25 (this paragraph not being relevant to the printed manual).
26
27 @end ignore
28
29 Permission is granted to copy and distribute modified versions of this
30 manual under the conditions for verbatim copying, provided also that
31 the entire resulting derived work is distributed under the terms of a
32 permission notice identical to this one.
33
34 Permission is granted to copy and distribute translations of this manual
35 into another language, under the above conditions for modified versions.
36 @end ifinfo
37
38 @synindex ky cp
39 @c
40 @c This file documents the GNU binary utilities "ar", "ld", "objcopy",
41 @c "objdump", "nm", "size", "strings", "strip", and "ranlib".
42 @c
43 @c Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
44 @c
45 @c This text may be freely distributed under the terms of the GNU
46 @c General Public License.
47 @c
48
49 @setchapternewpage odd
50 @settitle GNU Binary Utilities
51 @titlepage
52 @finalout
53 @title The GNU Binary Utilities
54 @subtitle Version 2.2
55 @sp 1
56 @subtitle May 1993
57 @author Roland H. Pesch
58 @author Jeffrey M. Osier
59 @author Cygnus Support
60 @page
61
62 @tex
63 {\parskip=0pt \hfill Cygnus Support\par \hfill
64 \TeX{}info \texinfoversion\par }
65 @end tex
66
67 @vskip 0pt plus 1filll
68 Copyright @copyright{} 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
69
70 Permission is granted to make and distribute verbatim copies of
71 this manual provided the copyright notice and this permission notice
72 are preserved on all copies.
73
74 Permission is granted to copy and distribute modified versions of this
75 manual under the conditions for verbatim copying, provided also that
76 the entire resulting derived work is distributed under the terms of a
77 permission notice identical to this one.
78
79 Permission is granted to copy and distribute translations of this manual
80 into another language, under the above conditions for modified versions.
81 @end titlepage
82
83 @node Top
84 @top Introduction
85
86 @cindex version
87 This brief manual contains preliminary documentation for the GNU binary
88 utilities (collectively version 2.2):
89
90 @iftex
91 @table @code
92 @item ar
93 Create, modify, and extract from archives
94
95 @item nm
96 List symbols from object files
97
98 @item objcopy
99 Copy and translate object files
100
101 @item objdump
102 Display information from object files
103
104 @item ranlib
105 Generate index to archive contents
106
107 @item size
108 List file section sizes and total size
109
110 @item strings
111 List printable strings from files
112
113 @item strip
114 Discard symbols
115
116 @item c++filt
117 Demangle encoded C++ symbols
118
119 @item nlmconv
120 Convert object code into a Netware Loadable Module
121 @end table
122 @end iftex
123
124 @menu
125 * ar:: Create, modify, and extract from archives
126 * nm:: List symbols from object files
127 * objcopy:: Copy and translate object files
128 * objdump:: Display information from object files
129 * ranlib:: Generate index to archive contents
130 * size:: List section sizes and total size
131 * strings:: List printable strings from files
132 * strip:: Discard symbols
133 * c++filt:: Filter to demangle encoded C++ symbols
134 * nlmconv:: Converts object code into an NLM
135 * Selecting The Target System:: How these utilities determine the target.
136 * Index::
137 @end menu
138
139 @node ar
140 @chapter ar
141
142 @kindex ar
143 @cindex archives
144 @cindex collections of files
145 @smallexample
146 ar [-]@var{p}[@var{mod} [@var{relpos}]] @var{archive} [@var{member}@dots{}]
147 ar -M [ <mri-script ]
148 @end smallexample
149
150 The GNU @code{ar} program creates, modifies, and extracts from
151 archives. An @dfn{archive} is a single file holding a collection of
152 other files in a structure that makes it possible to retrieve
153 the original individual files (called @dfn{members} of the archive).
154
155 The original files' contents, mode (permissions), timestamp, owner, and
156 group are preserved in the archive, and can be restored on
157 extraction.
158
159 @cindex name length
160 GNU @code{ar} can maintain archives whose members have names of any
161 length; however, depending on how @code{ar} is configured on your
162 system, a limit on member-name length may be imposed for compatibility
163 with archive formats maintained with other tools. If it exists, the
164 limit is often 15 characters (typical of formats related to a.out) or 16
165 characters (typical of formats related to coff).
166
167 @cindex libraries
168 @code{ar} is considered a binary utility because archives of this sort
169 are most often used as @dfn{libraries} holding commonly needed
170 subroutines.
171
172 @cindex symbol index
173 @code{ar} creates an index to the symbols defined in relocatable
174 object modules in the archive when you specify the modifier @samp{s}.
175 Once created, this index is updated in the archive whenever @code{ar}
176 makes a change to its contents (save for the @samp{q} update operation).
177 An archive with such an index speeds up linking to the library, and
178 allows routines in the library to call each other without regard to
179 their placement in the archive.
180
181 You may use @samp{nm -s} or @samp{nm --print-armap} to list this index
182 table. If an archive lacks the table, another form of @code{ar} called
183 @code{ranlib} can be used to add just the table.
184
185 @cindex compatibility, @code{ar}
186 @cindex @code{ar} compatibility
187 GNU @code{ar} is designed to be compatible with two different
188 facilities. You can control its activity using command-line options,
189 like the different varieties of @code{ar} on Unix systems; or, if you
190 specify the single command-line option @samp{-M}, you can control it
191 with a script supplied via standard input, like the MRI ``librarian''
192 program.
193
194 @menu
195 * ar cmdline:: Controlling @code{ar} on the command line
196 * ar scripts:: Controlling @code{ar} with a script
197 @end menu
198
199 @page
200 @node ar cmdline
201 @section Controlling @code{ar} on the command line
202
203 @smallexample
204 ar [-]@var{p}[@var{mod} [@var{relpos}]] @var{archive} [@var{member}@dots{}]
205 @end smallexample
206
207 @cindex Unix compatibility, @code{ar}
208 When you use @code{ar} in the Unix style, @code{ar} insists on at least two
209 arguments to execute: one keyletter specifying the @emph{operation}
210 (optionally accompanied by other keyletters specifying
211 @emph{modifiers}), and the archive name to act on.
212
213 Most operations can also accept further @var{member} arguments,
214 specifying particular files to operate on.
215
216 GNU @code{ar} allows you to mix the operation code @var{p} and modifier
217 flags @var{mod} in any order, within the first command-line argument.
218
219 If you wish, you may begin the first command-line argument with a
220 dash.
221
222 @cindex operations on archive
223 The @var{p} keyletter specifies what operation to execute; it may be
224 any of the following, but you must specify only one of them:
225
226 @table @code
227 @item d
228 @cindex deleting from archive
229 @emph{Delete} modules from the archive. Specify the names of modules to
230 be deleted as @var{member}@dots{}; the archive is untouched if you
231 specify no files to delete.
232
233 If you specify the @samp{v} modifier, @code{ar} lists each module
234 as it is deleted.
235
236 @item m
237 @cindex moving in archive
238 Use this operation to @emph{move} members in an archive.
239
240 The ordering of members in an archive can make a difference in how
241 programs are linked using the library, if a symbol is defined in more
242 than one member.
243
244 If no modifiers are used with @code{m}, any members you name in the
245 @var{member} arguments are moved to the @emph{end} of the archive;
246 you can use the @samp{a}, @samp{b}, or @samp{i} modifiers to move them to a
247 specified place instead.
248
249 @item p
250 @cindex printing from archive
251 @emph{Print} the specified members of the archive, to the standard
252 output file. If the @samp{v} modifier is specified, show the member
253 name before copying its contents to standard output.
254
255 If you specify no @var{member} arguments, all the files in the archive are
256 printed.
257
258 @item q
259 @cindex quick append to archive
260 @emph{Quick append}; add the files @var{member}@dots{} to the end of
261 @var{archive}, without checking for replacement.
262
263 The modifiers @samp{a}, @samp{b}, and @samp{i} do @emph{not} affect this
264 operation; new members are always placed at the end of the archive.
265
266 The modifier @samp{v} makes @code{ar} list each file as it is appended.
267
268 Since the point of this operation is speed, the archive's symbol table
269 index is not updated, even if it already existed; you can use @samp{ar s} or
270 @code{ranlib} explicitly to update the symbol table index.
271
272 @item r
273 @cindex replacement in archive
274 Insert the files @var{member}@dots{} into @var{archive} (with
275 @emph{replacement}). This operation differs from @samp{q} in that any
276 previously existing members are deleted if their names match those being
277 added.
278
279 If one of the files named in @var{member}@dots{} does not exist, @code{ar}
280 displays an error message, and leaves undisturbed any existing members
281 of the archive matching that name.
282
283 By default, new members are added at the end of the file; but you may
284 use one of the modifiers @samp{a}, @samp{b}, or @samp{i} to request
285 placement relative to some existing member.
286
287 The modifier @samp{v} used with this operation elicits a line of
288 output for each file inserted, along with one of the letters @samp{a} or
289 @samp{r} to indicate whether the file was appended (no old member
290 deleted) or replaced.
291
292 @item t
293 @cindex contents of archive
294 Display a @emph{table} listing the contents of @var{archive}, or those
295 of the files listed in @var{member}@dots{} that are present in the
296 archive. Normally only the member name is shown; if you also want to
297 see the modes (permissions), timestamp, owner, group, and size, you can
298 request that by also specifying the @samp{v} modifier.
299
300 If you do not specify a @var{member}, all files in the archive
301 are listed.
302
303 @cindex repeated names in archive
304 @cindex name duplication in archive
305 If there is more than one file with the same name (say, @samp{fie}) in
306 an archive (say @samp{b.a}), @samp{ar t b.a fie} lists only the
307 first instance; to see them all, you must ask for a complete
308 listing---in our example, @samp{ar t b.a}.
309 @c WRS only; per Gumby, this is implementation-dependent, and in a more
310 @c recent case in fact works the other way.
311
312 @item x
313 @cindex extract from archive
314 @emph{Extract} members (named @var{member}) from the archive. You can
315 use the @samp{v} modifier with this operation, to request that
316 @code{ar} list each name as it extracts it.
317
318 If you do not specify a @var{member}, all files in the archive
319 are extracted.
320
321 @end table
322
323 A number of modifiers (@var{mod}) may immediately follow the @var{p}
324 keyletter, to specify variations on an operation's behavior:
325
326 @table @code
327 @item a
328 @cindex relative placement in archive
329 Add new files @emph{after} an existing member of the
330 archive. If you use the modifier @samp{a}, the name of an existing archive
331 member must be present as the @var{relpos} argument, before the
332 @var{archive} specification.
333
334 @item b
335 Add new files @emph{before} an existing member of the
336 archive. If you use the modifier @samp{b}, the name of an existing archive
337 member must be present as the @var{relpos} argument, before the
338 @var{archive} specification. (same as @samp{i}).
339
340 @item c
341 @cindex creating archives
342 @emph{Create} the archive. The specified @var{archive} is always
343 created if it did not exist, when you request an update. But a warning is
344 issued unless you specify in advance that you expect to create it, by
345 using this modifier.
346
347 @item i
348 Insert new files @emph{before} an existing member of the
349 archive. If you use the modifier @samp{i}, the name of an existing archive
350 member must be present as the @var{relpos} argument, before the
351 @var{archive} specification. (same as @samp{b}).
352
353 @item l
354 This modifier is accepted but not used.
355 @c whaffor ar l modifier??? presumably compat; with
356 @c what???---pesch@@cygnus.com, 25jan91
357
358 @item o
359 @cindex dates in archive
360 Preserve the @emph{original} dates of members when extracting them. If
361 you do not specify this modifier, files extracted from the archive
362 are stamped with the time of extraction.
363
364 @item s
365 @cindex writing archive index
366 Write an object-file index into the archive, or update an existing one,
367 even if no other change is made to the archive. You may use this modifier
368 flag either with any operation, or alone. Running @samp{ar s} on an
369 archive is equivalent to running @samp{ranlib} on it.
370
371 @item u
372 @cindex updating an archive
373 Normally, @samp{ar r}@dots{} inserts all files
374 listed into the archive. If you would like to insert @emph{only} those
375 of the files you list that are newer than existing members of the same
376 names, use this modifier. The @samp{u} modifier is allowed only for the
377 operation @samp{r} (replace). In particular, the combination @samp{qu} is
378 not allowed, since checking the timestamps would lose any speed
379 advantage from the operation @samp{q}.
380
381 @item v
382 This modifier requests the @emph{verbose} version of an operation. Many
383 operations display additional information, such as filenames processed,
384 when the modifier @samp{v} is appended.
385
386 @item V
387 This modifier shows the version number of @code{ar}.
388 @end table
389
390 @node ar scripts
391 @section Controlling @code{ar} with a script
392
393 @smallexample
394 ar -M [ <@var{script} ]
395 @end smallexample
396
397 @cindex MRI compatibility, @code{ar}
398 @cindex scripts, @code{ar}
399 If you use the single command-line option @samp{-M} with @code{ar}, you
400 can control its operation with a rudimentary command language. This
401 form of @code{ar} operates interactively if standard input is coming
402 directly from a terminal. During interactive use, @code{ar} prompts for
403 input (the prompt is @samp{AR >}), and continues executing even after
404 errors. If you redirect standard input to a script file, no prompts are
405 issued, and @code{ar} abandons execution (with a nonzero exit code)
406 on any error.
407
408 The @code{ar} command language is @emph{not} designed to be equivalent
409 to the command-line options; in fact, it provides somewhat less control
410 over archives. The only purpose of the command language is to ease the
411 transition to GNU @code{ar} for developers who already have scripts
412 written for the MRI ``librarian'' program.
413
414 The syntax for the @code{ar} command language is straightforward:
415 @itemize @bullet
416 @item
417 commands are recognized in upper or lower case; for example, @code{LIST}
418 is the same as @code{list}. In the following descriptions, commands are
419 shown in upper case for clarity.
420
421 @item
422 a single command may appear on each line; it is the first word on the
423 line.
424
425 @item
426 empty lines are allowed, and have no effect.
427
428 @item
429 comments are allowed; text after either of the characters @samp{*}
430 or @samp{;} is ignored.
431
432 @item
433 Whenever you use a list of names as part of the argument to an @code{ar}
434 command, you can separate the individual names with either commas or
435 blanks. Commas are shown in the explanations below, for clarity.
436
437 @item
438 @samp{+} is used as a line continuation character; if @samp{+} appears
439 at the end of a line, the text on the following line is considered part
440 of the current command.
441 @end itemize
442
443 Here are the commands you can use in @code{ar} scripts, or when using
444 @code{ar} interactively. Three of them have special significance:
445
446 @code{OPEN} or @code{CREATE} specify a @dfn{current archive}, which is
447 a temporary file required for most of the other commands.
448
449 @code{SAVE} commits the changes so far specified by the script. Prior
450 to @code{SAVE}, commands affect only the temporary copy of the current
451 archive.
452
453 @table @code
454 @item ADDLIB @var{archive}
455 @itemx ADDLIB @var{archive} (@var{module}, @var{module}, @dots{} @var{module})
456 Add all the contents of @var{archive} (or, if specified, each named
457 @var{module} from @var{archive}) to the current archive.
458
459 Requires prior use of @code{OPEN} or @code{CREATE}.
460
461 @item ADDMOD @var{member}, @var{member}, @dots{} @var{member}
462 @c FIXME! w/Replacement?? If so, like "ar r @var{archive} @var{names}"
463 @c else like "ar q..."
464 Add each named @var{member} as a module in the current archive.
465
466 Requires prior use of @code{OPEN} or @code{CREATE}.
467
468 @item CLEAR
469 Discard the contents of the current archive, cancelling the effect of
470 any operations since the last @code{SAVE}. May be executed (with no
471 effect) even if no current archive is specified.
472
473 @item CREATE @var{archive}
474 Creates an archive, and makes it the current archive (required for many
475 other commands). The new archive is created with a temporary name; it
476 is not actually saved as @var{archive} until you use @code{SAVE}.
477 You can overwrite existing archives; similarly, the contents of any
478 existing file named @var{archive} will not be destroyed until @code{SAVE}.
479
480 @item DELETE @var{module}, @var{module}, @dots{} @var{module}
481 Delete each listed @var{module} from the current archive; equivalent to
482 @samp{ar -d @var{archive} @var{module} @dots{} @var{module}}.
483
484 Requires prior use of @code{OPEN} or @code{CREATE}.
485
486 @item DIRECTORY @var{archive} (@var{module}, @dots{} @var{module})
487 @itemx DIRECTORY @var{archive} (@var{module}, @dots{} @var{module}) @var{outputfile}
488 List each named @var{module} present in @var{archive}. The separate
489 command @code{VERBOSE} specifies the form of the output: when verbose
490 output is off, output is like that of @samp{ar -t @var{archive}
491 @var{module}@dots{}}. When verbose output is on, the listing is like
492 @samp{ar -tv @var{archive} @var{module}@dots{}}.
493
494 Output normally goes to the standard output stream; however, if you
495 specify @var{outputfile} as a final argument, @code{ar} directs the
496 output to that file.
497
498 @item END
499 Exit from @code{ar}, with a @code{0} exit code to indicate successful
500 completion. This command does not save the output file; if you have
501 changed the current archive since the last @code{SAVE} command, those
502 changes are lost.
503
504 @item EXTRACT @var{module}, @var{module}, @dots{} @var{module}
505 Extract each named @var{module} from the current archive, writing them
506 into the current directory as separate files. Equivalent to @samp{ar -x
507 @var{archive} @var{module}@dots{}}.
508
509 Requires prior use of @code{OPEN} or @code{CREATE}.
510
511 @ignore
512 @c FIXME Tokens but no commands???
513 @item FULLDIR
514
515 @item HELP
516 @end ignore
517
518 @item LIST
519 Display full contents of the current archive, in ``verbose'' style
520 regardless of the state of @code{VERBOSE}. The effect is like @samp{ar
521 tv @var{archive}}). (This single command is a GNU @code{ld}
522 enhancement, rather than present for MRI compatibility.)
523
524 Requires prior use of @code{OPEN} or @code{CREATE}.
525
526 @item OPEN @var{archive}
527 Opens an existing archive for use as the current archive (required for
528 many other commands). Any changes as the result of subsequent commands
529 will not actually affect @var{archive} until you next use @code{SAVE}.
530
531 @item REPLACE @var{module}, @var{module}, @dots{} @var{module}
532 In the current archive, replace each existing @var{module} (named in
533 the @code{REPLACE} arguments) from files in the current working directory.
534 To execute this command without errors, both the file, and the module in
535 the current archive, must exist.
536
537 Requires prior use of @code{OPEN} or @code{CREATE}.
538
539 @item VERBOSE
540 Toggle an internal flag governing the output from @code{DIRECTORY}.
541 When the flag is on, @code{DIRECTORY} output matches output from
542 @samp{ar -tv }@dots{}.
543
544 @item SAVE
545 Commit your changes to the current archive, and actually save it as a
546 file with the name specified in the last @code{CREATE} or @code{OPEN}
547 command.
548
549 Requires prior use of @code{OPEN} or @code{CREATE}.
550
551 @end table
552
553 @iftex
554 @node ld
555 @chapter ld
556 @cindex linker
557 @kindex ld
558 The GNU linker @code{ld} is now described in a separate manual.
559 @xref{Top,, Overview,, Using LD: the GNU linker}.
560 @end iftex
561
562 @node nm
563 @chapter nm
564 @cindex symbols
565 @kindex nm
566
567 @smallexample
568 nm [ -a | --debug-syms ] [ -g | --extern-only ]
569 [ -B ] [ -C | --demangle ] [ -D | --dynamic ]
570 [ -s | --print-armap ] [ -A | -o | --print-file-name ]
571 [ -n | -v | --numeric-sort ] [ -p | --no-sort ]
572 [ -r | --reverse-sort ] [ --size-sort ] [ -u | --undefined-only ]
573 [ -t @var{radix} | --radix=@var{radix} ] [ -P | --portability ]
574 [ --target=@var{bfdname} ] [ -f @var{format} | --format=@var{format} ]
575 [ --no-demangle ] [ -V | --version ] [ --help ] [ @var{objfile}@dots{} ]
576 @end smallexample
577
578 GNU @code{nm} lists the symbols from object files @var{objfile}@dots{}.
579 If no object files are listed as arguments, @code{nm} assumes
580 @file{a.out}.
581
582 For each symbol, @code{nm} shows:
583
584 @itemize @bullet
585 @item
586 The symbol value, in the radix selected by options (see below), or
587 hexadecimal by default.
588
589 @item
590 The symbol type. At least the following types are used; others are, as
591 well, depending on the object file format. If lowercase, the symbol is
592 local; if uppercase, the symbol is global (external).
593
594 @c Some more detail on exactly what these symbol types are used for
595 @c would be nice.
596 @table @code
597 @item A
598 Absolute.
599
600 @item B
601 BSS (uninitialized data).
602
603 @item C
604 Common.
605
606 @item D
607 Initialized data.
608
609 @item I
610 Indirect reference.
611
612 @item T
613 Text (program code).
614
615 @item U
616 Undefined.
617 @end table
618
619 @item
620 The symbol name.
621 @end itemize
622
623 The long and short forms of options, shown here as alternatives, are
624 equivalent.
625
626 @table @code
627 @item -A
628 @itemx -o
629 @itemx --print-file-name
630 @cindex input file name
631 @cindex file name
632 @cindex source file name
633 Precede each symbol by the name of the input file (or archive element)
634 in which it was found, rather than identifying the input file once only,
635 before all of its symbols.
636
637 @item -a
638 @itemx --debug-syms
639 @cindex debugging symbols
640 Display all symbols, even debugger-only symbols; normally these are not
641 listed.
642
643 @item -B
644 @cindex @code{nm} format
645 @cindex @code{nm} compatibility
646 The same as @samp{--format=bsd} (for compatibility with the MIPS @code{nm}).
647
648 @item -C
649 @itemx --demangle
650 @cindex demangling C++ symbols
651 Decode (@dfn{demangle}) low-level symbol names into user-level names.
652 Besides removing any initial underscore prepended by the system, this
653 makes C++ function names readable. @xref{c++filt}, for more information
654 on demangling.
655
656 @item --no-demangle
657 Do not demangle low-level symbol names. This is the default.
658
659 @item -D
660 @itemx --dynamic
661 @cindex dynamic symbols
662 Display the dynamic symbols rather than the normal symbols. This is
663 only meaningful for dynamic objects, such as certain types of shared
664 libraries.
665
666 @item -f @var{format}
667 @itemx --format=@var{format}
668 @cindex @code{nm} format
669 @cindex @code{nm} compatibility
670 Use the output format @var{format}, which can be @code{bsd},
671 @code{sysv}, or @code{posix}. The default is @code{bsd}.
672 Only the first character of @var{format} is significant; it can be
673 either upper or lower case.
674
675 @item -g
676 @itemx --extern-only
677 @cindex external symbols
678 Display only external symbols.
679
680 @item -n
681 @itemx -v
682 @itemx --numeric-sort
683 Sort symbols numerically by their addresses, rather than alphabetically
684 by their names.
685
686 @item -p
687 @itemx --no-sort
688 @cindex sorting symbols
689 Do not bother to sort the symbols in any order; print them in the order
690 encountered.
691
692 @item -P
693 @itemx --portability
694 Use the POSIX.2 standard output format instead of the default format.
695 Equivalent to @samp{-f posix}.
696
697 @item -s
698 @itemx --print-armap
699 @cindex symbol index, listing
700 When listing symbols from archive members, include the index: a mapping
701 (stored in the archive by @code{ar} or @code{ranlib}) of which modules
702 contain definitions for which names.
703
704 @item -r
705 @itemx --reverse-sort
706 Reverse the order of the sort (whether numeric or alphabetic); let the
707 last come first.
708
709 @item --size-sort
710 Sort symbols by size. The size is computed as the difference between
711 the value of the symbol and the value of the symbol with the next higher
712 value. The size of the symbol is printed, rather than the value.
713
714 @item -t @var{radix}
715 @itemx --radix=@var{radix}
716 Use @var{radix} as the radix for printing the symbol values. It must be
717 @samp{d} for decimal, @samp{o} for octal, or @samp{x} for hexadecimal.
718
719 @item --target=@var{bfdname}
720 @cindex object code format
721 Specify an object code format other than your system's default format.
722 @xref{Target Selection}, for more information.
723
724 @item -u
725 @itemx --undefined-only
726 @cindex external symbols
727 @cindex undefined symbols
728 Display only undefined symbols (those external to each object file).
729
730 @item -V
731 @itemx --version
732 Show the version number of @code{nm} and exit.
733
734 @item --help
735 Show a summary of the options to @code{nm} and exit.
736 @end table
737
738 @node objcopy
739 @chapter objcopy
740
741 @smallexample
742 objcopy [ -F @var{bfdname} | --target=@var{bfdname} ]
743 [ -I @var{bfdname} | --input-target=@var{bfdname} ]
744 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
745 [ -S | --strip-all ] [ -g | --strip-debug ]
746 [ -K @var{symbolname} | --keep-symbol=@var{symbolname} ]
747 [ -N @var{symbolname} | --strip-symbol=@var{symbolname} ]
748 [ -x | --discard-all ] [ -X | --discard-locals ]
749 [ -b @var{byte} | --byte=@var{byte} ]
750 [ -i @var{interleave} | --interleave=@var{interleave} ]
751 [ -R @var{sectionname} | --remove-section=@var{sectionname} ]
752 [ --gap-fill=@var{val} ] [ --pad-to=@var{address} ]
753 [ --set-start=@var{val} ] [ --adjust-start=@var{incr} ]
754 [ --adjust-vma=@var{incr} ]
755 [ --adjust-section-vma=@var{section}@{=,+,-@}@var{val} ]
756 [ --adjust-warnings ] [ --no-adjust-warnings ]
757 [ --set-section-flags=@var{section}=@var{flags} ]
758 [ --add-section=@var{sectionname}=@var{filename} ]
759 [ -v | --verbose ] [ -V | --version ] [ --help ]
760 @var{infile} [@var{outfile}]
761 @end smallexample
762
763 The @sc{gnu} @code{objcopy} utility copies the contents of an object
764 file to another. @code{objcopy} uses the @sc{gnu} @sc{bfd} Library to
765 read and write the object files. It can write the destination object
766 file in a format different from that of the source object file. The
767 exact behavior of @code{objcopy} is controlled by command-line options.
768
769 @code{objcopy} creates temporary files to do its translations and
770 deletes them afterward. @code{objcopy} uses @sc{bfd} to do all its
771 translation work; it has access to all the formats described in @sc{bfd}
772 and thus is able to recognize most formats without being told
773 explicitly. @xref{BFD,,BFD,ld.info,Using LD}.
774
775 @code{objcopy} can be used to generate S-records by using an output
776 target of @samp{srec} (e.g., use @samp{-O srec}).
777
778 @code{objcopy} can be used to generate a raw binary file by using an
779 output target of @samp{binary} (e.g., use @samp{-O binary}). When
780 @code{objcopy} generates a raw binary file, it will essentially produce
781 a memory dump of the contents of the input object file. All symbols and
782 relocation information will be discarded. The memory dump will start at
783 the virtual address of the lowest section copied into the output file.
784
785 When generating an S-record or a raw binary file, it may be helpful to
786 use @samp{-S} to remove sections containing debugging information. In
787 some cases @samp{-R} will be useful to remove sections which contain
788 information which is not needed by the binary file.
789
790 @table @code
791 @item @var{infile}
792 @itemx @var{outfile}
793 The source and output files, respectively.
794 If you do not specify @var{outfile}, @code{objcopy} creates a
795 temporary file and destructively renames the result with
796 the name of @var{infile}.
797
798 @item -I @var{bfdname}
799 @itemx --input-target=@var{bfdname}
800 Consider the source file's object format to be @var{bfdname}, rather than
801 attempting to deduce it. @xref{Target Selection}, for more information.
802
803 @item -O @var{bfdname}
804 @itemx --output-target=@var{bfdname}
805 Write the output file using the object format @var{bfdname}.
806 @xref{Target Selection}, for more information.
807
808 @item -F @var{bfdname}
809 @itemx --target=@var{bfdname}
810 Use @var{bfdname} as the object format for both the input and the output
811 file; i.e., simply transfer data from source to destination with no
812 translation. @xref{Target Selection}, for more information.
813
814 @item -R @var{sectionname}
815 @itemx --remove-section=@var{sectionname}
816 Remove any section named @var{sectionname} from the output file. This
817 option may be given more than once. Note that using this option
818 inappropriately may make the output file unusable.
819
820 @item -S
821 @itemx --strip-all
822 Do not copy relocation and symbol information from the source file.
823
824 @item -g
825 @itemx --strip-debug
826 Do not copy debugging symbols from the source file.
827
828 @item --strip-unneeded
829 Strip all symbols that are not needed for relocation processing.
830
831 @item -K @var{symbolname}
832 @itemx --keep-symbol=@var{symbolname}
833 Copy only symbol @var{symbolname} from the source file. This option may
834 be given more than once.
835
836 @item -N @var{symbolname}
837 @itemx --strip-symbol=@var{symbolname}
838 Do not copy symbol @var{symbolname} from the source file. This option
839 may be given more than once, and may be combined with strip options
840 other than @code{-K}.
841
842 @item -x
843 @itemx --discard-all
844 Do not copy non-global symbols from the source file.
845 @c FIXME any reason to prefer "non-global" to "local" here?
846
847 @item -X
848 @itemx --discard-locals
849 Do not copy compiler-generated local symbols.
850 (These usually start with @samp{L} or @samp{.}.)
851
852 @item -b @var{byte}
853 @itemx --byte=@var{byte}
854 Keep only every @var{byte}th byte of the input file (header data is not
855 affected). @var{byte} can be in the range from 0 to @var{interleave}-1,
856 where @var{interleave} is given by the @samp{-i} or @samp{--interleave}
857 option, or the default of 4. This option is useful for creating files
858 to program @sc{rom}. It is typically used with an @code{srec} output
859 target.
860
861 @item -i @var{interleave}
862 @itemx --interleave=@var{interleave}
863 Only copy one out of every @var{interleave} bytes. Select which byte to
864 copy with the @var{-b} or @samp{--byte} option. The default is 4.
865 @code{objcopy} ignores this option if you do not specify either @samp{-b} or
866 @samp{--byte}.
867
868 @item --gap-fill @var{val}
869 Fill gaps between sections with @var{val}. This is done by increasing
870 the size of the section with the lower address, and filling in the extra
871 space created with @var{val}.
872
873 @item --pad-to @var{address}
874 Pad the output file up to the virtual address @var{address}. This is
875 done by increasing the size of the last section. The extra space is
876 filled in with the value specified by @samp{--gap-fill} (default zero).
877
878 @item --set-start @var{val}
879 Set the address of the new file to @var{val}. Not all object file
880 formats support setting the start address.
881
882 @item --adjust-start @var{incr}
883 Adjust the start address by adding @var{incr}. Not all object file
884 formats support setting the start address.
885
886 @item --adjust-vma @var{incr}
887 Adjust the address of all sections, as well as the start address, by
888 adding @var{incr}. Some object file formats do not permit section
889 addresses to be changed arbitrarily. Note that this does not relocate
890 the sections; if the program expects sections to be loaded at a certain
891 address, and this option is used to change the sections such that they
892 are loaded at a different address, the program may fail.
893
894 @item --adjust-section-vma @var{section}@{=,+,-@}@var{val}
895 Set or adjust the address of the named @var{section}. If @samp{=} is
896 used, the section address is set to @var{val}. Otherwise, @var{val} is
897 added to or subtracted from the section address. See the comments under
898 @samp{--adjust-vma}, above. If @var{section} does not exist in the
899 input file, a warning will be issued, unless @samp{--no-adjust-warnings}
900 is used.
901
902 @item --adjust-warnings
903 If @samp{--adjust-section-vma} is used, and the named section does not
904 exist, issue a warning. This is the default.
905
906 @item --no-adjust-warnings
907 Do not issue a warning if @samp{--adjust-section-vma} is used, even if
908 the named section does not exist.
909
910 @item --set-section-flags @var{section}=@var{flags}
911 Set the flags for the named section. The @var{flags} argument is a
912 comma separated string of flag names. The recognized names are
913 @samp{alloc}, @samp{load}, @samp{readonly}, @samp{code}, @samp{data},
914 and @samp{rom}. Not all flags are meaningful for all object file
915 formats.
916
917 @item --add-section @var{sectionname}=@var{filename}
918 Add a new section named @var{sectionname} while copying the file. The
919 contents of the new section are taken from the file @var{filename}. The
920 size of the section will be the size of the file. This option only
921 works on file formats which can support sections with arbitrary names.
922
923 @item -V
924 @itemx --version
925 Show the version number of @code{objcopy}.
926
927 @item -v
928 @itemx --verbose
929 Verbose output: list all object files modified. In the case of
930 archives, @samp{objcopy -V} lists all members of the archive.
931
932 @item --help
933 Show a summary of the options to @code{objcopy}.
934 @end table
935
936 @node objdump
937 @chapter objdump
938
939 @cindex object file information
940 @kindex objdump
941
942 @smallexample
943 objdump [ -a | --archive-headers ]
944 [ -b @var{bfdname} | --target=@var{bfdname} ]
945 [ -d | --disassemble ] [ -D | --disassemble-all ]
946 [ -f | --file-headers ]
947 [ -h | --section-headers | --headers ] [ -i | --info ]
948 [ -j @var{section} | --section=@var{section} ]
949 [ -l | --line-numbers ] [ -S | --source ]
950 [ -m @var{machine} | --architecture=@var{machine} ]
951 [ -r | --reloc ] [ -R | --dynamic-reloc ]
952 [ -s | --full-contents ] [ --stabs ]
953 [ -t | --syms ] [ -T | --dynamic-syms ] [ -x | --all-headers ]
954 [ -w | --wide ] [ --version ] [ --help ] @var{objfile}@dots{}
955 @end smallexample
956
957 @code{objdump} displays information about one or more object files.
958 The options control what particular information to display. This
959 information is mostly useful to programmers who are working on the
960 compilation tools, as opposed to programmers who just want their
961 program to compile and work.
962
963 @var{objfile}@dots{} are the object files to be examined. When you
964 specify archives, @code{objdump} shows information on each of the member
965 object files.
966
967 The long and short forms of options, shown here as alternatives, are
968 equivalent. At least one option besides @samp{-l} must be given.
969
970 @table @code
971 @item -a
972 @itemx --archive-header
973 @cindex archive headers
974 If any of the @var{objfile} files are archives, display the archive
975 header information (in a format similar to @samp{ls -l}). Besides the
976 information you could list with @samp{ar tv}, @samp{objdump -a} shows
977 the object file format of each archive member.
978
979 @item -b @var{bfdname}
980 @itemx --target=@var{bfdname}
981 @cindex object code format
982 Specify that the object-code format for the object files is
983 @var{bfdname}. This option may not be necessary; @var{objdump} can
984 automatically recognize many formats.
985
986 For example,
987 @example
988 objdump -b oasys -m vax -h fu.o
989 @end example
990 @noindent
991 displays summary information from the section headers (@samp{-h}) of
992 @file{fu.o}, which is explicitly identified (@samp{-m}) as a VAX object
993 file in the format produced by Oasys compilers. You can list the
994 formats available with the @samp{-i} option.
995 @xref{Target Selection}, for more information.
996
997 @item -d
998 @itemx --disassemble
999 @cindex disassembling object code
1000 @cindex machine instructions
1001 Display the assembler mnemonics for the machine instructions from
1002 @var{objfile}. This option only disassembles those sections which are
1003 expected to contain instructions.
1004
1005 @item -D
1006 @itemx --disassemble-all
1007 Like @samp{-d}, but disassemble the contents of all sections, not just
1008 those expected to contain instructions.
1009
1010 @item -f
1011 @itemx --file-header
1012 @cindex object file header
1013 Display summary information from the overall header of
1014 each of the @var{objfile} files.
1015
1016 @item -h
1017 @itemx --section-header
1018 @itemx --header
1019 @cindex section headers
1020 Display summary information from the section headers of the
1021 object file.
1022
1023 File segments may be relocated to nonstandard addresses, for example by
1024 using the @samp{-Ttext}, @samp{-Tdata}, or @samp{-Tbss} options to
1025 @code{ld}. However, some object file formats, such as a.out, do not
1026 store the starting address of the file segments. In those situations,
1027 although @code{ld} relocates the sections correctly, using @samp{objdump
1028 -h} to list the file section headers cannot show the correct addresses.
1029 Instead, it shows the usual addresses, which are implicit for the
1030 target.
1031
1032 @item --help
1033 Print a summary of the options to @code{objdump} and exit.
1034
1035 @item -i
1036 @itemx --info
1037 @cindex architectures available
1038 @cindex object formats available
1039 Display a list showing all architectures and object formats available
1040 for specification with @samp{-b} or @samp{-m}.
1041
1042 @item -j @var{name}
1043 @itemx --section=@var{name}
1044 @cindex section information
1045 Display information only for section @var{name}.
1046
1047 @item -l
1048 @itemx --line-numbers
1049 @cindex source filenames for object files
1050 Label the display (using debugging information) with the filename
1051 and source line numbers corresponding to the object code shown.
1052 Only useful with @samp{-d} or @samp{-D}.
1053
1054 @item -m @var{machine}
1055 @itemx --architecture=@var{machine}
1056 @cindex architecture
1057 Specify that the object files @var{objfile} are for architecture
1058 @var{machine}. You can list available architectures using the @samp{-i}
1059 option.
1060
1061 @item -r
1062 @itemx --reloc
1063 @cindex relocation entries, in object file
1064 Print the relocation entries of the file. If used with @samp{-d} or
1065 @samp{-D}, the relocations are printed interspersed with the
1066 disassembly.
1067
1068 @item -R
1069 @itemx --dynamic-reloc
1070 @cindex dynamic relocation entries, in object file
1071 Print the dynamic relocation entries of the file. This is only
1072 meaningful for dynamic objects, such as certain types of shared
1073 libraries.
1074
1075 @item -s
1076 @itemx --full-contents
1077 @cindex sections, full contents
1078 @cindex object file sections
1079 Display the full contents of any sections requested.
1080
1081 @item -S
1082 @itemx --source
1083 @cindex source disassembly
1084 @cindex disassembly, with source
1085 Display source code intermixed with disassembly, if possible. Implies
1086 @samp{-d}.
1087
1088 @item --stabs
1089 @cindex stab
1090 @cindex .stab
1091 @cindex debug symbols
1092 @cindex ELF object file format
1093 Display the full contents of any sections requested. Display the
1094 contents of the .stab and .stab.index and .stab.excl sections from an
1095 ELF file. This is only useful on systems (such as Solaris 2.0) in which
1096 @code{.stab} debugging symbol-table entries are carried in an ELF
1097 section. In most other file formats, debugging symbol-table entries are
1098 interleaved with linkage symbols, and are visible in the @samp{--syms}
1099 output.
1100
1101 @item -t
1102 @itemx --syms
1103 @cindex symbol table entries, printing
1104 Print the symbol table entries of the file.
1105 This is similar to the information provided by the @samp{nm} program.
1106
1107 @item -T
1108 @itemx --dynamic-syms
1109 @cindex dynamic symbol table entries, printing
1110 Print the dynamic symbol table entries of the file. This is only
1111 meaningful for dynamic objects, such as certain types of shared
1112 libraries. This is similar to the information provided by the @samp{nm}
1113 program when given the @samp{-D} (@samp{--dynamic}) option.
1114
1115 @item --version
1116 Print the version number of @code{objdump} and exit.
1117
1118 @item -x
1119 @itemx --all-header
1120 @cindex all header information, object file
1121 @cindex header information, all
1122 Display all available header information, including the symbol table and
1123 relocation entries. Using @samp{-x} is equivalent to specifying all of
1124 @samp{-a -f -h -r -t}.
1125
1126 @item -w
1127 @item --wide
1128 @cindex wide output, printing
1129 Format some lines for output devices that have more than 80 columns.
1130 @end table
1131
1132 @node ranlib
1133 @chapter ranlib
1134
1135 @kindex ranlib
1136 @cindex archive contents
1137 @cindex symbol index
1138
1139 @smallexample
1140 ranlib [-vV] @var{archive}
1141 @end smallexample
1142
1143 @code{ranlib} generates an index to the contents of an archive and
1144 stores it in the archive. The index lists each symbol defined by a
1145 member of an archive that is a relocatable object file.
1146
1147 You may use @samp{nm -s} or @samp{nm --print-armap} to list this index.
1148
1149 An archive with such an index speeds up linking to the library and
1150 allows routines in the library to call each other without regard to
1151 their placement in the archive.
1152
1153 The GNU @code{ranlib} program is another form of GNU @code{ar}; running
1154 @code{ranlib} is completely equivalent to executing @samp{ar -s}.
1155 @xref{ar}.
1156
1157 @table @code
1158 @item -v
1159 @itemx -V
1160 Show the version number of @code{ranlib}.
1161 @end table
1162
1163 @node size
1164 @chapter size
1165
1166 @kindex size
1167 @cindex section sizes
1168
1169 @smallexample
1170 size [ -A | -B | --format=@var{compatibility} ]
1171 [ --help ] [ -d | -o | -x | --radix=@var{number} ]
1172 [ --target=@var{bfdname} ] [ -V | --version ]
1173 @var{objfile}@dots{}
1174 @end smallexample
1175
1176 The GNU @code{size} utility lists the section sizes---and the total
1177 size---for each of the object or archive files @var{objfile} in its
1178 argument list. By default, one line of output is generated for each
1179 object file or each module in an archive.
1180
1181 @var{objfile}@dots{} are the object files to be examined.
1182
1183 The command line options have the following meanings:
1184
1185 @table @code
1186 @item -A
1187 @itemx -B
1188 @itemx --format=@var{compatibility}
1189 @cindex @code{size} display format
1190 Using one of these options, you can choose whether the output from GNU
1191 @code{size} resembles output from System V @code{size} (using @samp{-A},
1192 or @samp{--format=sysv}), or Berkeley @code{size} (using @samp{-B}, or
1193 @samp{--format=berkeley}). The default is the one-line format similar to
1194 Berkeley's.
1195 @c Bonus for doc-source readers: you can also say --format=strange (or
1196 @c anything else that starts with 's') for sysv, and --format=boring (or
1197 @c anything else that starts with 'b') for Berkeley.
1198
1199 Here is an example of the Berkeley (default) format of output from
1200 @code{size}:
1201 @smallexample
1202 size --format=Berkeley ranlib size
1203 text data bss dec hex filename
1204 294880 81920 11592 388392 5ed28 ranlib
1205 294880 81920 11888 388688 5ee50 size
1206 @end smallexample
1207
1208 @noindent
1209 This is the same data, but displayed closer to System V conventions:
1210
1211 @smallexample
1212 size --format=SysV ranlib size
1213 ranlib :
1214 section size addr
1215 .text 294880 8192
1216 .data 81920 303104
1217 .bss 11592 385024
1218 Total 388392
1219
1220
1221 size :
1222 section size addr
1223 .text 294880 8192
1224 .data 81920 303104
1225 .bss 11888 385024
1226 Total 388688
1227 @end smallexample
1228
1229 @item --help
1230 Show a summary of acceptable arguments and options.
1231
1232 @item -d
1233 @itemx -o
1234 @itemx -x
1235 @itemx --radix=@var{number}
1236 @cindex @code{size} number format
1237 @cindex radix for section sizes
1238 Using one of these options, you can control whether the size of each
1239 section is given in decimal (@samp{-d}, or @samp{--radix=10}); octal
1240 (@samp{-o}, or @samp{--radix=8}); or hexadecimal (@samp{-x}, or
1241 @samp{--radix=16}). In @samp{--radix=@var{number}}, only the three
1242 values (8, 10, 16) are supported. The total size is always given in two
1243 radices; decimal and hexadecimal for @samp{-d} or @samp{-x} output, or
1244 octal and hexadecimal if you're using @samp{-o}.
1245
1246 @item --target=@var{bfdname}
1247 @cindex object code format
1248 Specify that the object-code format for @var{objfile} is
1249 @var{bfdname}. This option may not be necessary; @code{size} can
1250 automatically recognize many formats.
1251 @xref{Target Selection}, for more information.
1252
1253 @item -V
1254 @itemx --version
1255 Display the version number of @code{size}.
1256 @end table
1257
1258 @node strings
1259 @chapter strings
1260 @kindex strings
1261 @cindex listings strings
1262 @cindex printing strings
1263 @cindex strings, printing
1264
1265 @smallexample
1266 strings [-afov] [-@var{min-len}] [-n @var{min-len}] [-t @var{radix}] [-]
1267 [--all] [--print-file-name] [--bytes=@var{min-len}]
1268 [--radix=@var{radix}] [--target=@var{bfdname}]
1269 [--help] [--version] @var{file}@dots{}
1270 @end smallexample
1271
1272 For each @var{file} given, GNU @code{strings} prints the printable
1273 character sequences that are at least 4 characters long (or the number
1274 given with the options below) and are followed by a NUL or newline
1275 character. By default, it only prints the strings from the initialized
1276 data sections of object files; for other types of files, it prints the
1277 strings from the whole file.
1278
1279 @code{strings} is mainly useful for determining the contents of non-text
1280 files.
1281
1282 @table @code
1283 @item -a
1284 @itemx --all
1285 @itemx -
1286 Do not scan only the initialized data section of object files; scan
1287 the whole files.
1288
1289 @item -f
1290 @itemx --print-file-name
1291 Print the name of the file before each string.
1292
1293 @item --help
1294 Print a summary of the program usage on the standard output and exit.
1295
1296 @itemx -@var{min-len}
1297 @item -n @var{min-len}
1298 @itemx --bytes=@var{min-len}
1299 Print sequences of characters that are at least @var{min-len} characters
1300 long, instead of the default 4.
1301
1302 @item -o
1303 Like @samp{-t o}. Some other versions of @code{strings} have @samp{-o}
1304 act like @samp{-t d} instead. Since we can not be compatible with both
1305 ways, we simply chose one.
1306
1307 @item -t @var{radix}
1308 @itemx --radix=@var{radix}
1309 Print the offset within the file before each string. The single
1310 character argument specifies the radix of the offset---@samp{o} for
1311 octal, @samp{x} for hexadecimal, or @samp{d} for decimal.
1312
1313 @item --target=@var{bfdname}
1314 @cindex object code format
1315 Specify an object code format other than your system's default format.
1316 @xref{Target Selection}, for more information.
1317
1318 @item -v
1319 @itemx --version
1320 Print the program version number on the standard output and exit.
1321 @end table
1322
1323 @node strip
1324 @chapter strip
1325
1326 @kindex strip
1327 @cindex removing symbols
1328 @cindex discarding symbols
1329 @cindex symbols, discarding
1330
1331 @smallexample
1332 strip [ -F @var{bfdname} | --target=@var{bfdname} | --target=@var{bfdname} ]
1333 [ -I @var{bfdname} | --input-target=@var{bfdname} ]
1334 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
1335 [ -s | --strip-all ] [ -S | -g | --strip-debug ]
1336 [ -K @var{symbolname} | --keep-symbol=@var{symbolname} ]
1337 [ -N @var{symbolname} | --strip-symbol=@var{symbolname} ]
1338 [ -x | --discard-all ] [ -X | --discard-locals ]
1339 [ -R @var{sectionname} | --remove-section=@var{sectionname} ]
1340 [ -v | --verbose ] [ -V | --version ] [ --help ]
1341 @var{objfile}@dots{}
1342 @end smallexample
1343
1344 GNU @code{strip} discards all symbols from object files
1345 @var{objfile}. The list of object files may include archives.
1346 At least one object file must be given.
1347
1348 @code{strip} modifies the files named in its argument,
1349 rather than writing modified copies under different names.
1350
1351 @table @code
1352 @item -F @var{bfdname}
1353 @itemx --target=@var{bfdname}
1354 Treat the original @var{objfile} as a file with the object
1355 code format @var{bfdname}, and rewrite it in the same format.
1356 @xref{Target Selection}, for more information.
1357
1358 @item --help
1359 Show a summary of the options to @code{strip} and exit.
1360
1361 @item -I @var{bfdname}
1362 @itemx --input-target=@var{bfdname}
1363 Treat the original @var{objfile} as a file with the object
1364 code format @var{bfdname}.
1365 @xref{Target Selection}, for more information.
1366
1367 @item -O @var{bfdname}
1368 @itemx --output-target=@var{bfdname}
1369 Replace @var{objfile} with a file in the output format @var{bfdname}.
1370 @xref{Target Selection}, for more information.
1371
1372 @item -R @var{sectionname}
1373 @itemx --remove-section=@var{sectionname}
1374 Remove any section named @var{sectionname} from the output file. This
1375 option may be given more than once. Note that using this option
1376 inappropriately may make the output file unusable.
1377
1378 @item -s
1379 @itemx --strip-all
1380 Remove all symbols.
1381
1382 @item -g
1383 @itemx -S
1384 @itemx --strip-debug
1385 Remove debugging symbols only.
1386
1387 @item --strip-unneeded
1388 Remove all symbols that are not needed for relocation processing.
1389
1390 @item -K @var{symbolname}
1391 @itemx --keep-symbol=@var{symbolname}
1392 Keep only symbol @var{symbolname} from the source file. This option may
1393 be given more than once.
1394
1395 @item -N @var{symbolname}
1396 @itemx --strip-symbol=@var{symbolname}
1397 Remove symbol @var{symbolname} from the source file. This option may be
1398 given more than once, and may be combined with strip options other than
1399 @code{-K}.
1400
1401 @item -x
1402 @itemx --discard-all
1403 Remove non-global symbols.
1404
1405 @item -X
1406 @itemx --discard-locals
1407 Remove compiler-generated local symbols.
1408 (These usually start with @samp{L} or @samp{.}.)
1409
1410 @item -V
1411 @itemx --version
1412 Show the version number for @code{strip}.
1413
1414 @item -v
1415 @itemx --verbose
1416 Verbose output: list all object files modified. In the case of
1417 archives, @samp{strip -v} lists all members of the archive.
1418 @end table
1419
1420 @node c++filt
1421 @chapter c++filt
1422
1423 @kindex c++filt
1424 @cindex demangling C++ symbols
1425
1426 @smallexample
1427 c++filt [ -_ | --strip-underscores ]
1428 [ -n | --no-strip-underscores ]
1429 [ -s @var{format} | --format=@var{format} ]
1430 [ --help ] [ --version ] [ @var{symbol}@dots{} ]
1431 @end smallexample
1432
1433 The C++ language provides function overloading, which means that you can
1434 write many functions with the same name (providing each takes parameters
1435 of different types). All C++ function names are encoded into a
1436 low-level assembly label (this process is known as
1437 @dfn{mangling}). The @code{c++filt} program does the inverse mapping: it
1438 decodes (@dfn{demangles}) low-level names into user-level names so that
1439 the linker can keep these overloaded functions from clashing.
1440
1441 Every alphanumeric word (consisting of letters, digits, underscores,
1442 dollars, or periods) seen in the input is a potential label. If the
1443 label decodes into a C++ name, the C++ name replaces the low-level
1444 name in the output.
1445
1446 You can use @code{c++filt} to decipher individual symbols:
1447
1448 @example
1449 c++filt @var{symbol}
1450 @end example
1451
1452 If no @var{symbol} arguments are given, @code{c++filt} reads symbol
1453 names from the standard input and writes the demangled names to the
1454 standard output. All results are printed on the standard output.
1455
1456 @table @code
1457 @item -_
1458 @itemx --strip-underscores
1459 On some systems, both the C and C++ compilers put an underscore in front
1460 of every name. For example, the C name @code{foo} gets the low-level
1461 name @code{_foo}. This option removes the initial underscore. Whether
1462 @code{c++filt} removes the underscore by default is target dependent.
1463
1464 @item -n
1465 @itemx --no-strip-underscores
1466 Do not remove the initial underscore.
1467
1468 @item -s @var{format}
1469 @itemx --format=@var{format}
1470 GNU @code{nm} can decode three different methods of mangling, used by
1471 different C++ compilers. The argument to this option selects which
1472 method it uses:
1473
1474 @table @code
1475 @item gnu
1476 the one used by the GNU compiler (the default method)
1477 @item lucid
1478 the one used by the Lucid compiler
1479 @item arm
1480 the one specified by the C++ Annotated Reference Manual
1481 @end table
1482
1483 @item --help
1484 Print a summary of the options to @code{c++filt} and exit.
1485
1486 @item --version
1487 Print the version number of @code{c++filt} and exit.
1488 @end table
1489
1490 @quotation
1491 @emph{Warning:} @code{c++filt} is a new utility, and the details of its
1492 user interface are subject to change in future releases. In particular,
1493 a command-line option may be required in the the future to decode a name
1494 passed as an argument on the command line; in other words,
1495
1496 @example
1497 c++filt @var{symbol}
1498 @end example
1499
1500 @noindent
1501 may in a future release become
1502
1503 @example
1504 c++filt @var{option} @var{symbol}
1505 @end example
1506 @end quotation
1507
1508 @node nlmconv
1509 @chapter nlmconv
1510
1511 @code{nlmconv} converts a relocatable object file into a NetWare
1512 Loadable Module.
1513
1514 @ignore
1515 @code{nlmconv} currently works with @samp{i386} object
1516 files in @code{coff}, @sc{elf}, or @code{a.out} format, and @sc{SPARC}
1517 object files in @sc{elf}, or @code{a.out} format@footnote{
1518 @code{nlmconv} should work with any @samp{i386} or @sc{sparc} object
1519 format in the Binary File Descriptor library. It has only been tested
1520 with the above formats.}.
1521 @end ignore
1522
1523 @quotation
1524 @emph{Warning:} @code{nlmconv} is not always built as part of the binary
1525 utilities, since it is only useful for NLM targets.
1526 @end quotation
1527
1528 @smallexample
1529 nlmconv [ -I @var{bfdname} | --input-target=@var{bfdname} ]
1530 [ -O @var{bfdname} | --output-target=@var{bfdname} ]
1531 [ -T @var{headerfile} | --header-file=@var{headerfile} ]
1532 [ -d | --debug] [ -l @var{linker} | --linker=@var{linker} ]
1533 [ -h | --help ] [ -V | --version ]
1534 @var{infile} @var{outfile}
1535 @end smallexample
1536
1537 @code{nlmconv} converts the relocatable @samp{i386} object file
1538 @var{infile} into the NetWare Loadable Module @var{outfile}, optionally
1539 reading @var{headerfile} for NLM header information. For instructions
1540 on writing the NLM command file language used in header files, see the
1541 @samp{linkers} section, @samp{NLMLINK} in particular, of the @cite{NLM
1542 Development and Tools Overview}, which is part of the NLM Software
1543 Developer's Kit (``NLM SDK''), available from Novell, Inc.
1544 @code{nlmconv} uses the @sc{gnu} Binary File Descriptor library to read
1545 @var{infile}; see @ref{BFD,,BFD,ld.info,Using LD}, for
1546 more information.
1547
1548 @code{nlmconv} can perform a link step. In other words, you can list
1549 more than one object file for input if you list them in the definitions
1550 file (rather than simply specifying one input file on the command line).
1551 In this case, @code{nlmconv} calls the linker for you.
1552
1553 @table @code
1554 @item -I @var{bfdname}
1555 @itemx --input-target=@var{bfdname}
1556 Object format of the input file. @code{nlmconv} can usually determine
1557 the format of a given file (so no default is necessary).
1558 @xref{Target Selection}, for more information.
1559
1560 @item -O @var{bfdname}
1561 @itemx --output-target=@var{bfdname}
1562 Object format of the output file. @code{nlmconv} infers the output
1563 format based on the input format, e.g. for a @samp{i386} input file the
1564 output format is @samp{nlm32-i386}.
1565 @xref{Target Selection}, for more information.
1566
1567 @item -T @var{headerfile}
1568 @itemx --header-file=@var{headerfile}
1569 Reads @var{headerfile} for NLM header information. For instructions on
1570 writing the NLM command file language used in header files, see@ see the
1571 @samp{linkers} section, of the @cite{NLM Development and Tools
1572 Overview}, which is part of the NLM Software Developer's Kit, available
1573 from Novell, Inc.
1574
1575 @item -d
1576 @itemx --debug
1577 Displays (on standard error) the linker command line used by @code{nlmconv}.
1578
1579 @item -l @var{linker}
1580 @itemx --linker=@var{linker}
1581 Use @var{linker} for any linking. @var{linker} can be an abosolute or a
1582 relative pathname.
1583
1584 @item -h
1585 @itemx --help
1586 Prints a usage summary.
1587
1588 @item -V
1589 @itemx --version
1590 Prints the version number for @code{nlmconv}.
1591 @end table
1592
1593 @node Selecting The Target System
1594 @chapter Selecting the target system
1595
1596 You can specify three aspects of the target system to the @sc{gnu}
1597 binary file utilities, each in several ways:
1598
1599 @itemize @bullet
1600 @item
1601 the target
1602
1603 @item
1604 the architecture
1605
1606 @item
1607 the linker emulation (which applies to the linker only)
1608 @end itemize
1609
1610 In the following summaries, the lists of ways to specify values are in
1611 order of decreasing precedence. The ways listed first override those
1612 listed later.
1613
1614 The commands to list valid values only list the values for which the
1615 programs you are running were configured. If they were configured with
1616 @samp{--with-targets=all}, the commands list most of the available
1617 values, but a few are left out; not all targets can be configured in at
1618 once because some of them can only be configured @dfn{native} (on hosts
1619 with the same type as the target system).
1620
1621 @menu
1622 * Target Selection::
1623 * Architecture Selection::
1624 * Linker Emulation Selection::
1625 @end menu
1626
1627 @node Target Selection
1628 @section Target Selection
1629
1630 A @dfn{target} is an object file format. A given target may be
1631 supported for multiple architectures (@pxref{Architecture Selection}).
1632 A target selection may also have variations for different operating
1633 systems or architectures.
1634
1635 The command to list valid target values is @samp{objdump -i}
1636 (the first column of output contains the relevant information).
1637
1638 Some sample values are: @samp{a.out-hp300bsd}, @samp{ecoff-littlemips},
1639 @samp{a.out-sunos-big}.
1640
1641 @subheading @code{objdump} Target
1642
1643 Ways to specify:
1644
1645 @enumerate
1646 @item
1647 command line option: @samp{-b} or @samp{--target}
1648
1649 @item
1650 environment variable @code{GNUTARGET}
1651
1652 @item
1653 deduced from the input file
1654 @end enumerate
1655
1656 @subheading @code{objcopy} and @code{strip} Input Target
1657
1658 Ways to specify:
1659
1660 @enumerate
1661 @item
1662 command line options: @samp{-I} or @samp{--input-target}, or @samp{-F} or @samp{--target}
1663
1664 @item
1665 environment variable @code{GNUTARGET}
1666
1667 @item
1668 deduced from the input file
1669 @end enumerate
1670
1671 @subheading @code{objcopy} and @code{strip} Output Target
1672
1673 Ways to specify:
1674
1675 @enumerate
1676 @item
1677 command line options: @samp{-O} or @samp{--output-target}, or @samp{-F} or @samp{--target}
1678
1679 @item
1680 the input target (see ``@code{objcopy} and @code{strip} Input Target'' above)
1681
1682 @item
1683 environment variable @code{GNUTARGET}
1684
1685 @item
1686 deduced from the input file
1687 @end enumerate
1688
1689 @subheading @code{nm}, @code{size}, and @code{strings} Target
1690
1691 Ways to specify:
1692
1693 @enumerate
1694 @item
1695 command line option: @samp{--target}
1696
1697 @item
1698 environment variable @code{GNUTARGET}
1699
1700 @item
1701 deduced from the input file
1702 @end enumerate
1703
1704 @subheading Linker Input Target
1705
1706 Ways to specify:
1707
1708 @enumerate
1709 @item
1710 command line option: @samp{-b} or @samp{--format}
1711 (@pxref{Options,,Options,ld.info,Using LD})
1712
1713 @item
1714 script command @code{TARGET}
1715 (@pxref{Option Commands,,Option Commands,ld.info,Using LD})
1716
1717 @item
1718 environment variable @code{GNUTARGET}
1719 (@pxref{Environment,,Environment,ld.info,Using LD})
1720
1721 @item
1722 the default target of the selected linker emulation
1723 (@pxref{Linker Emulation Selection})
1724 @end enumerate
1725
1726 @subheading Linker Output Target
1727
1728 Ways to specify:
1729
1730 @enumerate
1731 @item
1732 command line option: @samp{-oformat}
1733 (@pxref{Options,,Options,ld.info,Using LD})
1734
1735 @item
1736 script command @code{OUTPUT_FORMAT}
1737 (@pxref{Option Commands,,Option Commands,ld.info,Using LD})
1738
1739 @item
1740 the linker input target (see ``Linker Input Target'' above)
1741 @end enumerate
1742
1743 @node Architecture Selection
1744 @section Architecture selection
1745
1746 An @dfn{architecture} is a type of @sc{cpu} on which an object file is
1747 to run. Its name may contain a colon, separating the name of the
1748 processor family from the name of the particular @sc{cpu}.
1749
1750 The command to list valid architecture values is @samp{objdump -i} (the
1751 second column contains the relevant information).
1752
1753 Sample values: @samp{m68k:68020}, @samp{mips:3000}, @samp{sparc}.
1754
1755 @subheading @code{objdump} Architecture
1756
1757 Ways to specify:
1758
1759 @enumerate
1760 @item
1761 command line option: @samp{-m} or @samp{--architecture}
1762
1763 @item
1764 deduced from the input file
1765 @end enumerate
1766
1767 @subheading @code{objcopy}, @code{nm}, @code{size}, @code{strings} Architecture
1768
1769 Ways to specify:
1770
1771 @enumerate
1772 @item
1773 deduced from the input file
1774 @end enumerate
1775
1776 @subheading Linker Input Architecture
1777
1778 Ways to specify:
1779
1780 @enumerate
1781 @item
1782 deduced from the input file
1783 @end enumerate
1784
1785 @subheading Linker Output Architecture
1786
1787 Ways to specify:
1788
1789 @enumerate
1790 @item
1791 script command @code{OUTPUT_ARCH}
1792 (@pxref{Option Commands,,Option Commands,ld.info,Using LD})
1793
1794 @item
1795 the default architecture from the linker output target
1796 (@pxref{Target Selection})
1797 @end enumerate
1798
1799 @node Linker Emulation Selection
1800 @section Linker emulation selection
1801
1802 A linker @dfn{emulation} is a ``personality'' of the linker, which gives
1803 the linker default values for the other aspects of the target system.
1804 In particular, it consists of
1805
1806 @itemize @bullet
1807 @item
1808 the linker script
1809
1810 @item
1811 the target
1812
1813 @item
1814 several ``hook'' functions that are run at certain stages of the linking
1815 process to do special things that some targets require
1816 @end itemize
1817
1818 The command to list valid linker emulation values is @samp{ld -V}.
1819
1820 Sample values: @samp{hp300bsd}, @samp{mipslit}, @samp{sun4}.
1821
1822 Ways to specify:
1823
1824 @enumerate
1825 @item
1826 command line option: @samp{-m}
1827 (@pxref{Options,,Options,ld.info,Using LD})
1828
1829 @item
1830 environment variable @code{LDEMULATION}
1831
1832 @item
1833 compiled-in @code{DEFAULT_EMULATION} from @file{Makefile},
1834 which comes from @code{EMUL} in @file{config/@var{target}.mt}
1835 @end enumerate
1836
1837 @node Index
1838 @unnumbered Index
1839
1840 @printindex cp
1841
1842 @contents
1843 @bye