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

Thomas Dickey dickey@herndon4.his.com
Fri Jun 21 22:21:00 GMT 2002


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
-------------- next part --------------
#!/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 $*
-------------- next part --------------
#!/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 $*
-------------- next part --------------
#!/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 $*


More information about the Gcc-bugs mailing list