浏览代码

show help if protoc is called without any arguments, pre-empts -h and --help to show a useful message instead of just 'Missing input file.'

Dennis Cappendijk 8 年之前
父节点
当前提交
3b227611d5
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/google/protobuf/compiler/command_line_interface.cc

+ 6 - 0
src/google/protobuf/compiler/command_line_interface.cc

@@ -1012,6 +1012,12 @@ CommandLineInterface::ParseArguments(int argc, const char* const argv[]) {
     arguments.push_back(argv[i]);
   }
 
+  // if no arguments are given, show help
+  if(arguments.empty()) {
+    PrintHelpText();
+    return PARSE_ARGUMENT_DONE_AND_EXIT;  // Exit without running compiler.
+  }
+
   // Iterate through all arguments and parse them.
   for (int i = 0; i < arguments.size(); ++i) {
     string name, value;