* m10300-dis.c (print_insn_mn10300): 0xf7 opcode prefix specifies
[deliverable/binutils-gdb.git] / binutils / objcopy.1
CommitLineData
70dce677 1.\" Copyright (c) 1991, 93, 94, 95, 96, 1997 Free Software Foundation
08ad9921 2.\" See section COPYING for conditions for redistribution
6c7ed084 3.TH objcopy 1 "October 1994" "cygnus support" "GNU Development Tools"
08ad9921
JO
4.de BP
5.sp
6.ti \-.2i
7\(**
8..
9
10.SH NAME
f7b839f7 11objcopy \- copy and translate object files
08ad9921
JO
12
13.SH SYNOPSIS
14.hy 0
15.na
b26ac613 16.TP
08ad9921 17.B objcopy
dff604a7
ILT
18.RB "[\|" \-F\ \fIbfdname\fR\ |\ \fB\-\-target=\fIbfdname\fR "\|]"
19.RB "[\|" \-I\ \fIbfdname\fR\ |\ \fB\-\-input\-target=\fIbfdname\fR "\|]"
20.RB "[\|" \-O\ \fIbfdname\fR\ |\ \fB\-\-output\-target=\fIbfdname\fR "\|]"
21.RB "[\|" \-R\ \fIsectionname\fR\ |\ \fB\-\-remove\-section=\fIsectionname\fR "\|]"
22.RB "[\|" \-S\fR\ |\ \fB\-\-strip\-all\fR "\|]"
23.RB "[\|" \-g\fR\ |\ \fB\-\-strip\-debug\fR "\|]"
9135e5f8 24.RB "[\|" \-\-strip\-unneeded\fR "\|]"
dff604a7
ILT
25.RB "[\|" \-K\ \fIsymbolname\fR\ |\ \fB\-\-keep\-symbol=\fIsymbolname\fR "\|]"
26.RB "[\|" \-N\ \fIsymbolname\fR\ |\ \fB\-\-strip\-symbol=\fIsymbolname\fR "\|]"
246b7c9b 27.RB "[\|" \-L\ \fIsymbolname\fR\ |\ \fB\-\-localize\-symbol=\fIsymbolname\fR "\|]"
8d2e72a1 28.RB "[\|" \-W\ \fIsymbolname\fR\ |\ \fB\-\-weaken\-symbol=\fIsymbolname\fR "\|]"
dff604a7
ILT
29.RB "[\|" \-x\fR\ |\ \fB\-\-discard\-all\fR "\|]"
30.RB "[\|" \-X\fR\ |\ \fB\-\-discard\-locals\fR "\|]"
33e0a06d
ILT
31.RB "[\|" \-b\ \fIbyte\fR\ |\ \fB\-\-byte=\fIbyte\fR "\|]"
32.RB "[\|" \-i\ \fIinterleave\fR\ |\ \fB\-\-interleave=\fIinterleave\fR "\|]"
2483354d 33.RB "[\|" \-p\fR\ |\ \fB\-\-preserve\-dates\fR "\|]"
f5818d79 34.RB "[\|" \-\-debugging "\|]"
33e0a06d
ILT
35.RB "[\|" \-\-gap\-fill=\fIval\fR "\|]"
36.RB "[\|" \-\-pad\-to=\fIaddress\fR "\|]"
37.RB "[\|" \-\-set\-start=\fIval\fR "\|]"
537b2e5e
NC
38.RB "[\|" \-\-change\-start=\fIincr\fR "\|]"
39.RB "[\|" \-\-change\-addresses=\fIincr\fR "\|]"
40.RB "[\|" \-\-change\-section\-address=\fIsection{=,+,-}val\fR "\|]"
41.RB "[\|" \-\-change\-section\-lma=\fIsection{=,+,-}val\fR "\|]"
42.RB "[\|" \-\-change\-section\-vma=\fIsection{=,+,-}val\fR "\|]"
43.RB "[\|" \-\-change\-warnings\fR "\|]"
44.RB "[\|" \-\-no\-change\-warnings\fR "\|]"
5ab41086 45.RB "[\|" \-\-set\-section\-flags=\fIsection=flags\fR "\|]"
d0130cc8 46.RB "[\|" \-\-add\-section=\fIsectionname=filename\fR "\|]"
decf2865 47.RB "[\|" \-\-change\-leading\-char\fR "\|]"
5da470b2 48.RB "[\|" \-\-remove\-leading\-char\fR "\|]"
9a442fe8 49.RB "[\|" \-\-weaken\fR "\|]"
3883531f
JO
50.RB "[\|" \-v\ |\ \-\-verbose\fR "\|]"
51.RB "[\|" \-V\ |\ \-\-version\fR "\|]"
52.RB "[\|" \-\-help\fR "\|]"
b26ac613 53.B infile
3883531f 54.RB "[\|" outfile\fR "\|]"
08ad9921
JO
55.SH DESCRIPTION
56The GNU
57.B objcopy
58utility copies the contents of an object file to another.
59.B objcopy
60uses the GNU BFD Library to read and write the object files. It can
61write the destination object file in a format different from that of
62the source object file. The exact behavior of
63.B objcopy
64is controlled by command-line options.
b26ac613 65.PP
08ad9921
JO
66.B objcopy
67creates temporary files to do its translations and deletes them
68afterward.
69.B objcopy
70uses BFD to do all its translation work; it knows about all the
71formats BFD knows about, and thus is able to recognize most formats
72without being told explicitly.
b26ac613 73.PP
67f67ed9
ILT
74.B objcopy
75can be used to generate S-records by using an output target of
76.B srec
77(e.g., use
78.B -O srec).
79.PP
80.B objcopy
81can be used to generate a raw binary file by using an output target of
82.B binary
83(e.g., use
84.B -O binary).
85When
86.B objcopy
87generates a raw binary file, it will essentially produce a memory dump
88of the contents of the input object file. All symbols and relocation
a6afc090
ILT
89information will be discarded. The memory dump will start at the
90virtual address of the lowest section copied into the output file.
67f67ed9
ILT
91.PP
92When generating an S-record or a raw binary file, it may be helpful to
93use
94.B -S
95to remove sections containing debugging information. In some cases
96.B -R
97will be useful to remove sections which contain information which is
98not needed by the binary file.
99.PP
b26ac613
DM
100.I infile
101and
102.I outfile
103are the source and output files respectively. If you do not specify
08ad9921
JO
104.IR outfile ,
105.B objcopy
106creates a temporary file and destructively renames the result with the
107name of the input file.
b26ac613
DM
108
109.SH OPTIONS
08ad9921 110.TP
eae04238 111.B \-I \fIbfdname\fR, \fB\-\-input\-target=\fIbfdname
08ad9921 112Consider the source file's object format to be
eae04238 113.IR bfdname ,
08ad9921
JO
114rather than attempting to deduce it.
115.TP
eae04238 116.B \-O \fIbfdname\fR, \fB\-\-output\-target=\fIbfdname
08ad9921 117Write the output file using the object format
eae04238 118.IR bfdname .
08ad9921 119.TP
eae04238 120.B \-F \fIbfdname\fR, \fB\-\-target=\fIbfdname
08ad9921 121Use
eae04238 122.I bfdname
08ad9921
JO
123as the object format for both the input and the output file; i.e.
124simply transfer data from source to destination with no translation.
125.TP
0aca460e
ILT
126.B \-R \fIsectionname\fR, \fB\-\-remove-section=\fIsectionname
127Remove the named section from the file. This option may be given more
128than once. Note that using this option inappropriately may make the
129output file unusable.
130.TP
3883531f 131.B \-S\fR, \fB\-\-strip\-all
08ad9921
JO
132Do not copy relocation and symbol information from the source file.
133.TP
3883531f 134.B \-g\fR, \fB\-\-strip\-debug
08ad9921
JO
135Do not copy debugging symbols from the source file.
136.TP
9135e5f8
ILT
137.B \-\-strip\-unneeded
138Strip all symbols that are not needed for relocation processing.
139.TP
dff604a7
ILT
140.B \-K \fIsymbolname\fR, \fB\-\-keep\-symbol=\fIsymbolname
141Copy only symbol \fIsymbolname\fP from the source file. This option
142may be given more than once.
143.TP
29c0d15c
ILT
144.B \-N \fIsymbolname\fR, \fB\-\-strip\-symbol=\fIsymbolname
145Do not copy symbol \fIsymbolname\fP from the source file. This option
8d2e72a1
RH
146may be given more than once.
147.TP
246b7c9b 148.B \-L \fIsymbolname\fR, \fB\-\-localize\-symbol=\fIsymbolname
8d2e72a1
RH
149Make symbol \fIsymbolname\fP local to the file, so that it is not
150visible externally. This option may be given more than once.
151.TP
152.B \-W \fIsymbolname\fR, \fB\-\-weaken\-symbol=\fIsymbolname
153Make symbol \fIsymbolname\fP weak. This option may be given more than once.
29c0d15c 154.TP
3883531f 155.B \-x\fR, \fB \-\-discard\-all
08ad9921
JO
156Do not copy non-global symbols from the source file.
157.TP
3883531f 158.B \-X\fR, \fB\-\-discard\-locals
08ad9921
JO
159Do not copy compiler-generated local symbols. (These usually start
160with "L" or ".").
161.TP
f7b839f7
DM
162.B \-b \fIbyte\fR, \fB\-\-byte=\fIbyte
163Keep only every \fIbyte\fPth byte of the input file (header data is
164not affected). \fIbyte\fP can be in the range from 0 to the
165interleave-1. This option is useful for creating files to program
166ROMs. It is typically used with an srec output target.
167.TP
168.B \-i \fIinterleave\fR, \fB\-\-interleave=\fIinterleave
169Only copy one out of every \fIinterleave\fP bytes. Which one to copy is
170selected by the \fB\-b\fP or \fB\-\-byte\fP option. The default is 4.
171The interleave is ignored if neither \fB\-b\fP nor \fB\-\-byte\fP is given.
172.TP
2483354d
ILT
173.B \-p\fR, \fB\-\-preserve\-dates
174Set the access and modification dates of the output file to be the same
175as those of the input file.
176.TP
f5818d79
ILT
177.B \-\-debugging
178Convert debugging information, if possible. This is not the default
179because only certain debugging formats are supported, and the
180conversion process can be time consuming.
181.TP
596d99ba 182.B \-\-gap\-fill=\fIval
a3a4bb5d
RH
183Fill gaps between sections with \fIval\fP. This operation applies to
184the \fIload address\fP (LMA) of the sections. It is done by increasing
596d99ba
ILT
185the size of the section with the lower address, and filling in the extra
186space created with \fIval\fP.
187.TP
33e0a06d 188.B \-\-pad\-to=\fIaddress
a3a4bb5d 189Pad the output file up to the load address \fIaddress\fP. This is
33e0a06d
ILT
190done by increasing the size of the last section. The extra space is
191filled in with the value specified by \fB\-\-gap\-fill\fP (default
192zero).
193.TP
6c7ed084
ILT
194.B \fB\-\-set\-start=\fIval
195Set the start address of the new file to \fIval\fP. Not all object
a6afc090 196file formats support setting the start address.
6c7ed084 197.TP
537b2e5e
NC
198.B \fB\-\-change\-start=\fIincr\fR, \fB\-\-adjust\-start=\fIincr
199Changes the start address by adding \fIincr\fP. Not all object file
6c7ed084
ILT
200formats support setting the start address.
201.TP
537b2e5e
NC
202.B \fB\-\-change\-addresses=\fIincr\fR, \fB\-\-adjust\-vma=\fIincr
203Changes the address of all sections, as well as the start address, by
6c7ed084
ILT
204adding \fIincr\fP. Some object file formats do not permit section
205addresses to be changed arbitrarily. Note that this does not relocate
206the sections; if the program expects sections to be loaded at a
207certain address, and this option is used to change the sections such
208that they are loaded at a different address, the program may fail.
209.TP
537b2e5e
NC
210.B \fB\-\-change\-section\-address=\fIsection{=,+,-}val\fR, \fB\-\-adjust\-section\-vma=\fIsection{=,+,-}val
211Set or changes the VMA and LMA addresses of the named \fIsection\fP.
212If \fI=\fP is used, the section address is set to \fIval\fP.
213Otherwise, \fIval\fP is added to or subtracted from the section
214address. See the comments under \fB\-\-change\-addresses\fP, above. If
215\fIsection\fP does not exist in the input file, a warning will be
216issued, unless \fB\-\-no\-change\-warnings\fP is used.
217.TP
218.B \fB\-\-change\-section\-lma=\fIsection{=,+,-}val
219Set or change the LMA address of the named \fIsection\fP. If \fI=\fP is
220used, the section address is set to \fIval\fP. Otherwise, \fIval\fP
221is added to or subtracted from the section address. See the comments
222under \fB\-\-change\-addresses\fP, above. If \fIsection\fP does not exist
223in the input file, a warning will be issued, unless
224\fB\-\-no\-change\-warnings\fP is used.
225.TP
226.B \fB\-\-change\-section\-vma=\fIsection{=,+,-}val
227Set or change the VMA address of the named \fIsection\fP. If \fI=\fP is
6c7ed084
ILT
228used, the section address is set to \fIval\fP. Otherwise, \fIval\fP
229is added to or subtracted from the section address. See the comments
537b2e5e 230under \fB\-\-change\-addresses\fP, above. If \fIsection\fP does not exist
6c7ed084 231in the input file, a warning will be issued, unless
537b2e5e 232\fB\-\-no\-change\-warnings\fP is used.
6c7ed084 233.TP
537b2e5e
NC
234.B \fB\-\-change\-warnings\fR, \fB\-\-adjust\-warnings
235If \fB\-\-change\-section\-XXX\fP is used, and the named section does
6c7ed084
ILT
236not exist, issue a warning. This is the default.
237.TP
537b2e5e
NC
238.B \fB\-\-no\-change\-warnings\fR, \fB\-\-no\-adjust\-warnings
239Do not issue a warning if \fB\-\-change\-section\-XXX\fP is used, even
6c7ed084
ILT
240if the named section does not exist.
241.TP
5ab41086
ILT
242.B \fB\-\-set\-section\-flags=\fIsection=flags
243Set the flags for the named section. The \fIflags\fP argument is a
244comma separated string of flag names. The recognized names are
245\fIalloc\fP, \fIload\fP, \fIreadonly\fP, \fIcode\fP, \fIdata\fP, and
246\fIrom\fP. Not all flags are meaningful for all object file
247formats.
248.TP
d0130cc8
ILT
249.B \fB\-\-add\-section=\fIsectionname=filename
250Add a new section named \fIsectionname\fR while copying the file. The
251contents of the new section are taken from the file \fIfilename\fR.
252The size of the section will be the size of the file. This option
253only works on file formats which can support sections with arbitrary
254names.
255.TP
decf2865
ILT
256.B \-\-change\-leading\-char
257Some object file formats use special characters at the start of
258symbols. The most common such character is underscore, which compilers
259often add before every symbol. This option tells
260.B objcopy
261to change the leading character of every symbol when it converts
262between object file formats. If the object file formats use the same
263leading character, this option has no effect. Otherwise, it will add
264a character, or remove a character, or change a character, as
265appropriate.
266.TP
5da470b2
ILT
267.B \-\-remove\-leading\-char
268If the first character of a global symbol is a special symbol leading
269character used by the object file format, remove the character. The
270most common symbol leading character is underscore. This option will
decf2865
ILT
271remove a leading underscore from all global symbols. This can be
272useful if you want to link together objects of different file formats
273with different conventions for symbol names. This is different from
274@code{--change-leading-char} because it always changes the symbol name
275when appropriate, regardless of the object file format of the output
5da470b2 276.TP
70dce677 277.B \-\-weaken
9a442fe8
ILT
278Change all global symbols in the file to be weak.
279.TP
3883531f 280.B \-v\fR, \fB\-\-verbose
08ad9921 281Verbose output: list all object files modified. In the case of
b26ac613
DM
282archives, "\fBobjcopy \-V\fR" lists all members of the archive.
283.TP
3883531f 284.B \-V\fR, \fB\-\-version
08ad9921 285Show the version number of
b26ac613
DM
286.B objcopy
287and exit.
288.TP
289.B \-\-help
290Show a summary of the options to
291.B objcopy
292and exit.
08ad9921
JO
293.SH "SEE ALSO"
294.RB "`\|" binutils "\|'"
295entry in
296.B
297info\c
298\&;
299.I
300The GNU Binary Utilities\c
301\&, Roland H. Pesch (June 1993).
302
303.SH COPYING
70dce677 304Copyright (c) 1993, 94, 95, 96, 1997 Free Software Foundation, Inc.
08ad9921
JO
305.PP
306Permission is granted to make and distribute verbatim copies of
307this manual provided the copyright notice and this permission notice
308are preserved on all copies.
309.PP
310Permission is granted to copy and distribute modified versions of this
311manual under the conditions for verbatim copying, provided that the
312entire resulting derived work is distributed under the terms of a
313permission notice identical to this one.
314.PP
315Permission is granted to copy and distribute translations of this
316manual into another language, under the above conditions for modified
317versions, except that this permission notice may be included in
318translations approved by the Free Software Foundation instead of in
319the original English.
This page took 0.251953 seconds and 4 git commands to generate.