diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-03-10 18:13:31 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-03-10 18:13:31 +0000 |
commit | dff604a75fe8cc500bdf8b6d037d2977f9230c2e (patch) | |
tree | 1089f2d544140600405ceeeb5bab61f29d0bde1a /binutils/binutils.texi | |
parent | d4f389f692a6ca1103a4457d8d1dc4cc1c3f2750 (diff) | |
download | gdb-dff604a75fe8cc500bdf8b6d037d2977f9230c2e.zip gdb-dff604a75fe8cc500bdf8b6d037d2977f9230c2e.tar.gz gdb-dff604a75fe8cc500bdf8b6d037d2977f9230c2e.tar.bz2 |
* objcopy.c (strip_options): Add --keep-symbol.
(copy_options): Likewise.
(copy_usage): Mention --keep-symbol and -K.
(strip_usage): Likewise.
(keep_symbols): New static variable.
(is_strip_symbol): Adjust the return value according to
keep_symbols.
(strip_main): Handle -K. For -N, check that -K was not given.
(copy_main): Likewise.
* binutils.texi, objcopy.1, strip.1: Document -K.
Diffstat (limited to 'binutils/binutils.texi')
-rw-r--r-- | binutils/binutils.texi | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/binutils/binutils.texi b/binutils/binutils.texi index bbf2463..d4dc72a 100644 --- a/binutils/binutils.texi +++ b/binutils/binutils.texi @@ -743,6 +743,7 @@ objcopy [ -F @var{bfdname} | --target=@var{bfdname} ] [ -I @var{bfdname} | --input-target=@var{bfdname} ] [ -O @var{bfdname} | --output-target=@var{bfdname} ] [ -S | --strip-all ] [ -g | --strip-debug ] + [ -K @var{symbolname} | --keep-symbol=@var{symbolname} ] [ -N @var{symbolname} | --strip-symbol=@var{symbolname} ] [ -x | --discard-all ] [ -X | --discard-locals ] [ -b @var{byte} | --byte=@var{byte} ] @@ -824,11 +825,16 @@ Do not copy relocation and symbol information from the source file. @itemx --strip-debug Do not copy debugging symbols from the source file. +@item -K @var{symbolname} +@itemx --keep-symbol=@var{symbolname} +Copy only symbol @var{symbolname} from the source file. This option may +be given more than once. + @item -N @var{symbolname} @itemx --strip-symbol=@var{symbolname} -Do not copy symbol @var{symbolname} from the source file. This option -may be given more than once, and may be combined with other strip -options. +Do not copy symbol @var{symbolname} from the source file. This option +may be given more than once, and may be combined with strip options +other than @code{-K}. @item -x @itemx --discard-all @@ -1319,6 +1325,7 @@ strip [ -F @var{bfdname} | --target=@var{bfdname} | --target=@var{bfdname} ] [ -I @var{bfdname} | --input-target=@var{bfdname} ] [ -O @var{bfdname} | --output-target=@var{bfdname} ] [ -s | --strip-all ] [ -S | -g | --strip-debug ] + [ -K @var{symbolname} | --keep-symbol=@var{symbolname} ] [ -N @var{symbolname} | --strip-symbol=@var{symbolname} ] [ -x | --discard-all ] [ -X | --discard-locals ] [ -R @var{sectionname} | --remove-section=@var{sectionname} ] @@ -1369,11 +1376,16 @@ Remove all symbols. @itemx --strip-debug Remove debugging symbols only. +@item -K @var{symbolname} +@itemx --keep-symbol=@var{symbolname} +Keep only symbol @var{symbolname} from the source file. This option may +be given more than once. + @item -N @var{symbolname} @itemx --strip-symbol=@var{symbolname} -Remove symbol @var{symbolname} from the source file. This option -may be given more than once, and may be combined with other strip -options. +Remove symbol @var{symbolname} from the source file. This option may be +given more than once, and may be combined with strip options other than +@code{-K}. @item -x @itemx --discard-all |