From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28264 invoked by alias); 25 May 2005 03:20:16 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 28256 invoked by uid 22791); 25 May 2005 03:20:14 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Wed, 25 May 2005 03:20:14 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j4P3KCU8027932; Tue, 24 May 2005 23:20:12 -0400 Received: from post-office.corp.redhat.com (post-office.corp.redhat.com [172.16.52.227]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j4P3KCO25726; Tue, 24 May 2005 23:20:12 -0400 Received: from greed.delorie.com (dj.cipe.redhat.com [10.0.0.222]) by post-office.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j4P3KCv19868; Tue, 24 May 2005 23:20:12 -0400 Received: from greed.delorie.com (greed.delorie.com [127.0.0.1]) by greed.delorie.com (8.13.1/8.13.1) with ESMTP id j4P3KBvE002058; Tue, 24 May 2005 23:20:11 -0400 Received: (from dj@localhost) by greed.delorie.com (8.13.1/8.13.1/Submit) id j4P3K65n002055; Tue, 24 May 2005 23:20:06 -0400 Date: Wed, 25 May 2005 07:45:00 -0000 Message-Id: <200505250320.j4P3K65n002055@greed.delorie.com> From: DJ Delorie To: ghazi@caip.rutgers.edu CC: gcc@gcc.gnu.org In-reply-to: <200505250220.j4P2K9R27692@caipclassic.rutgers.edu> (ghazi@caip.rutgers.edu) Subject: Re: Compiling GCC with g++: a report References: <1116907280.9577.31.camel@localhost.localdomain> <87br71kv04.fsf@codesourcery.com> <4292C8FF.6000804@codesourcery.com> <200505250220.j4P2K9R27692@caipclassic.rutgers.edu> X-SW-Source: 2005-05/txt/msg01352.txt.bz2 > Now we have e.g. XNEW* and all we need is a new -W* flag to catch > things like using C++ keywords and it should be fairly automatic to > keep incompatibilities out of the sources. Why not this? #ifndef __cplusplus #pragma GCC poison class template new . . . #endif