diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-09-13 21:34:08 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-09-13 21:34:08 +0000 |
commit | decf286508f94fc223e6b9b2b4020b5d1d8c1bbd (patch) | |
tree | 86c141514bf1fa5df32949cc4e4491e2ebf323b3 /binutils/binutils.texi | |
parent | 1b3b1c2d3cada7949e183d024f32ace0652d3ac0 (diff) | |
download | gdb-decf286508f94fc223e6b9b2b4020b5d1d8c1bbd.zip gdb-decf286508f94fc223e6b9b2b4020b5d1d8c1bbd.tar.gz gdb-decf286508f94fc223e6b9b2b4020b5d1d8c1bbd.tar.bz2 |
* objcopy.c (change_leading_char): New static variable.
(OPTION_CHANGE_LEADING_CHAR): Define.
(copy_options): Add "change-leading-char".
(copy_usage): Mention --change-leading-char.
(filter_symbols): Add obfd parameter. Change all callers.
Implement change_leading_char.
(copy_object): Call filter_symbols if change_leading_char.
(copy_main): Handle OPTION_CHANGE_LEADING_CHAR.
* binutils.texi, objcopy.1: Document --change-leading-char.
Diffstat (limited to 'binutils/binutils.texi')
-rw-r--r-- | binutils/binutils.texi | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/binutils/binutils.texi b/binutils/binutils.texi index 053df4a..ff072af 100644 --- a/binutils/binutils.texi +++ b/binutils/binutils.texi @@ -816,7 +816,7 @@ objcopy [ -F @var{bfdname} | --target=@var{bfdname} ] [ --adjust-warnings ] [ --no-adjust-warnings ] [ --set-section-flags=@var{section}=@var{flags} ] [ --add-section=@var{sectionname}=@var{filename} ] - [ --remove-leading-char ] + [ --change-leading-char ] [ --remove-leading-char ] [ -v | --verbose ] [ -V | --version ] [ --help ] @var{infile} [@var{outfile}] @end smallexample @@ -986,13 +986,26 @@ contents of the new section are taken from the file @var{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. +@item --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 @code{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. + @item --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. +different conventions for symbol names. This is different from +@code{--change-leading-char} because it always changes the symbol name +when appropriate, regardless of the object file format of the output +file. @item -V @itemx --version |