update --help output. sort options alphabetically. remove some old options.
This commit is contained in:
parent
112852f70b
commit
94322d6e0a
|
@ -1008,9 +1008,6 @@ void CmdLineParser::printHelp()
|
||||||
" addon json files or through this command line option.\n"
|
" addon json files or through this command line option.\n"
|
||||||
" If not present, Cppcheck will try \"python3\" first and\n"
|
" If not present, Cppcheck will try \"python3\" first and\n"
|
||||||
" then \"python\".\n"
|
" then \"python\".\n"
|
||||||
" --bug-hunting\n"
|
|
||||||
" Enable noisy and soundy analysis. The normal Cppcheck\n"
|
|
||||||
" analysis is turned off.\n"
|
|
||||||
" --cppcheck-build-dir=<dir>\n"
|
" --cppcheck-build-dir=<dir>\n"
|
||||||
" Cppcheck work folder. Advantages:\n"
|
" Cppcheck work folder. Advantages:\n"
|
||||||
" * whole program analysis\n"
|
" * whole program analysis\n"
|
||||||
|
@ -1131,26 +1128,15 @@ void CmdLineParser::printHelp()
|
||||||
" distributed with Cppcheck is loaded automatically.\n"
|
" distributed with Cppcheck is loaded automatically.\n"
|
||||||
" For more information about library files, read the\n"
|
" For more information about library files, read the\n"
|
||||||
" manual.\n"
|
" manual.\n"
|
||||||
" --max-ctu-depth=N Max depth in whole program analysis. The default value\n"
|
|
||||||
" is 2. A larger value will mean more errors can be found\n"
|
|
||||||
" but also means the analysis will be slower.\n"
|
|
||||||
" --output-file=<file> Write results to file, rather than standard error.\n"
|
|
||||||
" --project=<file> Run Cppcheck on project. The <file> can be a Visual\n"
|
|
||||||
" Studio Solution (*.sln), Visual Studio Project\n"
|
|
||||||
" (*.vcxproj), compile database (compile_commands.json),\n"
|
|
||||||
" or Borland C++ Builder 6 (*.bpr). The files to analyse,\n"
|
|
||||||
" include paths, defines, platform and undefines in\n"
|
|
||||||
" the specified file will be used.\n"
|
|
||||||
" --project-configuration=<config>\n"
|
|
||||||
" If used together with a Visual Studio Solution (*.sln)\n"
|
|
||||||
" or Visual Studio Project (*.vcxproj) you can limit\n"
|
|
||||||
" the configuration cppcheck should check.\n"
|
|
||||||
" For example: '--project-configuration=Release|Win32'\n"
|
|
||||||
" --max-configs=<limit>\n"
|
" --max-configs=<limit>\n"
|
||||||
" Maximum number of configurations to check in a file\n"
|
" Maximum number of configurations to check in a file\n"
|
||||||
" before skipping it. Default is '12'. If used together\n"
|
" before skipping it. Default is '12'. If used together\n"
|
||||||
" with '--force', the last option is the one that is\n"
|
" with '--force', the last option is the one that is\n"
|
||||||
" effective.\n"
|
" effective.\n"
|
||||||
|
" --max-ctu-depth=N Max depth in whole program analysis. The default value\n"
|
||||||
|
" is 2. A larger value will mean more errors can be found\n"
|
||||||
|
" but also means the analysis will be slower.\n"
|
||||||
|
" --output-file=<file> Write results to file, rather than standard error.\n"
|
||||||
" --platform=<type>, --platform=<file>\n"
|
" --platform=<type>, --platform=<file>\n"
|
||||||
" Specifies platform specific types and sizes. The\n"
|
" Specifies platform specific types and sizes. The\n"
|
||||||
" available builtin platforms are:\n"
|
" available builtin platforms are:\n"
|
||||||
|
@ -1200,6 +1186,17 @@ void CmdLineParser::printHelp()
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cout <<
|
std::cout <<
|
||||||
|
" --project=<file> Run Cppcheck on project. The <file> can be a Visual\n"
|
||||||
|
" Studio Solution (*.sln), Visual Studio Project\n"
|
||||||
|
" (*.vcxproj), compile database (compile_commands.json),\n"
|
||||||
|
" or Borland C++ Builder 6 (*.bpr). The files to analyse,\n"
|
||||||
|
" include paths, defines, platform and undefines in\n"
|
||||||
|
" the specified file will be used.\n"
|
||||||
|
" --project-configuration=<config>\n"
|
||||||
|
" If used together with a Visual Studio Solution (*.sln)\n"
|
||||||
|
" or Visual Studio Project (*.vcxproj) you can limit\n"
|
||||||
|
" the configuration cppcheck should check.\n"
|
||||||
|
" For example: '--project-configuration=Release|Win32'\n"
|
||||||
" -q, --quiet Do not show progress reports.\n"
|
" -q, --quiet Do not show progress reports.\n"
|
||||||
" -rp=<paths>, --relative-paths=<paths>\n"
|
" -rp=<paths>, --relative-paths=<paths>\n"
|
||||||
" Use relative paths in output. When given, <paths> are\n"
|
" Use relative paths in output. When given, <paths> are\n"
|
||||||
|
@ -1287,9 +1284,6 @@ void CmdLineParser::printHelp()
|
||||||
" -v, --verbose Output more detailed error information.\n"
|
" -v, --verbose Output more detailed error information.\n"
|
||||||
" --version Print out version number.\n"
|
" --version Print out version number.\n"
|
||||||
" --xml Write results in xml format to error stream (stderr).\n"
|
" --xml Write results in xml format to error stream (stderr).\n"
|
||||||
" --xml-version=<version>\n"
|
|
||||||
" Select the XML file version. Also implies --xml.\n"
|
|
||||||
" Currently only version 2 is available. The default version is 2.\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"Example usage:\n"
|
"Example usage:\n"
|
||||||
" # Recursively check the current folder. Print the progress on the screen and\n"
|
" # Recursively check the current folder. Print the progress on the screen and\n"
|
||||||
|
|
Loading…
Reference in New Issue