Skip to content

Commit 9e1fb40

Browse files
committed
Tmp logging to debug win build
1 parent 50d609a commit 9e1fb40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wilco/src/buildconfigurator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void BuildConfigurator::collectCommands(Environment& env, std::vector<CommandEnt
5959
}
6060
if (!command.rspFile.empty() && command.command.find("@" + str::quote(command.rspFile.string())) == std::string::npos)
6161
{
62-
throw std::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+
throw std::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 + "')");
6363
}
6464
collectedCommands.push_back(command);
6565
}

0 commit comments

Comments
 (0)