1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/tools/llvm-lipo/LipoOpts.td
Shoaib Meenai 3f57cf86fc Revert [llvm-lipo] Implement -create (with hardcoded alignments)
This reverts r366142 (git commit 67cee1dc7ee285b03372eb818a3894d35efa7394)

The test is failing on the Windows buildbots. Reverting while I
investigate.

llvm-svn: 366144
2019-07-15 22:44:08 +00:00

29 lines
1.0 KiB
TableGen

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