From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15334 invoked by alias); 19 May 2005 03:53:06 -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 15313 invoked from network); 19 May 2005 03:53:01 -0000 Received: from unknown (HELO linda-2.paradise.net.nz) (202.0.58.21) by sourceware.org with SMTP; 19 May 2005 03:53:01 -0000 Received: from smtp-1.paradise.net.nz (smtp-1a.paradise.net.nz [202.0.32.194]) by linda-2.paradise.net.nz (Paradise.net.nz) with ESMTP id <0IGP00IT2XGC2T@linda-2.paradise.net.nz> for gdb@sources.redhat.com; Thu, 19 May 2005 15:53:01 +1200 (NZST) Received: from dodo (202-0-52-96.cable.paradise.net.nz [202.0.52.96]) by smtp-1.paradise.net.nz (Postfix) with ESMTP id F06C082A15; Thu, 19 May 2005 15:52:59 +1200 (NZST) Date: Thu, 19 May 2005 03:53:00 -0000 From: David Antliff Subject: Re: remote debugging symbol problem In-reply-to: <20050519010133.GB27885@nevyn.them.org> X-X-Sender: david@localhost To: Daniel Jacobowitz Cc: gdb@sources.redhat.com Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; format=flowed; charset=US-ASCII References: <20050519010133.GB27885@nevyn.them.org> X-SW-Source: 2005-05/txt/msg00183.txt.bz2 On Wed, 18 May 2005, Daniel Jacobowitz wrote: > On Thu, May 19, 2005 at 12:26:33PM +1200, David Antliff wrote: >> However, now, I just get this: >> >> (gdb) target remote 10.16.10.237:2345 >> Remote debugging using 10.16.10.237:2345 >> 0x0fe896a0 in ?? () >> warning: Unable to find dynamic linker breakpoint function. >> GDB will be unable to debug shared library initializers >> and track explicitly loaded dynamic code. >> >> My understanding is that the warning is simply because the standard >> libraries aren't compiled with GDB support. This used to happen even when >> it worked so I'm not concerned about it (should I be?). > > You should be. This means that GDB has not found your target > libraries. Is solib-absolute-prefix set in your cross GDB? Absolutely brilliant - that solved the problem. Thank you! :) As you suggested, solib-absolute-prefix wasn't set so I set it to the root of my NFS directory and it all came to life. Many thanks, -- David.