Re: No dbg packages for Plasma?

2022-04-06 Thread Patrick Franz
h is only > available for Sid. > > Why? Is this a bug? The debug packages for Plasma are available where all other dbg packages for Debian are. Here you can find the ones for e.g. plasma-desktop: http://deb.debian.org/debian-debug/pool/main/p/plasma-desktop/ -- Med vänliga hälsningar Patrick Franz

Re: No dbg packages for Plasma?

2022-04-06 Thread Peter Ehlert
On 4/6/22 06:20, Luiz Romário Santana Rios wrote: I just noticed that there seem to be absolutely no debug packages for plasma-desktop or for plasma frameworks. The only thing I can find online is this plasma-desktop-dbgsym package[1], which is only available for Sid. I believe the Debian Dev

No dbg packages for Plasma?

2022-04-06 Thread Luiz Romário Santana Rios
I just noticed that there seem to be absolutely no debug packages for plasma-desktop or for plasma frameworks. The only thing I can find online is this plasma-desktop-dbgsym package[1], which is only available for Sid. Why? Is this a bug? Thank you in advance. P.S.: I'm not subscribed to the

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Le 15/09/2010 14:56, Frédéric Boiteux a écrit : > Le 15/09/2010 14:52, Sven Joachim a écrit : > >> You have to use it before you start your program, e.g. >> >> $ env LD_LIBRARY_PATH=/usr/lib/debug gdb ecran >> >> Specifying it at link time would also be possible, e.g. by linking with >> "-rpath=

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Le 15/09/2010 14:52, Sven Joachim a écrit : > You have to use it before you start your program, e.g. > > $ env LD_LIBRARY_PATH=/usr/lib/debug gdb ecran > > Specifying it at link time would also be possible, e.g. by linking with > "-rpath=/usr/lib/debug", but don't do this for binaries that you give

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Sven Joachim
On 2010-09-15 14:17 +0200, Frédéric Boiteux wrote: > I've tried : > > env LD_LIBRARY_PATH=/usr/lib/debug gdb ecran core.ecran I'm afraid this cannot work because the crashed process that left the core file around had used the non-debug version of the library for which no symbols are available any

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Le 15/09/2010 13:55, Sven Joachim a écrit : > On 2010-09-15 12:23 +0200, Frédéric Boiteux wrote: > > >> I'm trying to debug an own C program which dumps a core, inside >> libncurses5 library. >> I'd like to use gdb to debug my program, and so I've

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Timo Juhani Lindfors
Sven Joachim writes: >> Or is there something I forgot ? > > Not really, the problem is that libncurses5-dbg ships a special debug > version of the library and no detached debugging symbols, unlike other > -dbg packages. This is fixed in Squeeze, though. Ah, that explains wh

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
r /lib64/ld-linux-x86-64.so.2 (no debugging symbols found) 0x7fe6fa4819e0 in __read_nocancel () from /lib/libc.so.6 (gdb) And I checked that I really have the -dbg packages : > env COLUMNS=120 dpkg -l |grep curses ii lib32ncurses55.7+20081213-1 shared libraries for ter

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Sven Joachim
On 2010-09-15 12:52 +0200, Timo Juhani Lindfors wrote: > Frédéric Boiteux writes: >> Does I have to redo the compilation before to test my program with >> libncurses5-dbg debug library ? > > No. libncurses5-dbg is not a library, it does not even contain > code. This is wrong. > It only contains

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Sven Joachim
On 2010-09-15 12:23 +0200, Frédéric Boiteux wrote: > I'm trying to debug an own C program which dumps a core, inside libncurses5 > library. > I'd like to use gdb to debug my program, and so I've installed -dbg packages : > libc6-dbg, libncurses5-dbg, libstdc++-6

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Timo Juhani Lindfors
Frédéric Boiteux writes: > It's what I would like to have, but in my gdb session, the symbols / > data aren't available. When you start your gdb, do you have some info > about gdb loading libncurses5 debugging symbols ? (gdb) shell pidof nano 23506 (gdb) attach 23506 Attaching to process 23506 R

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Hello Timo, Le 15/09/2010 12:52, Timo Juhani Lindfors a écrit : > Frédéric Boiteux writes: > >> Does I have to redo the compilation before to test my program with >> libncurses5-dbg debug library ? >> > No. libncurses5-dbg is not a library, it does not even contain > code. It only con

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Timo Juhani Lindfors
Frédéric Boiteux writes: > Does I have to redo the compilation before to test my program with > libncurses5-dbg debug library ? No. libncurses5-dbg is not a library, it does not even contain code. It only contains the debugging symbols that were removed from libncurses5. At least the following w

How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Hello, I'm trying to debug an own C program which dumps a core, inside libncurses5 library. I'd like to use gdb to debug my program, and so I've installed -dbg packages : libc6-dbg, libncurses5-dbg, libstdc++-6.4.3-dbg (on a Debian Lenny system), but if the libc6

Re: -dbg packages

2001-10-09 Thread dman
On Tue, Oct 09, 2001 at 05:12:40PM -0400, Ari Pollak wrote: | here's a dumb question - how would I use the libgtk1.2-dbg (and, while | I'm at it, libc6-dbg) packages to debug programs more thorougly? I've | tried linking with -lgtk_g and -lgdk_g along with the re

-dbg packages

2001-10-09 Thread Ari Pollak
here's a dumb question - how would I use the libgtk1.2-dbg (and, while I'm at it, libc6-dbg) packages to debug programs more thorougly? I've tried linking with -lgtk_g and -lgdk_g along with the regular libraries, but that doesn't seem