diff options
author | emaste <emaste@FreeBSD.org> | 2015-12-11 20:13:36 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2015-12-11 20:13:36 +0000 |
commit | 08c7091d4a30fde09fdda23d2016d8d11624cb15 (patch) | |
tree | fa4048de2a3b89d666f609663721fe14dee0627a /elfcopy/main.c | |
parent | f776db09f98d97717b9d579ba1d88ed8c5e3a040 (diff) | |
download | FreeBSD-src-08c7091d4a30fde09fdda23d2016d8d11624cb15.zip FreeBSD-src-08c7091d4a30fde09fdda23d2016d8d11624cb15.tar.gz |
Import ELF Tool Chain snapshot revision r3272
From http://svn.code.sf.net/p/elftoolchain/code/
Diffstat (limited to 'elfcopy/main.c')
-rw-r--r-- | elfcopy/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/elfcopy/main.c b/elfcopy/main.c index cbd48d3..e2685b4 100644 --- a/elfcopy/main.c +++ b/elfcopy/main.c @@ -39,7 +39,7 @@ #include "elfcopy.h" -ELFTC_VCSID("$Id: main.c 3216 2015-05-23 21:16:36Z kaiwang27 $"); +ELFTC_VCSID("$Id: main.c 3268 2015-12-07 20:30:55Z emaste $"); enum options { @@ -1375,11 +1375,13 @@ Usage: %s [options] infile [outfile]\n\ -w | --wildcard Use shell-style patterns to name symbols.\n\ -x | --discard-all Do not copy non-globals to the output.\n\ -I FORMAT | --input-target=FORMAT\n\ - (Accepted but ignored).\n\ + Specify object format for the input file.\n\ -K SYM | --keep-symbol=SYM Copy symbol SYM to the output.\n\ -L SYM | --localize-symbol=SYM\n\ Make symbol SYM local to the output file.\n\ -N SYM | --strip-symbol=SYM Do not copy symbol SYM to the output.\n\ + -O FORMAT | --output-target=FORMAT\n\ + Specify object format for the output file.\n\ -R NAME | --remove-section=NAME\n\ Remove the named section.\n\ -S | --strip-all Remove all symbol and relocation information\n\ |