From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10291 invoked by alias); 24 Mar 2004 14:32:16 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 10166 invoked from network); 24 Mar 2004 14:32:10 -0000 Received: from unknown (HELO yosemite.airs.com) (209.128.65.135) by sources.redhat.com with SMTP; 24 Mar 2004 14:32:10 -0000 Received: (qmail 19500 invoked by uid 10); 24 Mar 2004 14:32:08 -0000 Received: (qmail 17765 invoked by uid 500); 24 Mar 2004 14:32:00 -0000 From: Ian Lance Taylor To: "sting sting" Cc: gcc-help@gcc.gnu.org Subject: Re: target of cross compile : problem in make (newbie) References: Date: Wed, 24 Mar 2004 15:29:00 -0000 In-Reply-To: Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2004-03/txt/msg00240.txt.bz2 "sting sting" 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