mirror of
https://github.com/rui314/mold.git
synced 2024-12-28 02:44:48 +03:00
10 lines
275 B
TableGen
10 lines
275 B
TableGen
include "llvm/Option/OptParser.td"
|
|
|
|
class F<string name>: Flag<["--", "-"], name>;
|
|
|
|
def o: JoinedOrSeparate<["-"], "o">, MetaVarName<"<path>">,
|
|
HelpText<"Path to file to write output">;
|
|
|
|
def print_map: F<"print-map">,
|
|
HelpText<"Print a link map to the standard output">;
|