* RE: gdb + dynamic libs problem
@ 2003-02-20 10:25 Lev Assinovsky
2003-02-20 14:59 ` Daniel Jacobowitz
2003-02-20 15:27 ` Kevin Buettner
0 siblings, 2 replies; 5+ messages in thread
From: Lev Assinovsky @ 2003-02-20 10:25 UTC (permalink / raw)
To: Kevin Buettner, gdb
Thanks Kevin!
My response see below.
I was so happy if anybody could help me!
----
Lev Assinovsky
Aelita Software Corporation
O&S Core Division, Programmer
ICQ# 165072909
> -----Original Message-----
> From: Kevin Buettner [mailto:kevinb@redhat.com]
> Sent: Thursday, February 20, 2003 12:42 AM
> To: Lev Assinovsky; gdb@sources.redhat.com
> Subject: Re: gdb + dynamic libs problem
>
>
> On Feb 18, 2:08pm, Lev Assinovsky wrote:
>
> > I try to debug the application where dynamic objects
> > are loaded through user's dlopen explicit call.
> > The only way to set breakpoint in .so is to open source after
> > .so got loaded (I have to detect this moment myself).
>
> GDB can help you with this if you you do ``set
> stop-on-solib-events 1''.
> You'll probably want to do this well after your program has started
> though to avoid stopping every time one of the shared
> libraries specified
> on the link line gets loaded.
>
> > I perform source opening by issue the commands "shared library" and
> > "list <file>:1".
>
> Have you disabled ``auto-solib-add''? If not, you shouldn't need to
> invoke the ``sharedlibrary'' command directly. I.e, gdb should
> automatically load the shared libraries for you (unless you've told it
> not to).
Here the point is! I don't have "classic" shared libraries like
libxxx.so. And application is not linked with them.
I have xxx.so and load it via dlopen function. I.e. gdb doesn't have
any knowledge about c++ files in my shared object until I type in "sharedlibrary" command!
>
> > But if the source file is big gdb get crash.
> > It there any way to increase gdb resources to consume
> > larger files (symbol tables?)
>
> Which platform are you running on? On most platforms, gdb should
> be able to use whatever resources the operating system is able to
> give it. Thus, you may need to play around with ulimit, adjusting
> the amount of memory, swap space, etc.
I tried solaris8-intel and solaris8-sparc platforms with ulimit=unlimited.
>
> Kevin
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: gdb + dynamic libs problem
2003-02-20 10:25 gdb + dynamic libs problem Lev Assinovsky
@ 2003-02-20 14:59 ` Daniel Jacobowitz
2003-02-20 15:27 ` Kevin Buettner
1 sibling, 0 replies; 5+ messages in thread
From: Daniel Jacobowitz @ 2003-02-20 14:59 UTC (permalink / raw)
To: Lev Assinovsky; +Cc: Kevin Buettner, gdb
On Thu, Feb 20, 2003 at 01:26:13PM +0300, Lev Assinovsky wrote:
> > -----Original Message-----
> > From: Kevin Buettner [mailto:kevinb@redhat.com]
> > Sent: Thursday, February 20, 2003 12:42 AM
> > To: Lev Assinovsky; gdb@sources.redhat.com
> > Subject: Re: gdb + dynamic libs problem
> >
> >
> > On Feb 18, 2:08pm, Lev Assinovsky wrote:
> >
> > > I try to debug the application where dynamic objects
> > > are loaded through user's dlopen explicit call.
> > > The only way to set breakpoint in .so is to open source after
> > > .so got loaded (I have to detect this moment myself).
> >
> > GDB can help you with this if you you do ``set
> > stop-on-solib-events 1''.
> > You'll probably want to do this well after your program has started
> > though to avoid stopping every time one of the shared
> > libraries specified
> > on the link line gets loaded.
> >
> > > I perform source opening by issue the commands "shared library" and
> > > "list <file>:1".
> >
> > Have you disabled ``auto-solib-add''? If not, you shouldn't need to
> > invoke the ``sharedlibrary'' command directly. I.e, gdb should
> > automatically load the shared libraries for you (unless you've told it
> > not to).
>
> Here the point is! I don't have "classic" shared libraries like
> libxxx.so. And application is not linked with them.
> I have xxx.so and load it via dlopen function. I.e. gdb doesn't have
> any knowledge about c++ files in my shared object until I type in "sharedlibrary" command!
GDB should still automatically load symbols for them. You shouldn't
need to use "sharedlibrary".
--
Daniel Jacobowitz
MontaVista Software Debian GNU/Linux Developer
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: gdb + dynamic libs problem
2003-02-20 10:25 gdb + dynamic libs problem Lev Assinovsky
2003-02-20 14:59 ` Daniel Jacobowitz
@ 2003-02-20 15:27 ` Kevin Buettner
1 sibling, 0 replies; 5+ messages in thread
From: Kevin Buettner @ 2003-02-20 15:27 UTC (permalink / raw)
To: Lev Assinovsky, gdb
On Feb 20, 1:26pm, Lev Assinovsky wrote:
> > > I perform source opening by issue the commands "shared library" and
> > > "list <file>:1".
> >
> > Have you disabled ``auto-solib-add''? If not, you shouldn't need to
> > invoke the ``sharedlibrary'' command directly. I.e, gdb should
> > automatically load the shared libraries for you (unless you've told it
> > not to).
>
> Here the point is! I don't have "classic" shared libraries like
> libxxx.so. And application is not linked with them.
> I have xxx.so and load it via dlopen function. I.e. gdb doesn't have
> any knowledge about c++ files in my shared object until I type in "sharedlibrary" command!
What does ``info shared'' show you prior to using the ``sharedlibrary''
command?
GDB *should* be loading your dlopen'd libraries automatically too.
> > > But if the source file is big gdb get crash.
Do you know why gdb is crashing?
> > > It there any way to increase gdb resources to consume
> > > larger files (symbol tables?)
> >
> > Which platform are you running on? On most platforms, gdb should
> > be able to use whatever resources the operating system is able to
> > give it. Thus, you may need to play around with ulimit, adjusting
> > the amount of memory, swap space, etc.
>
> I tried solaris8-intel and solaris8-sparc platforms with ulimit=unlimited.
Are you running out of memory? Do you have enough swap space?
Kevin
^ permalink raw reply [flat|nested] 5+ messages in thread
* gdb + dynamic libs problem
@ 2003-02-18 11:08 Lev Assinovsky
2003-02-19 21:42 ` Kevin Buettner
0 siblings, 1 reply; 5+ messages in thread
From: Lev Assinovsky @ 2003-02-18 11:08 UTC (permalink / raw)
To: gdb
Hi All!
I try to debug the application where dynamic objects
are loaded through user's dlopen explicit call.
The only way to set breakpoint in .so is to open source after
.so got loaded (I have to detect this moment myself).
I perform source opening by issue the commands "shared library" and
"list <file>:1".
But if the source file is big gdb get crash.
It there any way to increase gdb resources to consume
larger files (symbol tables?)
Thanks in advance!
----
Lev Assinovsky
Aelita Software Corporation
O&S Core Division, Programmer
ICQ# 165072909
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: gdb + dynamic libs problem
2003-02-18 11:08 Lev Assinovsky
@ 2003-02-19 21:42 ` Kevin Buettner
0 siblings, 0 replies; 5+ messages in thread
From: Kevin Buettner @ 2003-02-19 21:42 UTC (permalink / raw)
To: Lev Assinovsky, gdb
On Feb 18, 2:08pm, Lev Assinovsky wrote:
> I try to debug the application where dynamic objects
> are loaded through user's dlopen explicit call.
> The only way to set breakpoint in .so is to open source after
> .so got loaded (I have to detect this moment myself).
GDB can help you with this if you you do ``set stop-on-solib-events 1''.
You'll probably want to do this well after your program has started
though to avoid stopping every time one of the shared libraries specified
on the link line gets loaded.
> I perform source opening by issue the commands "shared library" and
> "list <file>:1".
Have you disabled ``auto-solib-add''? If not, you shouldn't need to
invoke the ``sharedlibrary'' command directly. I.e, gdb should
automatically load the shared libraries for you (unless you've told it
not to).
> But if the source file is big gdb get crash.
> It there any way to increase gdb resources to consume
> larger files (symbol tables?)
Which platform are you running on? On most platforms, gdb should
be able to use whatever resources the operating system is able to
give it. Thus, you may need to play around with ulimit, adjusting
the amount of memory, swap space, etc.
Kevin
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2003-02-20 15:27 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-20 10:25 gdb + dynamic libs problem Lev Assinovsky
2003-02-20 14:59 ` Daniel Jacobowitz
2003-02-20 15:27 ` Kevin Buettner
-- strict thread matches above, loose matches on Subject: below --
2003-02-18 11:08 Lev Assinovsky
2003-02-19 21:42 ` Kevin Buettner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox