Command line switches -dD and -Dm were swapped in the usage information.

This commit is contained in:
Kugel Fuhr
2025-06-12 22:02:35 +02:00
parent a6b94ebba2
commit 40aced6d6d
2 changed files with 6 additions and 6 deletions

View File

@@ -63,8 +63,8 @@ Short options:
-V Print the compiler version number -V Print the compiler version number
-W [-+]warning[,...] Control warnings ('-' disables, '+' enables) -W [-+]warning[,...] Control warnings ('-' disables, '+' enables)
-d Debug mode -d Debug mode
-dD Output all macro definitions (needs -E) -dD Output user defined macros (needs -E)
-dM Output user defined macros (needs -E) -dM Output all macro definitions (needs -E)
-dN Output user defined macro names (needs -E) -dN Output user defined macro names (needs -E)
-g Add debug info to object file -g Add debug info to object file
-h Help (this text) -h Help (this text)

View File

@@ -93,8 +93,8 @@ static void Usage (void)
" -V\t\t\t\tPrint the compiler version number\n" " -V\t\t\t\tPrint the compiler version number\n"
" -W [-+]warning[,...]\t\tControl warnings ('-' disables, '+' enables)\n" " -W [-+]warning[,...]\t\tControl warnings ('-' disables, '+' enables)\n"
" -d\t\t\t\tDebug mode\n" " -d\t\t\t\tDebug mode\n"
" -dD\t\t\t\tOutput all macro definitions (needs -E)\n" " -dD\t\t\t\tOutput user defined macros (needs -E)\n"
" -dM\t\t\t\tOutput user defined macros (needs -E)\n" " -dM\t\t\t\tOutput all macro definitions (needs -E)\n"
" -dN\t\t\t\tOutput user defined macro names (needs -E)\n" " -dN\t\t\t\tOutput user defined macro names (needs -E)\n"
" -g\t\t\t\tAdd debug info to object file\n" " -g\t\t\t\tAdd debug info to object file\n"
" -h\t\t\t\tHelp (this text)\n" " -h\t\t\t\tHelp (this text)\n"