From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14751 invoked by alias); 8 Oct 2003 16:49:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 14736 invoked by uid 48); 8 Oct 2003 16:49:05 -0000 Date: Wed, 08 Oct 2003 16:49:00 -0000 Message-ID: <20031008164905.14735.qmail@sources.redhat.com> From: "martelm at quark dot vsc dot edu" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20031008111644.12539.martelm@quark.vsc.edu> References: <20031008111644.12539.martelm@quark.vsc.edu> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug bootstrap/12539] GCC 3.3.1 bootstrap failure on AIX 5.2 X-Bugzilla-Reason: CC X-SW-Source: 2003-10/txt/msg00551.txt.bz2 List-Id: PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12539 ------- Additional Comments From martelm at quark dot vsc dot edu 2003-10-08 16:49 ------- I've attahced the original math.h from the configure/bootstrap process. I found this link : http://gcc.gnu.org/ml/gcc/2003-07/msg00212.html And I modified this section of math.h to remove the #ifndef __cplusplus and the corrosponding #endif and the make bootstrap is moving along. #ifndef __LONGDOUBLE128 #define fpclassify(__x) \ (sizeof(__x) == sizeof(float) ? \ ((_classf((double)__x) == FP_SNAN) || (_classf((double)__x) == FP_QNAN) ? \ FP_QNAN : \ (_classf((double) __x) & 0x00000001 ? \ _classf((double) __x) - 1 : \ _classf((double) __x)) ) : \ #ifndef __cplusplus ((class(__x) == FP_SNAN) || (class(__x) == FP_QNAN) ? \ #endif FP_QNAN : \ #ifndef __cplusplus (class(__x) & 0x00000001 ? \ #endif