This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: target of cross compile : problem in make (newbie)


"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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]