From 4fb3a1c35a8a796104f36e61ea465e94f27e2db8 Mon Sep 17 00:00:00 2001 From: Cary Coutant Date: Thu, 9 Jun 2011 18:18:44 +0000 Subject: PR gold/12804 * gold/gold.cc (queue_initial_tasks): Warn if --incremental is used with --compress-debug-sections. * gold/object.cc (Sized_relobj_file::do_layout): Report uncompressed size of compressed input sections. --- gold/gold.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gold/gold.cc') diff --git a/gold/gold.cc b/gold/gold.cc index 95c226c5dd5..f68ba3e71f1 100644 --- a/gold/gold.cc +++ b/gold/gold.cc @@ -200,6 +200,9 @@ queue_initial_tasks(const General_options& options, gold_error(_("incremental linking is incompatible with --icf")); if (options.has_plugins()) gold_error(_("incremental linking is incompatible with --plugin")); + if (strcmp(options.compress_debug_sections(), "none") != 0) + gold_error(_("incremental linking is incompatible with " + "--compress-debug-sections")); if (parameters->incremental_update()) { -- cgit v1.2.1