-->
Page 342
_b byte, --byte=byte | Keep only every byte byte of the input file (header data is not affected). byte can be in the range from 0 to the interleave-1. This option is useful for creating FILES to program ROMs. It is typically used with an srec output target. |
_i interleave, --interleave=interleave | Only copy one out of every interleave bytes. The one to copy is selected by the _b or --byte option. The default is 4. The interleave is ignored if neither _b nor --byte is given. |
_v, --verbose | Verbose output: list all object FILES modified. In the case of archives, objcopy _V lists all members of the archive. |
_V, --version | Show the version number of objcopy and exit. |
--help | Show a summary of the OPTIONS to objcopy and exit. |
SEE ALSO
binutils entry in info; The GNU Binary Utilities, Roland H. Pesch (June 1993).
COPYING
Copyright " 1993 Free Software Foundation, Inc. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be included in translations approved by the Free Software Foundation instead of in the original English.
Cygnus support, June 1993
objdumpDisplay information from object FILES.
SYNOPSIS
objdump [ _a|--archive_headers ][_b\ bfdname | --target= bfdname ] [ _d|--disassemble][_D|--disassemble-all ][_f|--file_headers ] [ _h|--section_headers | --headers ][_i|--info ][_j\ section | --section= section ][_l|--line_numbers ][_m\ machine | -- -architecture= machine ][_r|--reloc ][_R|--dynamic_reloc ] [ _s|--full_contents ][--stabs ][_t|--syms ][_T|--dynamic_ syms][_x|--all_headers ][--version ][--help ] objfile ...
DESCRIPTION
objdump displays information about one or more object FILES. The OPTIONS control what particular information to display. This information is mostly useful to programmers who are working on the compilation tools, as opposed to programmers who just want their program to compile and work.
objfile... are the object FILES to be examined. When you specify archives, objdump shows information on each of the member object FILES.
OPTIONS
Where long and short forms of an option are shown together, they are equivalent. At least one option besides _l (--line_numbers) must be given.
_a, --archive_headers | If any FILES from objfile are archives, display the archive header information (in a format similar to ls _l). Besides the information you could list with ar tv, objdump _a shows the object file format of each archive member. |