From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2907 invoked by alias); 26 May 2008 07:16:51 -0000 Received: (qmail 2770 invoked by uid 48); 26 May 2008 07:16:04 -0000 Date: Mon, 26 May 2008 07:16:00 -0000 Message-ID: <20080526071604.2769.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug bootstrap/36331] [4.4 Regression]: Gcc failed to bootstrap In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "dfranke 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: 2008-05/txt/msg01905.txt.bz2 ------- Comment #3 from dfranke at gcc dot gnu dot org 2008-05-26 07:16 ------- Accidently removed the conditional definition of __GNUG__. This seems to fix it: > $ svn diff c-cppbuiltin.c Index: c-cppbuiltin.c =================================================================== --- c-cppbuiltin.c (revision 135891) +++ c-cppbuiltin.c (working copy) @@ -384,6 +384,8 @@ define__GNUC__ (void) cpp_define_formatted (parse_in, "__GNUC_MINOR__=%d", minor); cpp_define_formatted (parse_in, "__GNUC_PATCHLEVEL__=%d", patchlevel); + if (c_dialect_cxx ()) + cpp_define_formatted (parse_in, "__GNUG__=%d", major); } /* Define macros used by . Currently only defines limits -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36331