tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
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
include "llvm/Option/OptParser.td"
 
multiclass Eq<string name> {
  def NAME: Separate<["--", "-"], name>;
  def NAME # _eq: Joined<["--", "-"], name # "=">, Alias<!cast<Separate>(NAME)>;
}
 
def help : Flag<["-", "--"], "help">;
 
defm output : Eq<"o">,
              MetaVarName<"output">,
              HelpText<"Write output to <file>">;
 
def strip_all : Flag<["-", "--"], "strip-all">,
                HelpText<"Remove non-allocated sections other than .gnu.warning* sections">;
 
def strip_debug : Flag<["-", "--"], "strip-debug">,
                  HelpText<"Remove debugging symbols only">;
 
def d : Flag<["-"], "d">,
        Alias<strip_debug>;
 
def g : Flag<["-"], "g">,
        Alias<strip_debug>;
 
def S : Flag<["-"], "S">,
        Alias<strip_debug>;
 
defm remove_section : Eq<"remove-section">,
                      MetaVarName<"section">,
                      HelpText<"Remove <section>">;
 
def R : JoinedOrSeparate<["-"], "R">,
        Alias<remove_section>;
 
defm keep_symbol : Eq<"keep-symbol">,
                   MetaVarName<"symbol">,
                   HelpText<"Do not remove symbol <symbol>">;
 
def K : JoinedOrSeparate<["-"], "K">,
        Alias<keep_symbol>;
 
def discard_all : Flag<["-", "--"], "discard-all">,
                  HelpText<"Remove all local symbols except file and section symbols">;
def x : Flag<["-"], "x">,
        Alias<discard_all>;
 
def strip_unneeded : Flag<["-", "--"], "strip-unneeded">,
                      HelpText<"Remove all symbols not needed by relocations">;