[1511] in Kerberos
Re: dbx kinit
daemon@ATHENA.MIT.EDU (Theodore Ts'o)
Wed Aug 14 18:59:54 1991
Date: Wed, 14 Aug 91 15:56:37 -0400
From: tytso@ATHENA.MIT.EDU (Theodore Ts'o)
To: Kirkland <kirkland@spruce.den.mmc.com>
Cc: kerberos@ATHENA.MIT.EDU
In-Reply-To: Kirkland's message of Wed, 14 Aug 91 13:41:59 MDT,
Reply-To: tytso@ATHENA.MIT.EDU
Date: Wed, 14 Aug 91 13:41:59 MDT
From: Kirkland <kirkland@spruce.den.mmc.com>
I am having some troubles determining how to correctly use dbx... It seems
that I am only able to debug at the top level of the program...
If someone would be so kind as to inform me how to aquire the source for
these routines (within dbx) it would be appreciated. THANKS!
The problem is that your libraries aren't compiled with the debugging
flag turned on, so the line number information isn't in the .o files.
If you change the Makefile(s) for the libraries to include the -g flag,
and then do a "make clean; make all", the libraries will be rebuilt with
the debugging information included in the object files. The resulting
code is larger and not as efficient, which is why this usually isn't
done by default.
- Ted