mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
032a6ec198
This marks the beginning of an effort to port remaining MSVC toolchain miscellaneous utilities to all platforms. Currently clang-cl shells out to certain additional tools such as the IDL compiler, resource compiler, and a few other tools, but as these tools are Windows-only it limits the ability of clang to target Windows on other platforms. having a full suite of these tools directly in LLVM should eliminate this constraint. The current implementation provides no actual functionality, it is just an empty skeleton executable for the purposes of making incremental changes. Differential Revision: https://reviews.llvm.org/D32095 Patch by Eric Beckmann (ecbeckmann@google.com) llvm-svn: 301004
12 lines
560 B
TableGen
12 lines
560 B
TableGen
include "llvm/Option/OptParser.td"
|
|
|
|
def DEFINE : Joined<["/"], "DEFINE:">, HelpText<"">, MetaVarName<"symbol">;
|
|
def FOLDDUPS : Flag<["/"], "FOLDDUPS:">, HelpText<"">;
|
|
def MACHINE : Joined<["/"], "MACHINE:">, HelpText<"">, MetaVarName<"{ARM|EBC|IA64|X64|X86}">;
|
|
def NOLOGO : Flag<["/"], "NOLOGO">, HelpText<"">;
|
|
def OUT : Joined<["/"], "OUT:">, HelpText<"">, MetaVarName<"filename">;
|
|
def READONLY : Flag<["/"], "READONLY">, HelpText<"">;
|
|
def VERBOSE : Flag<["/"], "VERBOSE">, HelpText<"">;
|
|
def HELP : Flag<["/"], "HELP">;
|
|
def H : Flag<["/"], "H">, Alias<HELP>;
|