This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: GCC Istallation
- From: "Claudio Bley" <bley at cs dot uni-magdeburg dot de>
- To: "Gemperlein, Hans" <Hans dot Gemperlein at dlr dot de>
- Cc: "'gcc-help at gcc dot gnu dot org'" <gcc-help at gcc dot gnu dot org>
- Date: Wed, 20 Feb 2002 16:25:18 +0100
- Subject: Re: GCC Istallation
- References: <B7187023C642D4119203001083F9BDBE5AE6E6@excsrv.op.dlr.de>
>>>>> "Hans" == Gemperlein, Hans <Hans.Gemperlein@dlr.de> writes:
Hans> Sirs, I installed gcc-3.0.3 on a SGI Octane running IRIX
Hans> 6.5. No errors from make and make install.
Hans> Configuring any other installation however, eg. PLIP results
Hans> in:
Hans> checking whether the C++ compiler (CC ) works... no
Hans> configure: error: installation or configuration problem: C++
Hans> compiler cannot create executables.
Are you sure you build the C++ frontend ?
Hans> What can I do?
Look at the config.log file in order to determine what exactly went
wrong.
Try to compile a simple hello.c++ program manually:
$ g++ hello.c++ -o hello
Claudio