]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/llvm/tools/llvm-objcopy/StripOpts.td
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm-project / llvm / tools / llvm-objcopy / StripOpts.td
1 include "CommonOpts.td"
2
3 def output : JoinedOrSeparate<["-"], "o">, HelpText<"Write output to <file>">,
4              MetaVarName<"<file>">;
5
6 def s : Flag<["-"], "s">,
7         Alias<strip_all>,
8         HelpText<"Alias for --strip-all">;
9 def no_strip_all : Flag<["--"], "no-strip-all">,
10                    HelpText<"Disable --strip-all">;
11
12 def d : Flag<["-"], "d">,
13         Alias<strip_debug>,
14         HelpText<"Alias for --strip-debug">;
15 def S : Flag<["-"], "S">,
16         Alias<strip_debug>,
17         HelpText<"Alias for --strip-debug">;