From: Nick Clifton Date: Fri, 15 Sep 2006 09:48:58 +0000 (+0000) Subject: PR ld/3107 X-Git-Tag: gdb_6_6-2006-11-15-branchpoint~480 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=99643f697ed692215488dd72f36eb3d82fd2c2ac;p=thirdparty%2Fbinutils-gdb.git PR ld/3107 * ldlang.c (lang_size_sections_1): Do not abort when encountering a non-empty section that is ignored. Instead produce a warning message. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 81519124fb5..dab46921e02 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,10 @@ +2006-09-15 Nick Clifton + + PR ld/3107 + * ldlang.c (lang_size_sections_1): Do not abort when encountering + a non-empty section that is ignored. Instead produce a warning + message. + 2006-09-08 H.J. Lu * ld.texinfo: Document --dynamic-list-cpp-typeinfo. diff --git a/ld/ldlang.c b/ld/ldlang.c index bd9fd89a528..8b6cbd2d64c 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -4367,7 +4367,18 @@ lang_size_sections_1 os->processed_vma = TRUE; if (bfd_is_abs_section (os->bfd_section) || os->ignored) - ASSERT (os->bfd_section->size == 0); + { + if (os->bfd_section->size > 0) + { + /* PR ld/3107: Do not abort when a buggy linker script + causes a non-empty section to be discarded. */ + if (bfd_is_abs_section (os->bfd_section)) + einfo (_("%P%X: internal error: attempting to take the size of the non-section *ABS*\n")); + else + einfo (_("%P: warning: discarding non-empty, well known section %A\n"), + os->bfd_section); + } + } else { dot = os->bfd_section->vma;