Reordered usage output
git-svn-id: svn://svn.cc65.org/cc65/trunk@1002 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
22dd82ae8a
commit
a497075f78
3 changed files with 25 additions and 25 deletions
|
@ -6,7 +6,7 @@
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* (C) 1998-2000 Ullrich von Bassewitz */
|
/* (C) 1998-2001 Ullrich von Bassewitz */
|
||||||
/* Wacholderweg 14 */
|
/* Wacholderweg 14 */
|
||||||
/* D-70597 Stuttgart */
|
/* D-70597 Stuttgart */
|
||||||
/* EMail: uz@musoftware.de */
|
/* EMail: uz@musoftware.de */
|
||||||
|
@ -82,6 +82,11 @@ static void Usage (void)
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Usage: %s [options] file\n"
|
"Usage: %s [options] file\n"
|
||||||
"Short options:\n"
|
"Short options:\n"
|
||||||
|
" -D name[=value]\tDefine a symbol\n"
|
||||||
|
" -I dir\t\tSet an include directory search path\n"
|
||||||
|
" -U\t\t\tMark unresolved symbols as import\n"
|
||||||
|
" -V\t\t\tPrint the assembler version\n"
|
||||||
|
" -W n\t\t\tSet warning level n\n"
|
||||||
" -g\t\t\tAdd debug info to object file\n"
|
" -g\t\t\tAdd debug info to object file\n"
|
||||||
" -h\t\t\tHelp (this text)\n"
|
" -h\t\t\tHelp (this text)\n"
|
||||||
" -i\t\t\tIgnore case of symbols\n"
|
" -i\t\t\tIgnore case of symbols\n"
|
||||||
|
@ -90,11 +95,6 @@ static void Usage (void)
|
||||||
" -s\t\t\tEnable smart mode\n"
|
" -s\t\t\tEnable smart mode\n"
|
||||||
" -t sys\t\tSet the target system\n"
|
" -t sys\t\tSet the target system\n"
|
||||||
" -v\t\t\tIncrease verbosity\n"
|
" -v\t\t\tIncrease verbosity\n"
|
||||||
" -D name[=value]\tDefine a symbol\n"
|
|
||||||
" -I dir\t\tSet an include directory search path\n"
|
|
||||||
" -U\t\t\tMark unresolved symbols as import\n"
|
|
||||||
" -V\t\t\tPrint the assembler version\n"
|
|
||||||
" -W n\t\t\tSet warning level n\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"Long options:\n"
|
"Long options:\n"
|
||||||
" --auto-import\t\tMark unresolved symbols as import\n"
|
" --auto-import\t\tMark unresolved symbols as import\n"
|
||||||
|
|
|
@ -534,6 +534,16 @@ static void Usage (void)
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Usage: %s [options] file\n"
|
"Usage: %s [options] file\n"
|
||||||
"Short options:\n"
|
"Short options:\n"
|
||||||
|
" -c\t\t\tCompiler and assemble but don't link\n"
|
||||||
|
" -d\t\t\tDebug mode\n"
|
||||||
|
" -g\t\t\tAdd debug info\n"
|
||||||
|
" -h\t\t\tHelp (this text)\n"
|
||||||
|
" -l\t\t\tCreate an assembler listing\n"
|
||||||
|
" -m name\t\tCreate a map file\n"
|
||||||
|
" -o name\t\tName the output file\n"
|
||||||
|
" -t sys\t\tSet the target system\n"
|
||||||
|
" -v\t\t\tVerbose mode\n"
|
||||||
|
" -vm\t\t\tVerbose map file\n"
|
||||||
" -A\t\t\tStrict ANSI mode\n"
|
" -A\t\t\tStrict ANSI mode\n"
|
||||||
" -C name\t\tUse linker config file\n"
|
" -C name\t\tUse linker config file\n"
|
||||||
" -Cl\t\t\tMake local variables static\n"
|
" -Cl\t\t\tMake local variables static\n"
|
||||||
|
@ -548,16 +558,6 @@ static void Usage (void)
|
||||||
" -T\t\t\tInclude source as comment\n"
|
" -T\t\t\tInclude source as comment\n"
|
||||||
" -V\t\t\tPrint the version number\n"
|
" -V\t\t\tPrint the version number\n"
|
||||||
" -W\t\t\tSuppress warnings\n"
|
" -W\t\t\tSuppress warnings\n"
|
||||||
" -c\t\t\tCompiler and assemble but don't link\n"
|
|
||||||
" -d\t\t\tDebug mode\n"
|
|
||||||
" -g\t\t\tAdd debug info\n"
|
|
||||||
" -h\t\t\tHelp (this text)\n"
|
|
||||||
" -l\t\t\tCreate an assembler listing\n"
|
|
||||||
" -m name\t\tCreate a map file\n"
|
|
||||||
" -o name\t\tName the output file\n"
|
|
||||||
" -t sys\t\tSet the target system\n"
|
|
||||||
" -v\t\t\tVerbose mode\n"
|
|
||||||
" -vm\t\t\tVerbose map file\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"Long options:\n"
|
"Long options:\n"
|
||||||
" --add-source\t\tInclude source as comment\n"
|
" --add-source\t\tInclude source as comment\n"
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* (C) 1998-2000 Ullrich von Bassewitz */
|
/* (C) 1998-2001 Ullrich von Bassewitz */
|
||||||
/* Wacholderweg 14 */
|
/* Wacholderweg 14 */
|
||||||
/* D-70597 Stuttgart */
|
/* D-70597 Stuttgart */
|
||||||
/* EMail: uz@musoftware.de */
|
/* EMail: uz@musoftware.de */
|
||||||
|
@ -89,17 +89,17 @@ static void Usage (void)
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Usage: %s [options] module ...\n"
|
"Usage: %s [options] module ...\n"
|
||||||
"Short options:\n"
|
"Short options:\n"
|
||||||
|
" -C name\t\tUse linker config file\n"
|
||||||
|
" -Ln name\t\tCreate a VICE label file\n"
|
||||||
|
" -Lp\t\t\tMark write protected segments as such (VICE)\n"
|
||||||
|
" -S addr\t\tSet the default start address\n"
|
||||||
|
" -V\t\t\tPrint the linker version\n"
|
||||||
" -h\t\t\tHelp (this text)\n"
|
" -h\t\t\tHelp (this text)\n"
|
||||||
" -m name\t\tCreate a map file\n"
|
" -m name\t\tCreate a map file\n"
|
||||||
" -o name\t\tName the default output file\n"
|
" -o name\t\tName the default output file\n"
|
||||||
" -t sys\t\tSet the target system\n"
|
" -t sys\t\tSet the target system\n"
|
||||||
" -v\t\t\tVerbose mode\n"
|
" -v\t\t\tVerbose mode\n"
|
||||||
" -vm\t\t\tVerbose map file\n"
|
" -vm\t\t\tVerbose map file\n"
|
||||||
" -C name\t\tUse linker config file\n"
|
|
||||||
" -Ln name\t\tCreate a VICE label file\n"
|
|
||||||
" -Lp\t\t\tMark write protected segments as such (VICE)\n"
|
|
||||||
" -S addr\t\tSet the default start address\n"
|
|
||||||
" -V\t\t\tPrint the linker version\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"Long options:\n"
|
"Long options:\n"
|
||||||
" --help\t\tHelp (this text)\n"
|
" --help\t\tHelp (this text)\n"
|
||||||
|
|
Loading…
Add table
Reference in a new issue