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