You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!command.rspFile.empty() && command.command.find("@" + str::quote(command.rspFile.string())) == std::string::npos)
61
61
{
62
-
throwstd::runtime_error("Command '" + command.description + "' in project " + project.name + " has rspFile set but no corresponding @rspFile in the command string. Currently @\"quoted/path\" is the only supported rsp file flag format, and path must be lexically identical to rspFile.");
62
+
throwstd::runtime_error("Command '" + command.description + "' in project " + project.name + " has rspFile set but no corresponding @rspFile in the command string. Currently @\"quoted/path\" is the only supported rsp file flag format, and path must be lexically identical to rspFile.\n\n(Tried to find '" + str::quote(command.rspFile.string()) + "' in '" + command.command + "')");
0 commit comments