From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12965 invoked by alias); 17 Jul 2003 22:35:36 -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 12955 invoked from network); 17 Jul 2003 22:35:35 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 17 Jul 2003 22:35:35 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h6HMZZH21588 for ; Thu, 17 Jul 2003 18:35:35 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h6HMZYI15326; Thu, 17 Jul 2003 18:35:34 -0400 Received: from localhost.localdomain (vpn50-28.rdu.redhat.com [172.16.50.28]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h6HMZY508124; Thu, 17 Jul 2003 18:35:34 -0400 Received: (from kev@localhost) by localhost.localdomain (8.11.6/8.11.6) id h6HMZQk16920; Thu, 17 Jul 2003 15:35:26 -0700 Date: Thu, 17 Jul 2003 22:35:00 -0000 From: Kevin Buettner Message-Id: <1030717223526.ZM16919@localhost.localdomain> In-Reply-To: Jon Ringle "Re: cross-debugging with gdbserver, why can't gdb find breakpoint function?" (Jul 17, 5:06pm) References: <20030717203016.GA28000@nevyn.them.org> <200307171637.28781.jon.ringle@comdial.com> <200307171706.47727.jon.ringle@comdial.com> To: Jon Ringle , gdb@sources.redhat.com Subject: Re: cross-debugging with gdbserver, why can't gdb find breakpoint function? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-07/txt/msg00228.txt.bz2 On Jul 17, 5:06pm, Jon Ringle wrote: > > (gdb) help set solib-search-path > > Set the search path for loading non-absolute shared library symbol files. > > This takes precedence over the environment variables PATH and > > LD_LIBRARY_PATH. > > > > The help here doesn't imply that /lib will be suffixed to the > > solib-search-path setting... > > Ahh... I think I see now: > > (gdb) help set solib-search-path > Set the search path for loading non-absolute shared library symbol files. > This takes precedence over the environment variables PATH and LD_LIBRARY_PATH. > (gdb) help set solib-absolute-prefix > Set prefix for loading absolute shared library symbol files. > For other (relative) files, you can add values using `set solib-search-path'. > > The term 'absolute' here refers to an 'absolute path'. > > Is this correct? Yes. That help message isn't worded very well, is it? Kevin