This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: gcc testsuite apparently can't find g++
- From: Rob Savoye <rob at welcomehome dot org>
- To: "Paul C. Leopardi" <leopardi at bigpond dot net dot au>
- Cc: dejagnu at gnu dot org, gcc-help at gcc dot gnu dot org
- Date: Tue, 4 May 2004 20:19:07 -0600
- Subject: Re: gcc testsuite apparently can't find g++
- References: <200405050853.02615.leopardi@bigpond.net.au>
On Wed, May 05, 2004 at 08:53:02AM +1000, Paul C. Leopardi wrote:
> Maybe it's the wrong place to ask, but I asked on the gcc-help mailing list
> and have hit a dead end:
> http://gcc.gnu.org/ml/gcc-help/2004-05/msg00031.html
> The problem seems to be that the gcc testsuite is not using the right g++:
> http://gcc.gnu.org/ml/gcc-testresults/2004-05/msg00137.html
>
> 1) What file tells runtest where to find g++?
It's found at runtime. You can watch DejaGnu look for the right g++ by
adding a few -v (verbose) options to the command line. To do this via make,
type "make check RUNTESTFLAGS="-v -v" (more -v's give you more information)
Then you'll likely see what the problem is.
- rob -