From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29920 invoked by alias); 31 Mar 2007 15:02:04 -0000 Received: (qmail 29674 invoked by uid 48); 31 Mar 2007 15:01:44 -0000 Date: Sat, 31 Mar 2007 15:02:00 -0000 Message-ID: <20070331150144.29673.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug bootstrap/31344] [4.3 Regression] bootstrap broken on i[345]86-linux In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "fxcoudert at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2007-03/txt/msg02849.txt.bz2 ------- Comment #15 from fxcoudert at gcc dot gnu dot org 2007-03-31 16:01 ------- This is a bootstrap breakage, and it's was reported almost a week ago. Can you please test and commit the trivial fix you suggested (disable decimal float for on i386-linux)? Then you'll have all time to investigate why the DFP code fails and other stuff. Index: configure.ac =================================================================== --- configure.ac (revision 123378) +++ configure.ac (working copy) @@ -680,7 +680,7 @@ ], [ case $target in - powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux*) + powerpc*-*-linux* | i686*-*-linux* | x86_64*-*-linux*) enable_decimal_float=yes ;; *) -- fxcoudert at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Component|target |bootstrap Known to fail| |4.3.0 Last reconfirmed|2007-03-26 11:55:08 |2007-03-31 16:01:43 date| | Summary|[4.3 Regression]: DFP isn't|[4.3 Regression] bootstrap |properly supported on x86 |broken on i[345]86-linux http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31344