This is the mail archive of the gcc-prs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: preprocessor/7040: gcc 3.x cannot compile its own preprocessor output


The following reply was made to PR preprocessor/7040; it has been noted by GNATS.

From: Thomas Dickey <dickey@herndon4.his.com>
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 <dickey@invisible-island.net>
 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--


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]