debug output when command lines differ.
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>
+
* incremental.cc (Incremental_inputs::report_command_line): Ignore
--incremental-patch option.
* layout.cc (Free_list::allocate): Extend allocation beyond original
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"));
return false;
}