From Craig Silverstein: Implement --debug=files to track file opens,

and implement --verbose as a synonym.
This commit is contained in:
Ian Lance Taylor
2008-03-13 01:46:17 +00:00
parent 858b27aeed
commit 2285a61069
6 changed files with 37 additions and 9 deletions

View File

@@ -458,7 +458,8 @@ class General_options
N_("Alias for -d"), NULL);
DEFINE_string(debug, options::TWO_DASHES, '\0', "",
N_("Turn on debugging"), N_("[task,script,all][,...]"));
N_("Turn on debugging"),
N_("[all,files,script,task][,...]"));
DEFINE_special(defsym, options::TWO_DASHES, '\0',
N_("Define a symbol"), N_("SYMBOL=EXPRESSION"));
@@ -579,6 +580,9 @@ class General_options
DEFINE_uint64(Ttext, options::ONE_DASH, '\0', -1U,
N_("Set the address of the text segment"), N_("ADDRESS"));
DEFINE_bool(verbose, options::TWO_DASHES, '\0', false,
N_("Synonym for --debug=files"), NULL);
DEFINE_special(version_script, options::TWO_DASHES, '\0',
N_("Read version script"), N_("FILE"));