Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* Re: gdb warning
@ 2001-05-29 11:05 David Taylor
  2001-05-29 11:12 ` Charles Wilkins
  0 siblings, 1 reply; 8+ messages in thread
From: David Taylor @ 2001-05-29 11:05 UTC (permalink / raw)
  To: Charles Wilkins; +Cc: gdb, Kevin Buettner

    From: "Charles Wilkins" <chas@pcscs.com>
    Date: Tue, 29 May 2001 13:34:47 -0400

    > Also, which host and target are you having problems on?

    forgive my ignorance what do you mean by host and target?

    Charles

When you are configuring GDB, you have the ability to specify a host
and a target.  The host is the machine on which gdb will be run; the
target it the machine for which gdb will debug programs.

Since you asked what they are, I would guess that you specified
neither; in which case they default to the machine on which the
configure is being run (the build machine).  So, then assuming you are
trying to configure, build, and use GDB in a native environment, the
question becomes -- what system are you trying this on?

Put another way, in your build tree, what does the top level
config.status file give as the value of --host?


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: gdb warning
  2001-05-29 11:05 gdb warning David Taylor
@ 2001-05-29 11:12 ` Charles Wilkins
  0 siblings, 0 replies; 8+ messages in thread
From: Charles Wilkins @ 2001-05-29 11:12 UTC (permalink / raw)
  To: David Taylor; +Cc: gdb mailing list

Here is my config.status:

#!/bin/sh
# This file was generated automatically by configure.  Do not edit.
# This directory was configured as follows:
./configure --host=i686-pc-linux-gnu --norecursion 
#  using "mt-frag"

the target and host are one and the same

----- Original Message ----- 
From: "David Taylor" <taylor@candd.org>
To: "Charles Wilkins" <chas@pcscs.com>
Cc: <gdb@sourceware.cygnus.com>; "Kevin Buettner" <kevinb@cygnus.com>
Sent: Tuesday, May 29, 2001 2:05 PM
Subject: Re: gdb warning


>     From: "Charles Wilkins" <chas@pcscs.com>
>     Date: Tue, 29 May 2001 13:34:47 -0400
> 
>     > Also, which host and target are you having problems on?
> 
>     forgive my ignorance what do you mean by host and target?
> 
>     Charles
> 
> When you are configuring GDB, you have the ability to specify a host
> and a target.  The host is the machine on which gdb will be run; the
> target it the machine for which gdb will debug programs.
> 
> Since you asked what they are, I would guess that you specified
> neither; in which case they default to the machine on which the
> configure is being run (the build machine).  So, then assuming you are
> trying to configure, build, and use GDB in a native environment, the
> question becomes -- what system are you trying this on?
> 
> Put another way, in your build tree, what does the top level
> config.status file give as the value of --host?
> 


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: gdb warning
  2001-05-27 16:37 Charles Wilkins
  2001-05-29 10:27 ` Kevin Buettner
@ 2001-06-01 17:49 ` Michael Snyder
  1 sibling, 0 replies; 8+ messages in thread
From: Michael Snyder @ 2001-06-01 17:49 UTC (permalink / raw)
  To: Charles Wilkins; +Cc: gdb

Charles Wilkins wrote:
> 
> I have seen posts about this is the web and in a couple newgroups, but I
> have seen no clear solutions or definition as to what this message means.
> 
> When i run gdb, I get warning: unable to find dynamic linker
> breakpoint function.
> GDB will be unable to debug shared library initializers and track
> explicitly loaded dynamic code.
> 
> I have installed the latest gdb and gcc.
> 
> Minimally, to duplicate this error, I compile with:
> g++ -g test.cpp
> 
> Then to debug, I run:
> gdb a.out
> 
> In the debugger when I try to run, is when I get the error.
> 
> Anybody care to point out what the cause of this is ?
> 
> Thanks in advance for a prompt reply.

In general, the cause is that GDB was not able to find and/or
load symbols from the dynamic linker.  I can't tell you more
specifically than that.  Perhaps the dynamic linker is not
in the usual location?  Perhaps it has been stripped?  Perhaps
its filename is not as expected?


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: gdb warning
@ 2001-05-29 11:43 Charles Wilkins
  0 siblings, 0 replies; 8+ messages in thread
