This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: GCC hanging at CPP on Solaris 5.7 machine.
- To: mario dot nigrovic at motorola dot com
- Subject: Re: GCC hanging at CPP on Solaris 5.7 machine.
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Fri, 10 Mar 2000 09:23:49 +0100
- CC: gcc-bugs at gcc dot gnu dot org
- References: <38C89370.92A8F6FD@home.net>
> Where do I go from here? Is there anything further I
> should do to help figure out what's going on? (Have I done
> something unforgivably stupid?)
It seems you did not install the pre-built binary into the location
for which it was build, namely /usr/local. As a result, gcc can't find
its 'specs' file, which describes how to invoke the various tools. The
behaviour you are seeing is strange and may be a bug, but I'm not sure
gcc is designed to support this kind of operation.
You can try to invoke it with -spec=<path to .specs file> and see
whether this helps; you may also want to invoke it with
-B/tmp/.../path-where-cc1-lives/. To see what it is doing, you don't
need to run truss; adding -v should give the same information.
Regards,
Martin