Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
objcopy(1)
Edit
PageHistory
Diff
Info
LikePages
OBJCOPY !!!OBJCOPY NAME SYNOPSIS DESCRIPTION OPTIONS SEE ALSO COPYRIGHT ---- !!NAME objcopy - copy and translate object files !!SYNOPSIS objcopy [[__-F__ ''bfdname''__--target=__''bfdname''] [[__-I__ ''bfdname''__--input-target=__''bfdname''] [[__-O__ ''bfdname''__--output-target=__''bfdname''] [[__-B__ ''bfdarch''__--binary-architecture=__''bfdarch''] [[__-S--strip-all__] [[__-g--strip-debug__] [[__-K__ ''symbolname''__--keep-symbol=__''symbolname''] [[__-N__ ''symbolname''__--strip-symbol=__''symbolname''] [[__-G__ ''symbolname''__--keep-global-symbol=__''symbolname''] [[__-L__ ''symbolname''__--localize-symbol=__''symbolname''] [[__-W__ ''symbolname''__--weaken-symbol=__''symbolname''] [[__-x--discard-all__] [[__-X--discard-locals__] [[__-b__ ''byte''__--byte=__''byte''] [[__-i__ ''interleave''__--interleave=__''interleave''] [[__-j__ ''sectionname''__--only-section=__''sectionname''] [[__-R__ ''sectionname''__--remove-section=__''sectionname''] [[__-p--preserve-dates__] [[__--debugging__] [[__--gap-fill=__''val''] [[__--pad-to=__''address''] [[__--set-start=__''val''] [[__--adjust-start=__''incr''] [[__--change-addresses=__''incr''] [[__--change-section-address__ ''section''{=,+,-}''val''] [[__--change-section-lma__ ''section''{=,+,-}''val''] [[__--change-section-vma__ ''section''{=,+,-}''val''] [[__--change-warnings__] [[__--no-change-warnings__] [[__--set-section-flags__ ''section''=''flags''] [[__--add-section__ ''sectionname''=''filename''] [[__--rename-section__ ''oldname''=''newname''[[,''flags'']] [[__--change-leading-char__ ] [[__--remove-leading-char__] [[__--srec-len=__''ival'' ] [[__--srec-forceS3__] [[__--redefine-sym__ ''old''=''new'' ] [[__--weaken__] [[__--keep-symbols=__''filename''] [[__--strip-symbols=__''filename''] [[__--keep-global-symbols=__''filename''] [[__--localize-symbols=__''filename''] [[__--weaken-symbols=__''filename''] [[__--alt-machine-code=__''index''] [[__-v--verbose__] [[__-V--version__] [[__--help__] ''infile'' [[''outfile''] !!DESCRIPTION The GNU __objcopy__ utility copies the contents of an object file to another. __objcopy__ uses the GNU BFD Library to read and write the object files. It can write the destination object file in a format different from that of the source object file. The exact behavior of __objcopy__ is controlled by command-line options. Note that __objcopy__ should be able to copy a fully linked file between any two formats. However, copying a relocatable object file between any two formats may not work as expected. __objcopy__ creates temporary files to do its translations and deletes them afterward. __objcopy__ uses BFD to do all its translation work; it has access to all the formats described in BFD and thus is able to recognize most formats without being told explicitly. __objcopy__ can be used to generate S-records by using an output target of __srec__ (e.g., use __-O srec__). __objcopy__ can be used to generate a raw binary file by using an output target of __binary__ (e.g., use __-O binary__). When __objcopy__ generates a raw binary file, it will essentially produce a memory dump of the contents of the input object file. All symbols and relocation information will be discarded. The memory dump will start at the load address of the lowest section copied into the output file. When generating an S-record or a raw binary file, it may be helpful to use __-S__ to remove sections containing debugging information. In some cases __-R__ will be useful to remove sections which contain information that is not needed by the binary file. Note - __objcopy__ is not able to change the endianness of its input files. If the input format has an endianness, (some formats do not), __objcopy__ can only copy the inputs into file formats that have the same endianness or which have no endianness (eg __srec__). !!OPTIONS ''infile'' ''outfile'' The input and output files, respectively. If you do not specify ''outfile'', __objcopy__ creates a temporary file and destructively renames the result with the name of ''infile''. __-I__ ''bfdname'' __--input-target=__''bfdname'' Consider the source file's object format to be ''bfdname'', rather than attempting to deduce it. __-O__ ''bfdname'' __--output-target=__''bfdname'' Write the output file using the object format ''bfdname''. __-F__ ''bfdname'' __--target=__''bfdname'' Use ''bfdname'' as the object format for both the input and the output file; i.e., simply transfer data from source to destination with no translation. __-B__ ''bfdarch'' __--binary-architecture=__''bfdarch'' Useful when transforming a raw binary input file into an object file. In this case the output architecture can be set to ''bfdarch''. This option will be ignored if the input file has a known ''bfdarch''. You can access this binary data inside a program by referencing the special symbols that are created by the conversion process. These symbols are called _binary_''objfile''_start, _binary_''objfile''_end and _binary_''objfile''_size. e.g. you can transform a picture file into an object file and then access it in your code using these symbols. __-j__ ''sectionname'' __--only-section=__''sectionname'' Copy only the named section from the input file to the output file. This option may be given more than once. Note that using this option inappropriately may make the output file unusable. __-R__ ''sectionname'' __--remove-section=__''sectionname'' Remove any section named ''sectionname'' from the output file. This option may be given more than once. Note that using this option inappropriately may make the output file unusable. __-S__ __--strip-all__ Do not copy relocation and symbol information from the source file. __-g__ __--strip-debug__ Do not copy debugging symbols from the source file. __--strip-unneeded__ Strip all symbols that are not needed for relocation processing. __-K__ ''symbolname'' __--keep-symbol=__''symbolname'' Copy only symbol ''symbolname'' from the source file. This option may be given more than once. __-N__ ''symbolname'' __--strip-symbol=__''symbolname'' Do not copy symbol ''symbolname'' from the source file. This option may be given more than once. __-G__ ''symbolname'' __--keep-global-symbol=__''symbolname'' Keep only symbol ''symbolname'' global. Make all other symbols local to the file, so that they are not visible externally. This option may be given more than once. __-L__ ''symbolname'' __--localize-symbol=__''symbolname'' Make symbol ''symbolname'' local to the file, so that it is not visible externally. This option may be given more than once. __-W__ ''symbolname'' __--weaken-symbol=__''symbolname'' Make symbol ''symbolname'' weak. This option may be given more than once. __-x__ __--discard-all__ Do not copy non-global symbols from the source file. __-X__ __--discard-locals__ Do not copy compiler-generated local symbols. (These usually start with __L__ or __.__.) __-b__ ''byte'' __--byte=__''byte'' Keep only every ''byte''th byte of the input file (header data is not affected). ''byte'' can be in the range from 0 to ''interleave''-1, where ''interleave'' is given by the __-i__ or __--interleave__ option, or the default of 4. This option is useful for creating files to program ROM . It is typically used with an srec output target. __-i__ ''interleave'' __--interleave=__''interleave'' Only copy one out of every ''interleave'' bytes. Select which byte to copy with the __-b__ or __--byte__ option. The default is 4. __objcopy__ ignores this option if you do not specify either __-b__ or __--byte__. __-p__ __--preserve-dates__ Set the access and modification dates of the output file to be the same as those of the input file. __--debugging__ Convert debugging information, if possible. This is not the default because only certain debugging formats are supported, and the conversion process can be time consuming. __--gap-fill__ ''val'' Fill gaps between sections with ''val''. This operation applies to the ''load address'' ( LMA ) of the sections. It is done by increasing the size of the section with the lower address, and filling in the extra space created with ''val''. __--pad-to__ ''address'' Pad the output file up to the load address ''address''. This is done by increasing the size of the last section. The extra space is filled in with the value specified by __--gap-fill__ (default zero). __--set-start__ ''val'' Set the start address of the new file to ''val''. Not all object file formats support setting the start address. __--change-start__ ''incr'' __--adjust-start__ ''incr'' Change the start address by adding ''incr''. Not all object file formats support setting the start address. __--change-addresses__ ''incr'' __--adjust-vma__ ''incr'' Change the VMA and LMA addresses of all sections, as well as the start address, by adding ''incr''. Some object file formats do not permit section addresses to be changed arbitrarily. Note that this does not relocate the sections; if the program expects sections to be loaded at a certain address, and this option is used to change the sections such that they are loaded at a different address, the program may fail. __--change-section-address__ ''section''__{=,+,-}__''val'' __--adjust-section-vma__ ''section''__{=,+,-}__''val'' Set or change both the VMA address and the LMA address of the named ''section''. If __=__ is used, the section address is set to ''val''. Otherwise, ''val'' is added to or subtracted from the section address. See the comments under __--change-addresses__, above. If ''section'' does not exist in the input file, a warning will be issued, unless __--no-change-warnings__ is used. __--change-section-lma__ ''section''__{=,+,-}__''val'' Set or change the LMA address of the named ''section''. The LMA address is the address where the section will be loaded into memory at program load time. Normally this is the same as the VMA address, which is the address of the section at program run time, but on some systems, especially those where a program is held in ROM , the two can be different. If __=__ is used, the section address is set to ''val''. Otherwise, ''val'' is added to or subtracted from the section address. See the comments under __--change-addresses__, above. If ''section'' does not exist in the input file, a warning will be issued, unless __--no-change-warnings__ is used. __--change-section-vma__ ''section''__{=,+,-}__''val'' Set or change the VMA address of the named ''section''. The VMA address is the address where the section will be located once the program has started executing. Normally this is the same as the LMA address, which is the address where the section will be loaded into memory, but on some systems, especially those where a program is held in ROM , the two can be different. If __=__ is used, the section address is set to ''val''. Otherwise, ''val'' is added to or subtracted from the section address. See the comments under __--change-addresses__, above. If ''section'' does not exist in the input file, a warning will be issued, unless __--no-change-warnings__ is used. __--change-warnings__ __--adjust-warnings__ If __--change-section-address__ or __--change-section-lma__ or __--change-section-vma__ is used, and the named section does not exist, issue a warning. This is the default. __--no-change-warnings__ __--no-adjust-warnings__ Do not issue a warning if __--change-section-address__ or __--adjust-section-lma__ or __--adjust-section-vma__ is used, even if the named section does not exist. __--set-section-flags__ ''section''__=__''flags'' Set the flags for the named section. The ''flags'' argument is a comma separated string of flag names. The recognized names are __alloc__, __contents__, __load__, __noload__, __readonly__, __code__, __data__, __rom__, __share__, and __debug__. You can set the __contents__ flag for a section which does not have contents, but it is not meaningful to clear the __contents__ flag of a section which does have contents--just remove the section instead. Not all flags are meaningful for all object file formats. __--add-section__ ''sectionname''__=__''filename'' Add a new section named ''sectionname'' while copying the file. The contents of the new section are taken from the file ''filename''. The size of the section will be the size of the file. This option only works on file formats which can support sections with arbitrary names. __--rename-section__ ''oldname''__=__''newname''__[[,__''flags''__]__ Rename a section from ''oldname'' to ''newname'', optionally changing the section's flags to ''flags'' in the process. This has the advantage over usng a linker script to perform the rename in that the output stays as an object file and does not become a linked executable. This option is particularly helpful when the input format is binary, since this will always create a section called .data. If for example, you wanted instead to create a section called .rodata containing binary data you could use the following command line to achieve it: objcopy -I binary -O __--change-leading-char__ Some object file formats use special characters at the start of symbols. The most common such character is underscore, which compilers often add before every symbol. This option tells __objcopy__ to change the leading character of every symbol when it converts between object file formats. If the object file formats use the same leading character, this option has no effect. Otherwise, it will add a character, or remove a character, or change a character, as appropriate. __--remove-leading-char__ If the first character of a global symbol is a special symbol leading character used by the object file format, remove the character. The most common symbol leading character is underscore. This option will remove a leading underscore from all global symbols. This can be useful if you want to link together objects of different file formats with different conventions for symbol names. This is different from __--change-leading-char__ because it always changes the symbol name when appropriate, regardless of the object file format of the output file. __--srec-len=__''ival'' Meaningful only for srec output. Set the maximum length of the Srecords being produced to ''ival''. This length covers both address, data and crc fields. __--srec-forceS3__ Meaningful only for srec output. Avoid generation of S1/S2 records, creating S3-only record format. __--redefine-sym__ ''old''__=__''new'' Change the name of a symbol ''old'', to ''new''. This can be useful when one is trying link two things together for which you have no source, and there are name collisions. __--weaken__ Change all global symbols in the file to be weak. This can be useful when building an object which will be linked against other objects using the __-R__ option to the linker. This option is only effective when using an object file format which supports weak symbols. __--keep-symbols=__''filename'' Apply __--keep-symbol__ option to each symbol listed in the file ''filename''. ''filename'' is simply a flat file, with one symbol name per line. Line comments may be introduced by the hash character. This option may be given more than once. __--strip-symbols=__''filename'' Apply __--strip-symbol__ option to each symbol listed in the file ''filename''. ''filename'' is simply a flat file, with one symbol name per line. Line comments may be introduced by the hash character. This option may be given more than once. __--keep-global-symbols=__''filename'' Apply __--keep-global-symbol__ option to each symbol listed in the file ''filename''. ''filename'' is simply a flat file, with one symbol name per line. Line comments may be introduced by the hash character. This option may be given more than once. __--localize-symbols=__''filename'' Apply __--localize-symbol__ option to each symbol listed in the file ''filename''. ''filename'' is simply a flat file, with one symbol name per line. Line comments may be introduced by the hash character. This option may be given more than once. __--weaken-symbols=__''filename'' Apply __--weaken-symbol__ option to each symbol listed in the file ''filename''. ''filename'' is simply a flat file, with one symbol name per line. Line comments may be introduced by the hash character. This option may be given more than once. __--alt-machine-code=__''index'' If the output architecture has alternate machine codes, use the ''index''th code instead of the default one. This is useful in case a machine is assigned an official code and the tool-chain adopts the new code, but other applications still depend on the original code being used. __-V__ __--version__ Show the version number of __objcopy__. __-v__ __--verbose__ Verbose output: list all object files modified. In the case of archives, __objcopy -V__ lists all members of the archive. __--help__ Show a summary of the options to __objcopy__. !!SEE ALSO ld(1), objdump(1), and the Info entries for ''binutils''. !!COPYRIGHT Copyright (c) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001, 2002 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled `` GNU Free Documentation License''. ----
2 pages link to
objcopy(1)
:
ld(1)
Man1o
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.