From: Charles Wilkins @ 2001-05-29 11:43 UTC (permalink / raw)
  To: gdb mailing list

Here is my config.status:

#!/bin/sh
# This file was generated automatically by configure.  Do not edit.
# This directory was configured as follows:
./configure --host=i686-pc-linux-gnu --norecursion 
#  using "mt-frag"

the target and host are one and the same




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: gdb warning
  2001-05-29 10:27 ` Kevin Buettner
@ 2001-05-29 10:34   ` Charles Wilkins
  0 siblings, 0 replies; 8+ messages in thread
From: Charles Wilkins @ 2001-05-29 10:34 UTC (permalink / raw)
  To: Kevin Buettner; +Cc: gdb

> Which version of gdb?  (You say you have the latest, but do you
> have the latest released version or are you using development
> versions.)

version 5 which is termed as being the latest stable
http://sources.redhat.com/gdb/

> 
> Also, which host and target are you having problems on?

forgive my ignorance what do you mean by host and target?

Charles


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: gdb warning
  2001-05-27 16:37 Charles Wilkins
@ 2001-05-29 10:27 ` Kevin Buettner
  2001-05-29 10:34   ` Charles Wilkins
  2001-06-01 17:49 ` Michael Snyder
  1 sibling, 1 reply; 8+ messages in thread
From: Kevin Buettner @ 2001-05-29 10:27 UTC (permalink / raw)
  To: Charles Wilkins, gdb

On May 27,  7:36pm, Charles Wilkins wrote:

> I have seen posts about this is the web and in a couple newgroups, but I
> have seen no clear solutions or definition as to what this message means.
> 
> When i run gdb, I get warning: unable to find dynamic linker
> breakpoint function.
> GDB will be unable to debug shared library initializers and track
> explicitly loaded dynamic code.
> 
> I have installed the latest gdb and gcc.
> 
> Minimally, to duplicate this error, I compile with:
> g++ -g test.cpp
> 
> Then to debug, I run:
> gdb a.out
> 
> In the debugger when I try to run, is when I get the error.
> 
> Anybody care to point out what the cause of this is ?

Which version of gdb?  (You say you have the latest, but do you
have the latest released version or are you using development
versions.)

Also, which host and target are you having problems on?

Kevin


^ permalink raw reply	[flat|nested] 8+ messages in thread

* gdb warning
@ 2001-05-29  9:59 Charles Wilkins
  0 siblings, 0 replies; 8+ messages in thread
From: Charles Wilkins @ 2001-05-29  9:59 UTC (permalink / raw)
  To: gdb

When i run gdb, I get warning: unable to find dynamic linker
breakpoint function.
GDB will be unable to debug shared library initializers and track
explicitly loaded dynamic code.

Any ideas why this comes up?




^ permalink raw reply	[flat|nested] 8+ messages in thread

* gdb warning
@ 2001-05-27 16:37 Charles Wilkins
  2001-05-29 10:27 ` Kevin Buettner
  2001-06-01 17:49 ` Michael Snyder
  0 siblings, 2 replies; 8+ messages in thread
From: Charles Wilkins @ 2001-05-27 16:37 UTC (permalink / raw)
  To: gdb

I have seen posts about this is the web and in a couple newgroups, but I
have seen no clear solutions or definition as to what this message means.

When i run gdb, I get warning: unable to find dynamic linker
breakpoint function.
GDB will be unable to debug shared library initializers and track
explicitly loaded dynamic code.

I have installed the latest gdb and gcc.

Minimally, to duplicate this error, I compile with:
g++ -g test.cpp

Then to debug, I run:
gdb a.out

In the debugger when I try to run, is when I get the error.

Anybody care to point out what the cause of this is ?

Thanks in advance for a prompt reply.

Charles Wilkins



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2001-06-01 17:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-05-29 11:05 gdb warning David Taylor
2001-05-29 11:12 ` Charles Wilkins
  -- strict thread matches above, loose matches on Subject: below --
2001-05-29 11:43 Charles Wilkins
2001-05-29  9:59 Charles Wilkins
2001-05-27 16:37 Charles Wilkins
2001-05-29 10:27 ` Kevin Buettner
2001-05-29 10:34   ` Charles Wilkins
2001-06-01 17:49 ` Michael Snyder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox