Date: Wed, 6 Jan 1999 11:29:39 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: AcidBolt cc: djgpp AT delorie DOT com Subject: Re: RHIDE ctr-break In-Reply-To: <3691293E.2348913F@netvision.net.il> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Mon, 4 Jan 1999, AcidBolt wrote: > Does someone know how i can use rhide so when i run a program and press > ctr+break it will get out of the program and show me where it stoped like in > borlandc? The usual way of achieving this in DJGPP is to run the program *outside* of RHIDE, press Ctrl-BREAK, then run the symify utility on the traceback printed on the screen. This should pinpoint the function name, the source file name, and the line number where the program was when you pressed Ctrl-BREAK. If you don't see the file name and line number for functions that are part of your code (as opposed to library functions), try compiling with -g and without -s. Section 9.2 of the DJGPP FAQ explains more about symify.