def dependency_file : Separate<"-dependency-file">,
HelpText<"Filename (or -) to write dependency output to">;
-def dependency_graphviz : Separate<"-dependency-graphviz">,
- HelpText<"Filename to write GraphViz-formatted header dependencies to">;
+def dependency_dot : Separate<"-dependency-dot">,
+ HelpText<"Filename to write DOT-formatted header dependencies to">;
def sys_header_deps : Flag<"-sys-header-deps">,
HelpText<"Include system headers in dependency output">;
def header_include_file : Separate<"-header-include-file">,
std::vector<std::string> Targets;
/// \brief The file to write GraphViz-formatted header dependencies to.
- std::string GraphvizOutputFile;
+ std::string DOTOutputFile;
public:
DependencyOutputOptions() {
const DependencyOutputOptions &DepOpts = getDependencyOutputOpts();
if (!DepOpts.OutputFile.empty())
AttachDependencyFileGen(*PP, DepOpts);
- if (!DepOpts.GraphvizOutputFile.empty())
- AttachDependencyGraphGen(*PP, DepOpts.GraphvizOutputFile,
+ if (!DepOpts.DOTOutputFile.empty())
+ AttachDependencyGraphGen(*PP, DepOpts.DOTOutputFile,
getHeaderSearchOpts().Sysroot);
Opts.ShowHeaderIncludes = Args.hasArg(OPT_H);
Opts.HeaderIncludeOutputFile = Args.getLastArgValue(OPT_header_include_file);
Opts.AddMissingHeaderDeps = Args.hasArg(OPT_MG);
- Opts.GraphvizOutputFile = Args.getLastArgValue(OPT_dependency_graphviz);
+ Opts.DOTOutputFile = Args.getLastArgValue(OPT_dependency_dot);
}
static bool ParseDiagnosticArgs(DiagnosticOptions &Opts, ArgList &Args,
//
//===----------------------------------------------------------------------===//
//
-// This code generates a header dependency graph in GraphViz format.
+// This code generates a header dependency graph in DOT format, for use
+// with, e.g., GraphViz.
//
//===----------------------------------------------------------------------===//