* incremental.cc (Sized_incremental_binary::do_check_inputs): Add
debug output when command lines differ.
This commit is contained in:
parent
9fbd3822ad
commit
8f7c81e876
@ -1,3 +1,8 @@
|
|||||||
|
2011-07-06 Cary Coutant <ccoutant@google.com>
|
||||||
|
|
||||||
|
* incremental.cc (Sized_incremental_binary::do_check_inputs): Add
|
||||||
|
debug output when command lines differ.
|
||||||
|
|
||||||
2011-07-06 Cary Coutant <ccoutant@google.com>
|
2011-07-06 Cary Coutant <ccoutant@google.com>
|
||||||
|
|
||||||
* incremental.cc (Incremental_inputs::report_command_line): Ignore
|
* incremental.cc (Incremental_inputs::report_command_line): Ignore
|
||||||
|
@ -393,6 +393,12 @@ Sized_incremental_binary<size, big_endian>::do_check_inputs(
|
|||||||
|
|
||||||
if (incremental_inputs->command_line() != inputs.command_line())
|
if (incremental_inputs->command_line() != inputs.command_line())
|
||||||
{
|
{
|
||||||
|
gold_debug(DEBUG_INCREMENTAL,
|
||||||
|
"old command line: %s",
|
||||||
|
inputs.command_line());
|
||||||
|
gold_debug(DEBUG_INCREMENTAL,
|
||||||
|
"new command line: %s",
|
||||||
|
incremental_inputs->command_line().c_str());
|
||||||
explain_no_incremental(_("command line changed"));
|
explain_no_incremental(_("command line changed"));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user