From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10330 invoked by alias); 16 Feb 2011 16:51:49 -0000 Received: (qmail 10321 invoked by uid 22791); 16 Feb 2011 16:51:47 -0000 X-SWARE-Spam-Status: No, hits=-6.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 16 Feb 2011 16:51:42 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p1GGpeSW007930 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 16 Feb 2011 11:51:40 -0500 Received: from anchor.twiddle.home (ovpn-113-82.phx2.redhat.com [10.3.113.82]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p1GGpdNM018376; Wed, 16 Feb 2011 11:51:40 -0500 Message-ID: <4D5C009B.7050409@redhat.com> Date: Wed, 16 Feb 2011 16:51:00 -0000 From: Richard Henderson User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Fedora/3.1.7-0.35.b3pre.fc14 Thunderbird/3.1.7 MIME-Version: 1.0 To: =?UTF-8?B?UGV0ciBIbHV6w61u?= CC: Anitha Boyapati , binutils@sourceware.org Subject: Re: Testing Call frame information in .debug_frame section References: <4D5ABAB2.2000405@redhat.com> <4D5ABFAC.7050804@redhat.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes 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/msg00189.txt.bz2 On 02/15/2011 02:13 PM, Petr Hluzín wrote: > Note: The submitted code code does not print the platform GAS is > configured for. If makefile/IDE is accidentally launching wrong build > of GAS then user will have hard time figuring this out. If it is not > an accident then the extra information is useful for googling since > recovery steps may be different. ("CFI on arch FOO? You have to > upgrade to version XY" vs "CFI on arch BAR? You have to apply this > patch.") > > -as_bad (_("CFI is not supported for this target")); > +as_bad (_("CFI is not supported for target '" TARGET_FORMAT "'")); String substitution doesn't work for i18n. We could have put it in a %s argument, but no other error message in gas includes this info; I can't see why we need to use it here. > Also "intelligable" looks like a typo. Perhaps "intelligible"? Oops. Fixing. r~