Date: Sun, 18 Oct 1998 19:10:28 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Tal Lavi cc: djgpp AT delorie DOT com Subject: Re: Can't debug a class In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Sun, 18 Oct 1998, Tal Lavi wrote: > I'm using the RHIDE integrated debugger and I can't watch the contents of the > class's variable, while I'm debuging a method of the same class. Are you using the default COFF debugging info (the one generated by GCC when you give it the -g switch)? If so, try using -gstabs+ instead. COFF debugging info has some known limitations which stabs debugging doesn't have. Also please note that names of some C++ variables and methods need to be quoted to override the default name parser of the RHIDE debugging engine (for example, it by default thinks that foo::bar is NOT a single name). This and other problems related to debugging are describe in the FAQ, sections 12.7 and 12.8.