1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|* *|
|* Option Parsing Definitions *|
|* *|
|* Automatically generated file, do not edit! *|
|* *|
\*===----------------------------------------------------------------------===*/
/////////
// Prefixes
#ifdef PREFIX
#define COMMA ,
PREFIX(prefix_0, {nullptr})
PREFIX(prefix_2, {"-" COMMA nullptr})
PREFIX(prefix_1, {"-" COMMA "--" COMMA nullptr})
#undef COMMA
#endif // PREFIX
/////////
// Groups
#ifdef OPTION
OPTION(nullptr, "action group", action_group, Group, INVALID, INVALID, nullptr, 0, 0, nullptr, nullptr, nullptr)
//////////
// Options
OPTION(prefix_0, "<input>", INPUT, Input, INVALID, INVALID, nullptr, 0, 0, nullptr, nullptr, nullptr)
OPTION(prefix_0, "<unknown>", UNKNOWN, Unknown, INVALID, INVALID, nullptr, 0, 0, nullptr, nullptr, nullptr)
OPTION(prefix_1, "archs", archs, Flag, action_group, INVALID, nullptr, 0, 0,
"Display the arch_types present in the input file", nullptr, nullptr)
OPTION(prefix_1, "arch", arch, MultiArg, INVALID, INVALID, nullptr, 0, 2,
"Specifies the architecture and the corresponding input file", nullptr, nullptr)
OPTION(prefix_1, "create", create, Flag, action_group, INVALID, nullptr, 0, 0,
"Create a universal binary output file from the input files. Requires -output option", nullptr, nullptr)
OPTION(prefix_1, "help", help, Flag, INVALID, INVALID, nullptr, 0, 0, nullptr, nullptr, nullptr)
OPTION(prefix_2, "h", h, Flag, INVALID, help, nullptr, 0, 0, nullptr, nullptr, nullptr)
OPTION(prefix_1, "info", info, Flag, action_group, INVALID, nullptr, 0, 0,
"Display descriptions of each input file including filename and arch_types. Groups universal binaries together followed by thin files", nullptr, nullptr)
OPTION(prefix_1, "output", output, Separate, INVALID, INVALID, nullptr, 0, 0,
"Create output file with specified name", nullptr, nullptr)
OPTION(prefix_2, "o", o, JoinedOrSeparate, INVALID, output, nullptr, 0, 0, nullptr, nullptr, nullptr)
OPTION(prefix_1, "replace", replace, MultiArg, action_group, INVALID, nullptr, 0, 2,
"Replace the specified arch type with the contents of the input_file in a universal binary. Requires -output option", nullptr, nullptr)
OPTION(prefix_1, "segalign", segalign, MultiArg, INVALID, INVALID, nullptr, 0, 2,
"Specifies the segment alignment for the specified architecture when creating a universal binary file. The alignment is a hexadecimal number that is a power of 2.", nullptr, nullptr)
OPTION(prefix_1, "thin", thin, Separate, action_group, INVALID, nullptr, 0, 0,
"Create a thin output file of specified arch_type from the fat input file. Requires -output option", nullptr, nullptr)
OPTION(prefix_1, "verify_arch", verify_arch, RemainingArgs, action_group, INVALID, nullptr, 0, 0,
"Verify that the specified arch_types are present in the input file", nullptr, nullptr)
OPTION(prefix_1, "version", version, Flag, INVALID, INVALID, nullptr, 0, 0,
"Print the version and exit.", nullptr, nullptr)
#endif // OPTION
#ifdef OPTTABLE_ARG_INIT
//////////
// Option Values
#endif // OPTTABLE_ARG_INIT
|