From: Dave Korn Date: Thu, 10 Mar 2011 10:26:26 +0000 (+0000) Subject: [PATCH] Fix issue from GCC PR47527: no ELF flags, EABI attribs, etc. in dummy IR... X-Git-Tag: cgen-snapshot-20110401~315 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=422b6f14400e65d70cf20cde6140bd563cf493ee;p=external%2Fbinutils.git [PATCH] Fix issue from GCC PR47527: no ELF flags, EABI attribs, etc. in dummy IR BFD. ld/ChangeLog: 2011-03-10 Dave Korn * ldlang.c (lang_check): Don't run checks on dummy IR BFDs. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 07dbcee..8283bec 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,9 @@ 2011-03-10 Dave Korn + * ldlang.c (lang_check): Don't run checks on dummy IR BFDs. + +2011-03-10 Dave Korn + * ldlang.h (lang_input_statement_type): Add new 'claim_archive' flag, wrapping both it and 'claim' flag in #ifdef ENABLE_PLUGINS. * ldmain.c (add_archive_element): Set it if the member is claimed. diff --git a/ld/ldlang.c b/ld/ldlang.c index d43aa23..76b02f4 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -5754,6 +5754,11 @@ lang_check (void) for (file = file_chain.head; file != NULL; file = file->input_statement.next) { +#ifdef ENABLE_PLUGINS + /* Don't check format of files claimed by plugin. */ + if (file->input_statement.claimed) + continue; +#endif /* ENABLE_PLUGINS */ input_bfd = file->input_statement.the_bfd; compatible = bfd_arch_get_compatible (input_bfd, link_info.output_bfd,