Skip to content

Commit 2654c30

Browse files
committed
[LDC] LLD: Avoid parsing -mllvm* command-line options if there aren't any
When invoking the integrated LLD from LDC, it somehow uses a different global LLVM command-line parser, one with no registered options, so parsing is guaranteed to fail, even if there are no args. [It's only needed for LTO codegen options anyway.]
1 parent ab51ecc commit 2654c30

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lld/COFF/Driver.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,7 @@ void LinkerDriver::linkerMain(ArrayRef<const char *> argsArr) {
14571457
v.push_back(arg->getValue());
14581458
config->mllvmOpts.emplace_back(arg->getValue());
14591459
}
1460-
{
1460+
if (v.size() > 1) {
14611461
llvm::TimeTraceScope timeScope2("Parse cl::opt");
14621462
cl::ResetAllOptionOccurrences();
14631463
cl::ParseCommandLineOptions(v.size(), v.data());

lld/wasm/Driver.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -1214,8 +1214,10 @@ void LinkerDriver::linkerMain(ArrayRef<const char *> argsArr) {
12141214
v.push_back("wasm-ld (LLVM option parsing)");
12151215
for (auto *arg : args.filtered(OPT_mllvm))
12161216
v.push_back(arg->getValue());
1217-
cl::ResetAllOptionOccurrences();
1218-
cl::ParseCommandLineOptions(v.size(), v.data());
1217+
if (v.size() > 1) {
1218+
cl::ResetAllOptionOccurrences();
1219+
cl::ParseCommandLineOptions(v.size(), v.data());
1220+
}
12191221

12201222
readConfigs(args);
12211223
setConfigs();

0 commit comments

Comments
 (0)