18 lines · plain
1include "llvm/Option/OptParser.td"2 3class F<string name, string help> : Flag<["-"], name>, HelpText<help>;4class FF<string name, string help>: Flag<["--"], name>, HelpText<help>;5class S<string name, string meta, string help>: Separate<["--"], name>, HelpText<help>, MetaVarName<meta>;6 7def help : FF<"help", "Display available options">;8def : F<"h", "Alias for --help">, Alias<help>;9 10def fetch_executable : FF<"executable", "If set, fetch a binary file associated with this build id, containing the executable sections.">;11def fetch_debuginfo : FF<"debuginfo", "If set, fetch a binary file associated with this build id, containing the debuginfo sections.">;12def 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.">;13def 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.">;16def debug_file_directory : S<"debug-file-directory", "<string>", "Path to directory where to look for debug files.">;17 18