diff options
Diffstat (limited to 'gold/main.cc')
-rw-r--r-- | gold/main.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gold/main.cc b/gold/main.cc index 2985a84..c2d3c30 100644 --- a/gold/main.cc +++ b/gold/main.cc @@ -44,6 +44,7 @@ #include "layout.h" #include "plugin.h" #include "gc.h" +#include "incremental.h" using namespace gold; @@ -219,6 +220,9 @@ main(int argc, char** argv) Layout layout(command_line.number_of_input_files(), &command_line.script_options()); + if (layout.incremental_inputs() != NULL) + layout.incremental_inputs()->report_command_line(argc, argv); + // Get the search path from the -L options. Dirsearch search_path; search_path.initialize(&workqueue, &command_line.options().library_path()); |