xref: /freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/StripOpts.td (revision 8bcb0991864975618c09697b1aca10683346d9f0)
1*8bcb0991SDimitry Andricinclude "CommonOpts.td"
20b57cec5SDimitry Andric
3*8bcb0991SDimitry Andricdef output : JoinedOrSeparate<["-"], "o">, HelpText<"Write output to <file>">,
4*8bcb0991SDimitry Andric             MetaVarName<"<file>">;
50b57cec5SDimitry Andric
6*8bcb0991SDimitry Andricdef s : Flag<["-"], "s">,
7*8bcb0991SDimitry Andric        Alias<strip_all>,
8*8bcb0991SDimitry Andric        HelpText<"Alias for --strip-all">;
90b57cec5SDimitry Andricdef no_strip_all : Flag<["--"], "no-strip-all">,
100b57cec5SDimitry Andric                   HelpText<"Disable --strip-all">;
110b57cec5SDimitry Andric
12*8bcb0991SDimitry Andricdef d : Flag<["-"], "d">,
13*8bcb0991SDimitry Andric        Alias<strip_debug>,
14*8bcb0991SDimitry Andric        HelpText<"Alias for --strip-debug">;
15*8bcb0991SDimitry Andricdef S : Flag<["-"], "S">,
16*8bcb0991SDimitry Andric        Alias<strip_debug>,
17*8bcb0991SDimitry Andric        HelpText<"Alias for --strip-debug">;
18