This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: cross-compiler
- From: Rupert Wood <rup at kanat dot pair dot com>
- To: vishal keswani <vishalkeswani at yahoo dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Wed, 9 Oct 2002 04:07:07 -0400 (EDT)
- Subject: Re: cross-compiler
Vishal Keswani wrote:
> s390-ibm-linux-gcc: installation problem, cannot exec
> `#C++collect2': No such file or directory
Hmm - that's odd: there's a bug in there somewhere, probably in the specs
handling.
> Whiel configuring I gave this also as the options
> --enable-languages="C,C++"
These are (IIRC) case sensitive and should be lower case. You also don't
have to specify 'c': for now, it's implicit. So instead use
--enable-languages="c++"
You can check the available --enable-languages values in the
config-in.lang files in subdirectories of gcc.
Hope that helps,
Rup.