File: LipoOpts.td

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (60 lines) | stat: -rw-r--r-- 2,450 bytes parent folder | download | duplicates (13)
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
include "llvm/Option/OptParser.td"

def help : Flag<["-", "--"], "help">;
def h : Flag<["-"], "h">, Alias<help>;

def version : Flag<["-", "--"], "version">,
              HelpText<"Print the version and exit.">;

def segalign
    : MultiArg<["-", "--"], "segalign", 2>,
      HelpText<"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.">;

def arch
    : MultiArg<["-", "--"], "arch", 2>,
      HelpText<"Specifies the architecture and the corresponding input file">;

def action_group : OptionGroup<"action group">;

def verify_arch
    : Option<["-", "--"], "verify_arch", KIND_REMAINING_ARGS>,
      Group<action_group>,
      HelpText<
          "Verify that the specified arch_types are present in the input file">;

def archs : Option<["-", "--"], "archs", KIND_FLAG>,
            Group<action_group>,
            HelpText<"Display the arch_types present in the input file">;

def info : Option<["-", "--"], "info", KIND_FLAG>,
           Group<action_group>,
           HelpText<"Display descriptions of each input file including "
                    "filename and arch_types. Groups universal binaries "
                    "together followed by thin files">;

def thin : Option<["-", "--"], "thin", KIND_SEPARATE>,
           Group<action_group>,
           HelpText<"Create a thin output file of specified arch_type from the "
                    "fat input file. Requires -output option">;

def extract : Option<["-", "--"], "extract", KIND_SEPARATE>,
           Group<action_group>,
           HelpText<"Create a universal output file containing only the specified "
                    "arch_type from the fat input file. Requires -output option">;

def create : Option<["-", "--"], "create", KIND_FLAG>,
             Group<action_group>,
             HelpText<"Create a universal binary output file from the input "
                      "files. Requires -output option">;

def replace
    : MultiArg<["-", "--"], "replace", 2>,
      Group<action_group>,
      HelpText<"Replace the specified arch type with the contents of the "
               "input_file in a universal binary. Requires -output option">;

def output : Option<["-", "--"], "output", KIND_SEPARATE>,
             HelpText<"Create output file with specified name">;
def o : JoinedOrSeparate<["-"], "o">, Alias<output>;