This is the mail archive of the
java-discuss@sources.redhat.com
mailing list for the Java project.
Re: debugging info while parsing java files
- To: serega at ics dot uci dot edu
- Subject: Re: debugging info while parsing java files
- From: Tom Tromey <tromey at cygnus dot com>
- Date: Wed, 9 Aug 2000 12:27:09 -0700 (PDT)
- Cc: java-discuss at sources dot redhat dot com
- References: <39919CB0.EE0DDAC4@ics.uci.edu>
>>>>> "Sergiy" == Sergiy P Zhenochin <serega@ics.uci.edu> writes:
Sergiy> Is it possible to get debugging info from the parser when gcs
Sergiy> parses .java files? Seems not, just making sure.
Yes, just compile with -g (just like with gcc).
gdb can read this information fairly well. gdb's Java support isn't
as good as its support for other languages, and presently it has a few
more notable problems, but overall it is adequate for debugging.
Does this answer your question?
Tom