From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12571 invoked by alias); 21 Jun 2002 22:46:05 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 12551 invoked by uid 71); 21 Jun 2002 22:46:03 -0000 Date: Fri, 21 Jun 2002 17:53:00 -0000 Message-ID: <20020621224603.12550.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Thomas Dickey Subject: Re: preprocessor/7040: gcc 3.x cannot compile its own preprocessor output Reply-To: Thomas Dickey X-SW-Source: 2002-06/txt/msg00539.txt.bz2 List-Id: The following reply was made to PR preprocessor/7040; it has been noted by GNATS. From: Thomas Dickey To: neil@gcc.gnu.org, dickey@radix.net, gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org, nobody@gcc.gnu.org, gcc-gnats@gcc.gnu.org Cc: Subject: Re: preprocessor/7040: gcc 3.x cannot compile its own preprocessor output Date: Fri, 21 Jun 2002 18:40:25 -0400 --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Jun 18, 2002 at 10:38:46AM -0000, neil@gcc.gnu.org wrote: > Synopsis: gcc 3.x cannot compile its own preprocessor output > > State-Changed-From-To: open->feedback > State-Changed-By: neil > State-Changed-When: Tue Jun 18 03:38:46 2002 > State-Changed-Why: > Waiting for small testcase. Thanks. > > http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=7040 odd - rebuilding gcc 3.1 and 3.0.4 doesn't show the problem. I had 3.0, 3.0.4 and 3.1 installed in separate directories (but needed the space for another project). So they should have been distinct/nonconflicting. fyi, attaching the wrappers I used for set environment, e.g., with-gcc-3.1 configure with-gcc-3.1 make (I'll leave 3.1 installed for a while just in case ;-) -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="with-gcc-3.0" #!/bin/bash export TOP=/usr/local/gcc-3.0 export PATH=$TOP/bin:$PATH export LD_LIBRARY_PATH=$TOP/lib:$TOP/lib/gcc-lib/i686-pc-linux-gnu/3.0:$LD_LIBRARY_PATH eval $* --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="with-gcc-3.0.4" #!/bin/bash export TOP=/usr/local/gcc-3.0.4 export PATH=$TOP/bin:$PATH export LD_LIBRARY_PATH=$TOP/lib:$TOP/lib/gcc-lib/i686-pc-linux-gnu/3.0.4:$LD_LIBRARY_PATH eval $* --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="with-gcc-3.1" #!/bin/bash export TOP=/usr/local/gcc-3.1 export PATH=$TOP/bin:$PATH export LD_LIBRARY_PATH=$TOP/lib:$TOP/lib/gcc-lib/i686-pc-linux-gnu/3.1:$LD_LIBRARY_PATH eval $* --u3/rZRmxL6MmkK24--