1include "llvm/Option/OptParser.td"
2
3class F<string name, string help> : Flag<["-", "--"], name>, HelpText<help>;
4class S<string name, string help> : Separate<["-", "--"], name>, HelpText<help>;
5
6def help : F<"help", "Display this help">;
7def : F<"h", "Alias for --help">, Alias<help>;
8def version : F<"version", "Display the version of this program">;
9
10def execFileNames : S<"e", "Specify the executable/library files to get the list of *.dwo from.">, MetaVarName<"<filename>">;
11def outputFileName : S<"o", "Specify the output file.">, MetaVarName<"<filename>">;
12def continueOnCuIndexOverflow : S<"continue-on-cu-index-overflow", "default = continue, This turns an error when offset "
13                                         "for .debug_*.dwo sections overfolws into a warning. = soft-stop, This produces a "
14                                         "truncated but valid DWP file, discarding any DWO files that would not fit within "
15                                         "the 32 bit/4GB limits of the format.">, MetaVarName<"<filename>">;