1 include "llvm/Option/OptParser.td"
3 class F<string name, string help> : Flag<["-"], name>, HelpText<help>;
4 class FF<string name, string help>: Flag<["--"], name>, HelpText<help>;
5 class S<string name, string meta, string help>: Separate<["--"], name>, HelpText<help>, MetaVarName<meta>;
7 def help : FF<"help", "Display available options">;
8 def : F<"h", "Alias for --help">, Alias<help>;
10 def fetch_executable : FF<"executable", "If set, fetch a binary file associated with this build id, containing the executable sections.">;
11 def fetch_debuginfo : FF<"debuginfo", "If set, fetch a binary file associated with this build id, containing the debuginfo sections.">;
12 def fetch_source : S<"source", "<string>", "Fetch a source file associated with this build id, which is at this relative path relative to the compilation directory.">;
13 def dump_to_stdout : FF<"dump", "If set, dumps the contents of the fetched artifact "
14 "to standard output. Otherwise, dumps the absolute "
15 "path to the cached artifact on disk.">;
16 def debug_file_directory : S<"debug-file-directory", "<string>", "Path to directory where to look for debug files.">;