Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
MinGW/Driver.cpp | ||
---|---|---|
162–163 ↗ | (On Diff #114690) | Can this appear more than once? |
MinGW/Driver.cpp | ||
---|---|---|
162–163 ↗ | (On Diff #114690) | Yes, both ELF/Driver.cpp and COFF/Driver.cpp handle it like this std::vector<const char *> V; V.push_back("lld-link (LLVM option parsing)"); for (auto *Arg : Args.filtered(OPT_mllvm)) V.push_back(Arg->getValue()); cl::ParseCommandLineOptions(V.size(), V.data()); |