annotate tools/llvm-mt/Opts.td @ 122:36195a0db682

merging ( incomplete )
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 17 Nov 2017 20:32:31 +0900
parents 803732b1fca8
children c2174574ed3a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
121
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
1 include "llvm/Option/OptParser.td"
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
2
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
3 def unsupported : OptionGroup<"unsupported">;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
4 def manifest : Separate<["/", "-"], "manifest">, HelpText<"Used to specify each manifest that need to be processed">, MetaVarName<"manifest">;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
5 def identity : Joined<["/", "-"], "identity:">, HelpText<"Not supported">, MetaVarName<"identity">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
6 def rgs : Joined<["/", "-"], "rgs:">, HelpText<"Not supported">, MetaVarName<"script">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
7 def tlb : Joined<["/", "-"], "tlb:">, HelpText<"Not supported">, MetaVarName<"file">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
8 def dll : Joined<["/", "-"], "dll:">, HelpText<"Not supported">, MetaVarName<"dll">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
9 def replacements : Joined<["/", "-"], "replacements:">, HelpText<"Not supported">, MetaVarName<"file">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
10 def managed_assembly_name : Joined<["/", "-"], "managedassemblyname:">, HelpText<"Not supported">, MetaVarName<"assembly">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
11 def no_dependency : Flag<["/", "-"], "nodependency">, HelpText<"Not supported">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
12 def category : Flag<["/", "-"], "category">, HelpText<"Not supported">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
13 def no_logo : Flag<["/", "-"], "nologo">, HelpText<"No effect as this tool never writes copyright data. Included for parity">;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
14 def out : Joined<["/", "-"], "out:">, HelpText<"Name of the output manifest. If this is skipped and only one manifest is being operated upon by the tool, that manifest is modified in place">, MetaVarName<"manifest">;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
15 def input_resource : Joined<["/", "-"], "inputresource:">, HelpText<"Not supported">, MetaVarName<"file">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
16 def output_resource : Joined<["/", "-"], "outputresource:">, HelpText<"Not supported">, MetaVarName<"file">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
17 def output_resource_flag : Flag<["/", "-"], "outputresource">, Alias<output_resource>, HelpText<"Not supported">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
18 def update_resource : Joined<["/", "-"], "updateresource:">, HelpText<"Not supported">, MetaVarName<"file">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
19 def hash_update : Joined<["/", "-"], "hashupdate:">, HelpText<"Not supported">, MetaVarName<"file">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
20 def hash_update_flag : Flag<["/", "-"], "hashupdate">, Alias<hash_update>, HelpText<"Not supported">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
21 def validate_manifest : Flag<["/", "-"], "validate_manifest">, HelpText<"Not supported">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
22 def validate_file_hashes : Joined<["/", "-"], "validate_file_hashes:">, HelpText<"Not supported">, MetaVarName<"">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
23 def canonicalize : Flag<["/", "-"], "canonicalize:">, HelpText<"Not supported">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
24 def check_for_duplicates : Flag<["/", "-"], "check_for_duplicates:">, HelpText<"Not supported">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
25 def make_cdfs : Flag<["/", "-"], "makecdfs:">, HelpText<"Not supported">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
26 def verbose : Flag<["/", "-"], "verbose">, HelpText<"Not supported">, Group<unsupported>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
27 def help : Flag<["/", "-"], "?">;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
28 def help_long : Flag<["/", "-"], "help">, Alias<help>;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
29 def h : Flag<["/", "-"], "h">, Alias<help>;