]> granicus.if.org Git - clang/commitdiff
Driver: Allow driver title (for --help) to be overridden by clients.
authorDaniel Dunbar <daniel@zuster.org>
Thu, 25 Feb 2010 03:31:53 +0000 (03:31 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 25 Feb 2010 03:31:53 +0000 (03:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97106 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Driver/Driver.h
lib/Driver/Driver.cpp

index 64f88ed9831817f1d79fa62df88d95a1f199fc27..59c3946a2cb5fe04a0b117064b42e9eb4b9ae682 100644 (file)
@@ -70,6 +70,9 @@ public:
   /// Default name for linked images (e.g., "a.out").
   std::string DefaultImageName;
 
+  /// Driver title to use with help.
+  std::string DriverTitle;
+
   /// Host information for the platform the driver is running as. This
   /// will generally be the actual host platform, but not always.
   const HostInfo *Host;
@@ -137,6 +140,9 @@ public:
 
   void setCheckInputsExist(bool Value) { CheckInputsExist = Value; }
 
+  const std::string &getTitle() { return DriverTitle; }
+  void setTitle(std::string Value) { DriverTitle = Value; }
+
   /// @}
   /// @name Primary Functionality
   /// @{
index e729f0fb54e5267dbbbe336976c4f46565c194e9..ec8227efb332123226db01ef01201aa83ee50261 100644 (file)
@@ -49,6 +49,7 @@ Driver::Driver(llvm::StringRef _Name, llvm::StringRef _Dir,
   : Opts(createDriverOptTable()), Diags(_Diags),
     Name(_Name), Dir(_Dir), DefaultHostTriple(_DefaultHostTriple),
     DefaultImageName(_DefaultImageName),
+    DriverTitle("clang \"gcc-compatible\" driver"),
     Host(0),
     CCCGenericGCCName("gcc"), CCCIsCXX(false), CCCEcho(false),
     CCCPrintBindings(false), CheckInputsExist(true), CCCUseClang(true),
@@ -273,8 +274,8 @@ void Driver::PrintOptions(const ArgList &Args) const {
 // FIXME: Move -ccc options to real options in the .td file (or eliminate), and
 // then move to using OptTable::PrintHelp.
 void Driver::PrintHelp(bool ShowHidden) const {
-  getOpts().PrintHelp(llvm::outs(), Name.c_str(),
-                      "clang \"gcc-compatible\" driver", ShowHidden);
+  getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(),
+                      ShowHidden);
 }
 
 void Driver::PrintVersion(const Compilation &C, llvm::raw_ostream &OS) const {