From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18227 invoked by alias); 28 Oct 2003 19:18:34 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 18185 invoked from network); 28 Oct 2003 19:18:32 -0000 Received: from unknown (HELO ext-nj2gw-5.online-age.net) (64.14.56.41) by sources.redhat.com with SMTP; 28 Oct 2003 19:18:32 -0000 Received: from int-nj2gw-3.online-age.net (int-nj2gw-3 [3.159.236.67]) by ext-nj2gw-5.online-age.net (8.12.9/8.12.9/990426-RLH) with ESMTP id h9SJILgY017550; Tue, 28 Oct 2003 14:18:21 -0500 (EST) Received: from uswaumsxb4medge.med.ge.com (localhost [127.0.0.1]) by int-nj2gw-3.online-age.net (8.12.9/8.12.8/990426-RLH) with ESMTP id h9SJIK5l000914; Tue, 28 Oct 2003 14:18:20 -0500 (EST) Received: by uswaumsxb4medge.med.ge.com with Internet Mail Service (5.5.2656.59) id ; Tue, 28 Oct 2003 13:15:11 -0600 Received: from tuba.moneng.mei.com ([3.20.87.235]) by uswaumsxbhmedge.med.ge.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id VVRBXPL5; Tue, 28 Oct 2003 13:18:08 -0600 From: "Wolcott, Ken (MED, Compuware)" Reply-To: "Wolcott, Ken (MED, Compuware)" To: kleine-budde@gmx.de Cc: crossgcc@sources.redhat.com, gdb mailing list Content-Type: text/plain; charset="iso-8859-1" Organization: GEMS-IT Subject: Re: unable to compile gdb 6.0 as a cross gdb; no termcap library found; and plain gcc is still called Date: Tue, 28 Oct 2003 19:18:00 -0000 User-Agent: KMail/1.4.3 References: <200310271747.52297.ken.wolcott@med.ge.com> <200310281147.46663.ken.wolcott@med.ge.com> <20031028175402.GA30757@timberwolf.dyndns.org> In-Reply-To: <20031028175402.GA30757@timberwolf.dyndns.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200310281320.07996.ken.wolcott@med.ge.com> X-SW-Source: 2003-10/txt/msg00309.txt.bz2 Hi Marc; I think I tried everything that you and Dan suggested, but I have some=20 problems still. First, there are many initial calls to gcc rather than=20 arm-arm9-linux-gnu-gcc that are suspicious to me. How can I end up with an= =20 arm9 native gdb if it is calling the i686 gcc? Secondly, the build dies with: configure: error: no termcap library found make: *** [configure-gdb] Error 1 I have attached the compressed output log and my compile script. I guess /etc is missing in the PATH environment variable? I'll try that= =20 tack next. Thanks, Ken On Tuesday 28 October 2003 11:54, Marc Kleine-Budde wrote: > On Tue, Oct 28, 2003 at 11:47:46AM -0600, Wolcott, Ken (MED, Compuware)=20 wrote: > > Very nice. I'll try that. I think I already tried it with the CC > > variable. So a full path is not requred to that environment variable?=20 > > Apparently that will have to be in the path. > > Yes - CC with full path and/or set the PATH adquate...Probably you have > to give all programms from the binutils and gcc via the environment... > > > > CC=3Darm-arm9-linux-gnu-gcc \ > > > AR=3Darm-arm9-linux-gnu-ar \ > > > =3Darm-arm9-linux-gnu- \ > > > ../gdb-6.0/configure \ > > > --verbose \ > > > --host=3Darm-arm9-linux-gnu \ > > > --build=3Di686-pc-linux-gnu \ > > > --target=3Darm-arm9-linux-gnu\ > > > + the rest > > Marc