]> granicus.if.org Git - clang/commitdiff
Allow clang tools to display an overview when using the CommonOptionsParser.
authorManuel Klimek <klimek@google.com>
Fri, 19 Jul 2013 12:20:59 +0000 (12:20 +0000)
committerManuel Klimek <klimek@google.com>
Fri, 19 Jul 2013 12:20:59 +0000 (12:20 +0000)
Patch by Guillaume Papin.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186671 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Tooling/CommonOptionsParser.h
lib/Tooling/CommonOptionsParser.cpp

index 6775934139486e1dbf2c2b28e0d4253f239bb611..eaffe4363515c484dac5ec93cbdb28820247bed7 100644 (file)
@@ -64,7 +64,7 @@ public:
   /// This constructor can change argc and argv contents, e.g. consume
   /// command-line options used for creating FixedCompilationDatabase.
   /// This constructor exits program in case of error.
-  CommonOptionsParser(int &argc, const char **argv);
+  CommonOptionsParser(int &argc, const char **argv, const char *Overview = 0);
 
   /// Returns a reference to the loaded compilations database.
   CompilationDatabase &getCompilations() {
index 99aff9f4e973d6133fd1e56cd5119a84524dabf8..cce4816aa6758b80746e2e5dc4e765d1e40dcb74 100644 (file)
@@ -53,7 +53,8 @@ const char *const CommonOptionsParser::HelpMessage =
     "\tsuffix of a path in the compile command database.\n"
     "\n";
 
-CommonOptionsParser::CommonOptionsParser(int &argc, const char **argv) {
+CommonOptionsParser::CommonOptionsParser(int &argc, const char **argv,
+                                         const char *Overview) {
   static cl::opt<std::string> BuildPath(
       "p", cl::desc("Build path"), cl::Optional);
 
@@ -62,7 +63,7 @@ CommonOptionsParser::CommonOptionsParser(int &argc, const char **argv) {
 
   Compilations.reset(FixedCompilationDatabase::loadFromCommandLine(argc,
                                                                    argv));
-  cl::ParseCommandLineOptions(argc, argv);
+  cl::ParseCommandLineOptions(argc, argv, Overview);
   SourcePathList = SourcePaths;
   if (!Compilations) {
     std::string ErrorMessage;