Files
swift-mirror/lib/DriverTool/SwiftCacheToolOptions.td
Steven Wu c153210505 [CAS] Add test case for cache key computation
Add tool swift-cache-tool for caching related testing and inspection.
2023-04-24 13:56:33 -07:00

18 lines
508 B
TableGen

// Include the common option parsing interfaces.
include "llvm/Option/OptParser.td"
/////////
// Flags
def help : Flag<["-", "--"], "help">,
HelpText<"Display available options">;
def _DASH_DASH : Option<["--"], "", KIND_REMAINING_ARGS>;
def cache_tool_action: JoinedOrSeparate<["-"], "cache-tool-action">,
HelpText<"Swift Cache Tool Action Kind">,
MetaVarName<"<print-base-key|print-output-keys|...>">;
def cas_path: Separate<["-"], "cas-path">,
HelpText<"Path to CAS">, MetaVarName<"<path>">;