StripOpts.td 641 B

1234567891011121314151617181920
  1. include "CommonOpts.td"
  2. def output : JoinedOrSeparate<["-"], "o">, HelpText<"Write output to <file>">,
  3. MetaVarName<"<file>">;
  4. def s : Flag<["-"], "s">,
  5. Alias<strip_all>,
  6. HelpText<"Alias for --strip-all">;
  7. def no_strip_all : Flag<["--"], "no-strip-all">,
  8. HelpText<"Disable --strip-all">;
  9. def d : Flag<["-"], "d">,
  10. Alias<strip_debug>,
  11. HelpText<"Alias for --strip-debug">;
  12. def S : Flag<["-"], "S">,
  13. Alias<strip_debug>,
  14. HelpText<"Alias for --strip-debug">;
  15. def strip_swift_symbols : Flag<["-"], "T">,
  16. HelpText<"Remove Swift symbols">;