aboutsummaryrefslogtreecommitdiff
path: root/gold/options.h
diff options
context:
space:
mode:
authorDavid S. Miller <davem@redhat.com>2008-04-17 20:23:59 +0000
committerDavid S. Miller <davem@redhat.com>2008-04-17 20:23:59 +0000
commitb5be4a7c8c504659d73c46741f020c45c9f861d0 (patch)
tree0e57c8c8a79640d456b5dbf161082f33bb7cd5fa /gold/options.h
parent4584e32ea409bd2b80cd4aba8635de091a47da4b (diff)
downloadfsf-binutils-gdb-b5be4a7c8c504659d73c46741f020c45c9f861d0.zip
fsf-binutils-gdb-b5be4a7c8c504659d73c46741f020c45c9f861d0.tar.gz
fsf-binutils-gdb-b5be4a7c8c504659d73c46741f020c45c9f861d0.tar.bz2
* options.cc (General_options::parse_V): New function.
* options.h: Add entries for -V and -Qy.
Diffstat (limited to 'gold/options.h')
-rw-r--r--gold/options.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gold/options.h b/gold/options.h
index 2c71fae..100e53b 100644
--- a/gold/options.h
+++ b/gold/options.h
@@ -450,6 +450,8 @@ class General_options
N_("Report usage information"), NULL);
DEFINE_special(version, options::TWO_DASHES, 'v',
N_("Report version information"), NULL);
+ DEFINE_special(V, options::EXACTLY_ONE_DASH, '\0',
+ N_("Report version and target information"), NULL);
// These options are sorted approximately so that for each letter in
// the alphabet, we show the option whose shortname is that letter
@@ -576,6 +578,9 @@ class General_options
DEFINE_string(oformat, options::EXACTLY_TWO_DASHES, '\0', "elf",
N_("Set output format"), N_("[binary]"));
+ DEFINE_bool(Qy, options::EXACTLY_ONE_DASH, '\0', false,
+ N_("Ignored for SVR4 compatibility"), NULL);
+
DEFINE_bool(emit_relocs, options::TWO_DASHES, 'q', false,
N_("Generate relocations in output"), NULL);