* gold.cc (queue_initial_tasks): Pass incremental base filename
to Output_file::open_base_file; don't print error message. * incremental-dump.cc (main): Adjust call to Output_file::open_for_modification. * incremental-dump.cc (main): Likewise. * incremental.cc (Incremental_inputs::report_command_line): Ignore --incremental-base option when comparing command lines. Ignore parameter when given as separate argument. * options.h (class General_options): Add --incremental-base. * output.cc (Output_file::Output_file): (Output_file::open_base_file): Add base_name and writable parameters; read base file into new file; print error message here. (Output_file::map_no_anonymous): Add writable parameter; adjust all callers. * output.h (Output_file::open_for_modification): Rename to... (Output_file::open_base_file): ...this; add base_name and writable parameters; adjust all callers. (Output_file::map_no_anonymous): Add writable parameter; adjust all callers. * testsuite/Makefile.am (incremental_test_4): Test --incremental-base. * testsuite/Makefile.in: Regenerate.
This commit is contained in:
parent
2eedd7063f
commit
aa92d6edc4
9 changed files with 119 additions and 30 deletions
|
@ -861,8 +861,17 @@ Incremental_inputs::report_command_line(int argc, const char* const* argv)
|
|||
|| strcmp(argv[i], "--incremental-changed") == 0
|
||||
|| strcmp(argv[i], "--incremental-unchanged") == 0
|
||||
|| strcmp(argv[i], "--incremental-unknown") == 0
|
||||
|| is_prefix_of("--incremental-base=", argv[i])
|
||||
|| is_prefix_of("--debug=", argv[i]))
|
||||
continue;
|
||||
if (strcmp(argv[i], "--incremental-base") == 0
|
||||
|| strcmp(argv[i], "--debug") == 0)
|
||||
{
|
||||
// When these options are used without the '=', skip the
|
||||
// following parameter as well.
|
||||
++i;
|
||||
continue;
|
||||
}
|
||||
|
||||
args.append(" '");
|
||||
// Now append argv[i], but with all single-quotes escaped
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue