From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9752 invoked by alias); 5 Feb 2002 15:41:18 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 9698 invoked from network); 5 Feb 2002 15:41:16 -0000 Received: from unknown (HELO localhost.redhat.com) (24.114.26.18) by sources.redhat.com with SMTP; 5 Feb 2002 15:41:16 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 659173E57; Tue, 5 Feb 2002 10:41:16 -0500 (EST) Message-ID: <3C5FFD1C.3060304@cygnus.com> Date: Tue, 05 Feb 2002 07:41:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.7) Gecko/20020103 X-Accept-Language: en-us MIME-Version: 1.0 To: Richard.Earnshaw@arm.com Cc: gdb@sources.redhat.com Subject: Re: Multi-arching FLOAT_INFO References: <200202051033.KAA29418@cam-mail2.cambridge.arm.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-02/txt/msg00101.txt.bz2 > + void > + default_float_info (void) > + { > + #ifdef FLOAT_INFO > + #if GDB_MULTI_ARCH > + #error "FLOAT_INFO defined in multi-arch" Suggest #if GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL Otherwise it will break the build of someone elses partially multi-arched target. > + #endif > + FLOAT_INFO; > + #else > + printf_filtered ("No floating point info available for this processor.\n"); > + #endif > + } Otherwize yes. Andrew