This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
another gdb question
- From: Nic Ferrier <nferrier at tapsellferrier dot co dot uk>
- To: java at gcc dot gnu dot org
- Date: 16 Nov 2002 14:00:01 +0000
- Subject: another gdb question
Getting paperclips to work natively is like pulling teeth.
Paperclips uses gnujaxp: compiled natively (either from byte code or
source) it gives an IO error. It's the sort of error that needs
tracing with the debugger.
I can load paperclips in the debugger easily, but when I try to set a
break point I get all sorts of problems.
I seem to be able to complete a class name from the paperclips binary
(but not from the gnujaxp library).
I cannot seem to complete a method name, or get GDB to accept it in
any form.
For example: the entry point from paperclips into gnujaxp where the
error occurs is:
gnu.paperclips.utils.ListXML.parse
but when I do this:
gdb> break 'gnu.paperclips.utils.ListXML.parse'
I get the message about their being no such function.
It seems to complete if I do this:
gdb> break 'gnu.paperclips.utils.ListXML'.parse'
but it doesn't actually work.
Any one got any ideas before I take this to the GDB list?
Nic