From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24105 invoked by alias); 26 Feb 2011 00:46:42 -0000 Received: (qmail 24081 invoked by uid 22791); 26 Feb 2011 00:46:41 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-wy0-f169.google.com (HELO mail-wy0-f169.google.com) (74.125.82.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 26 Feb 2011 00:46:35 +0000 Received: by wyi11 with SMTP id 11so2569522wyi.0 for ; Fri, 25 Feb 2011 16:46:33 -0800 (PST) Received: by 10.227.135.129 with SMTP id n1mr2726345wbt.19.1298681192841; Fri, 25 Feb 2011 16:46:32 -0800 (PST) Received: from [192.168.2.99] (cpc2-cmbg8-0-0-cust61.5-4.cable.virginmedia.com [82.6.108.62]) by mx.google.com with ESMTPS id x1sm1031560wbh.2.2011.02.25.16.46.31 (version=SSLv3 cipher=OTHER); Fri, 25 Feb 2011 16:46:32 -0800 (PST) Message-ID: <4D684D55.1090106@gmail.com> Date: Sat, 26 Feb 2011 00:46:00 -0000 From: Dave Korn User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: "binutils@sourceware.org" Subject: [4/6][PATCH] Fix issue from GCC PR47527: no ELF flags, EABI attribs, etc. in dummy IR BFD. References: <4D684CB8.6020106@gmail.com> <4D684D00.70803@gmail.com> In-Reply-To: <4D684D00.70803@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2011-02/txt/msg00332.txt.bz2 Hi list, The dummy IR BFDs added by the plugin API don't have any format-specific contents, such as ELF attributes and ARM EABI versions. This was causing lang_check to barf on imaginary merging problems; avoided by not performing the checks on IR files. ld/ChangeLog: 2011-02-20 Dave Korn <... * ldlang.c (lang_check): Don't run checks on dummy IR BFDs. cheers, DaveK