================
@@ -273,6 +273,18 @@ void CommandMangler::operator()(tooling::CompileCommand
&Command,
SawInput(Cmd[I]);
Cmd.resize(DashDashIndex);
}
+
+ std::string UnsupportedArguments;
+ for (auto *UnknownArg : ArgList.filtered(options::OPT_UNKNOWN)) {
+ unsigned Index = UnknownArg->getIndex();
+ UnsupportedArguments += OriginalArgs[Index + 1];
+ UnsupportedArguments += ", ";
+ IndicesToDrop.push_back(Index);
+ }
+ if (UnsupportedArguments.length() != 0) {
+ UnsupportedArguments.pop_back();
+ UnsupportedArguments.pop_back();
+ }
----------------
Decodetalkers wrote:
Ok!, done
https://github.com/llvm/llvm-project/pull/200001
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits