1 include "llvm/Option/OptParser.td"
3 class F<string name, string help> : Flag<["-", "--"], name>, HelpText<help>;
4 class S<string name, string help> : Separate<["-", "--"], name>, HelpText<help>;
6 def help : F<"help", "Display this help">;
7 def : F<"h", "Alias for --help">, Alias<help>;
8 def version : F<"version", "Display the version of this program">;
10 def execFileNames : S<"e", "Specify the executable/library files to get the list of *.dwo from.">, MetaVarName<"<filename>">;
11 def outputFileName : S<"o", "Specify the output file.">, MetaVarName<"<filename>">;
12 def continueOnCuIndexOverflow: F<"continue-on-cu-index-overflow", "This turns an error when offset for .debug_*.dwo sections "
13 "overfolws into a warning.">, MetaVarName<"<filename>">;