Skip to content

[llvm-debuginfod-find] Remove old parameter comment #109637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,45 +98,6 @@ static void parseArgs(int argc, char **argv) {
exit(1);
}

/*
cl::OptionCategory DebuginfodFindCategory("llvm-debuginfod-find Options");

cl::opt<std::string> InputBuildID(cl::Positional, cl::Required,
cl::desc("<input build_id>"), cl::init("-"),
cl::cat(DebuginfodFindCategory));

static cl::opt<bool>
FetchExecutable("executable", cl::init(false),
cl::desc("If set, fetch a binary file associated with this "
"build id, containing the executable sections."),
cl::cat(DebuginfodFindCategory));

static cl::opt<bool>
FetchDebuginfo("debuginfo", cl::init(false),
cl::desc("If set, fetch a binary file associated with this "
"build id, containing the debuginfo sections."),
cl::cat(DebuginfodFindCategory));

static cl::opt<std::string> FetchSource(
"source", cl::init(""),
cl::desc("Fetch a source file associated with this build id, which is at "
"this relative path relative to the compilation directory."),
cl::cat(DebuginfodFindCategory));

static cl::opt<bool>
DumpToStdout("dump", cl::init(false),
cl::desc("If set, dumps the contents of the fetched artifact "
"to standard output. Otherwise, dumps the absolute "
"path to the cached artifact on disk."),
cl::cat(DebuginfodFindCategory));

static cl::list<std::string> DebugFileDirectory(
"debug-file-directory",
cl::desc("Path to directory where to look for debug files."),
cl::cat(DebuginfodFindCategory));

*/

ExitOnError ExitOnDebuginfodFindError;

static std::string fetchDebugInfo(object::BuildIDRef BuildID);
Expand Down
Loading