diff options
Diffstat (limited to 'lib/ToolDrivers/llvm-lib/Options.td')
-rw-r--r-- | lib/ToolDrivers/llvm-lib/Options.td | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/ToolDrivers/llvm-lib/Options.td b/lib/ToolDrivers/llvm-lib/Options.td index 5a56ef7468d4..dd41952b7878 100644 --- a/lib/ToolDrivers/llvm-lib/Options.td +++ b/lib/ToolDrivers/llvm-lib/Options.td @@ -12,7 +12,11 @@ class P<string name, string help> : def libpath: P<"libpath", "Object file search path">; def out : P<"out", "Path to file to write output">; -def llvmlibthin : F<"llvmlibthin">; +def llvmlibthin : F<"llvmlibthin">, + HelpText<"Make .lib point to .obj files instead of copying their contents">; + +def help : F<"help">; +def help_q : Flag<["/?", "-?"], "">, Alias<help>; //============================================================================== // The flags below do nothing. They are defined only for lib.exe compatibility. |