[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / tools / llvm-ifs / Opts.td
blob7288cf0123a726208d25dd7d306cdc3ba68085ec
1 include "llvm/Option/OptParser.td"
3 class F<string letter, string help> : Flag<["-"], letter>, HelpText<help>;
4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
6 multiclass Eq<string name, string help> {
7   def NAME #_EQ : Joined<["--"], name #"=">, HelpText<help>;
8   def : Separate<["--"], name>, Alias<!cast<Joined>(NAME #_EQ)>;
11 defm arch : Eq<"arch", "Specify the architecture, e.g. x86_64">;
12 defm bitwidth : Eq<"bitwidth", "Specify the bit width">;
13 defm endianness : Eq<"endianness", "Specify the endianness">;
14 defm exclude : Eq<"exclude", "Remove symbols which match the pattern. Can be specified multiple times">;
15 def help : FF<"help", "Display this help">;
16 def : F<"h", "Alias for --help">, Alias<help>;
17 defm hint_ifs_target : Eq<"hint-ifs-target", "When --output-format is 'IFS', this flag will hint the expected target triple for IFS output">;
18 defm input : Eq<"input", "input">;
19 defm input_format : Eq<"input-format", "Specify the input file format">;
20 defm output : Eq<"output", "Output file **DEPRECATED**">;
21 def : Separate<["-"], "o">, HelpText<"Alias for --output">, Alias<output_EQ>;
22 defm output_elf : Eq<"output-elf", "Output path for ELF file">;
23 defm output_format : Eq<"output-format", "Specify the output file format **DEPRECATED**">;
24 defm output_ifs : Eq<"output-ifs", "Output path for IFS file">;
25 defm output_tbd : Eq<"output-tbd", "Output path for TBD file">;
26 defm soname : Eq<"soname", "name">;
27 def strip_ifs_arch : FF<"strip-ifs-arch", "Strip target architecture information away from IFS output">;
28 def strip_ifs_bitwidth : FF<"strip-ifs-bitwidth", "Strip target bit width information away from IFS output">;
29 def strip_ifs_endianness : FF<"strip-ifs-endianness", "Strip target endianness information away from IFS output">;
30 def strip_ifs_target : FF<"strip-ifs-target", "Strip all target information away from IFS output">;
31 def strip_needed : FF<"strip-needed", "Strip needed libs from output">;
32 def strip_size : FF<"strip-size", "Remove object size from the output">;
33 def strip_undefined : FF<"strip-undefined", "Strip undefined symbols from IFS output">;
34 defm target : Eq<"target", "Specify the target triple, e.g. x86_64-linux-gnu">;
35 def version : FF<"version", "Display the version">;
36 def : F<"V", "Alias for --version">, Alias<version>;
37 def write_if_changed : FF<"write-if-changed", "Write the output file only if it is new or has changed">;