From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11557 invoked by alias); 23 Feb 2002 21:26:24 -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 11479 invoked from network); 23 Feb 2002 21:26:23 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.135.44) by sources.redhat.com with SMTP; 23 Feb 2002 21:26:23 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 0E8923D4D; Sat, 23 Feb 2002 16:26:18 -0500 (EST) Message-ID: <3C7808F9.3080106@cygnus.com> Date: Sat, 23 Feb 2002 13:26:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.8) Gecko/20020210 X-Accept-Language: en-us MIME-Version: 1.0 To: Christoph Plattner Cc: gdb@sources.redhat.com Subject: Re: `gdbserver' in cross compiled builds References: <3C5B3201.2F2FB670@gmx.at> <3C77D1F6.1020704@cygnus.com> <3C780221.CF27FBDA@gmx.at> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-02/txt/msg00278.txt.bz2 > Hello, > > thanks for you answer, but my questions aimed to another point. > > Why is the gdbserver not built automatically also in cross builds ? Are you configuring with: ..../configure --target=powerpc-linux-gnu or ..../configure --host=powerpc-linux-gnu --target=powerpc-linux-gnu --build=i386-linux-gnu the former configures to build a cross debugger. The latter configures to build a debugger (and gdbserver) that will run on the target system. The latter assumes that you have a powerpc-linux-gnu-gcc installed somewhere while the former doesn't. Andrew