Files
minix/external/bsd/llvm/dist/lld/lib/Driver/UniversalDriverOptions.td
sambuc b6f76b8fb2 Initial import of lld
Change-Id: I3ba67eaea52b3a6670b70203cd4d98a3c9c41a46
2018-03-26 17:39:11 +02:00

17 lines
429 B
TableGen

include "llvm/Option/OptParser.td"
// Select an optional flavor
def flavor: Separate<["-"], "flavor">,
HelpText<"Flavor for linking, options are gnu/darwin/link">;
// Select the core flavor
def core : Flag<["-"], "core">,
HelpText<"CORE linking">;
def target: Separate<["-"], "target">,
HelpText<"Select the target">;
// Help message
def help : Flag<["-"], "help">,
HelpText<"Display this help message">;