Date: Sun, 7 Jul 1996 10:02:55 +0200 (IST) From: Eli Zaretskii To: jonathan coupe <101667 DOT 3707 AT CompuServe DOT COM> Cc: djgpp AT delorie DOT com Subject: Re: C++ & djgpp debugger ? urgent In-Reply-To: <4rhi2j$t0d$1@mhafc.production.compuserve.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 4 Jul 1996, jonathan coupe wrote: > stabs format as an option. The main problem is that > gdb can't demangle C++ names, which makes it almost impossible > to set breakpoints etc. If the C++ names include a colon `:', you should include the name in single quotes, like this (here to set a breakpoint): b 'CMPForward::go' The problem is that without the quotes, GDB treats the colon characters as a word separator.