target of cross compile : problem in make (newbie)

Ian Lance Taylor ian@wasabisystems.com
Wed Mar 24 15:29:00 GMT 2004


"sting sting" <zstingx@hotmail.com> writes:

> ./configure --target=powerpc-*-elf
> I get the follwoing error:
> "./configure: No match."

First of all, never use ./configure.  Always build in a different
directory.

Secondly, just use powerpc-elf, not powerpc-*-elf.

So, you want somethig like
    ../gcc/configure --target=powerpc-elf

I assume you saw the '*' in configure scripts doing a switch on
target.  That is a shell pattern on the canonical name.  Don't confuse
that with the name you use for a target.

No idea on your Ada problem, but it may be related to running
configure in the source directory.

Ian



More information about the Gcc-help mailing list