LibDriver: implement /libpath and $LIB; ignore /ignore and /machine.
[oota-llvm.git] / lib / LibDriver / Options.td
1 include "llvm/Option/OptParser.td"
2
3 // lib.exe accepts options starting with either a dash or a slash.
4
5 // Flag that takes no arguments.
6 class F<string name> : Flag<["/", "-", "-?"], name>;
7
8 // Flag that takes one argument after ":".
9 class P<string name, string help> :
10       Joined<["/", "-", "-?"], name#":">, HelpText<help>;
11
12 def libpath: P<"libpath", "Object file search path">;
13 def out    : P<"out", "Path to file to write output">;
14
15 //==============================================================================
16 // The flags below do nothing. They are defined only for lib.exe compatibility.
17 //==============================================================================
18
19 class QF<string name> : Joined<["/", "-", "-?"], name#":">;
20
21 def ignore : QF<"ignore">;
22 def machine: QF<"machine">;
23 def nologo : F<"nologo">;