Lines Matching refs:cl
48 llvm::cl::list<std::string>
49 OptInputFilenames(llvm::cl::Positional, llvm::cl::OneOrMore,
50 llvm::cl::desc("<input bitcode files>"));
52 llvm::cl::opt<std::string>
53 OptOutputFilename("o", llvm::cl::desc("Specify the output filename"),
54 llvm::cl::value_desc("filename"));
56 llvm::cl::opt<std::string>
57 OptRuntimePath("rt-path", llvm::cl::desc("Specify the runtime library path"),
58 llvm::cl::value_desc("path"));
60 llvm::cl::opt<std::string>
62 llvm::cl::desc("Specify the target triple (default: "
64 llvm::cl::init(DEFAULT_TARGET_TRIPLE_STRING),
65 llvm::cl::value_desc("triple"));
67 llvm::cl::alias OptTargetTripleC("C", llvm::cl::NotHidden,
68 llvm::cl::desc("Alias for -mtriple"),
69 llvm::cl::aliasopt(OptTargetTriple));
74 llvm::cl::opt<bool>
75 OptPIC("fPIC", llvm::cl::desc("Generate fully relocatable, position independent"
78 llvm::cl::opt<char>
79 OptOptLevel("O", llvm::cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
81 llvm::cl::Prefix, llvm::cl::ZeroOrMore, llvm::cl::init('2'));
83 llvm::cl::opt<bool>
84 OptC("c", llvm::cl::desc("Compile and assemble, but do not link."));
92 llvm::cl::opt<std::string>
93 OptImmObjectOutput("or", llvm::cl::desc("Specify the filename for output the "
96 "library"), llvm::cl::ValueRequired);
98 llvm::cl::opt<bool>
99 OptShared("shared", llvm::cl::desc("Create a shared library from input bitcode "
117 const llvm::cl::list<std::string> &pBitcodeFiles) { in PrepareRSScript()
254 llvm::cl::SetVersionPrinter(BCCVersionPrinter); in main()
255 llvm::cl::ParseCommandLineOptions(argc, argv); in main()