> -----Original Message----- > From: T AA [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, March 26, 2002 6:33 AM > To: [EMAIL PROTECTED] > Subject: Re: Plucker Browser Feature > > Do the Borland or Code Warrior tools allow stepping > through the code in debug mode? (I'm assuming GCC does > not.)
GCC uses the associated GDB debugger, which will allow you to step through the code. GDB is a command line tool, but there is a graphical front end called Insight, implemented in TCL-TK, to make like easier for the GUI users. GCC and GDB are part of the standard Cygwin distribution. > This is the first time I've heard the Borland > C++ builder recommened for this building Palm apps. As > I've heard great things about C++ Builder, I'd love to > be able to leverage its debugging cababilities; should > I assume that you're using it to build x86 code and > then using a make util to build the 68k version? Or > is it able to target multiple systems? The Borland compiler was recommended specifically for playing with the Plucker desktop, which is an X86 based product. (Note that the version mentioned is an older one, offered free under Borland's "community" liscense, _not_ the current C++ Builder product. The free version is available from: http://www.borland.com/bcppbuilder/freecompiler/. A link from that page leads you to a download page for an oldfer version of their Turbo Debugger, which is here: http://www.borland.com/bcppbuilder/turbodebugger/. I don't believe Borland's compiler targets 68K systems. To develop for the Palm itself, you would probably have to get GCC, and build a cross-compiler tageting the 68K platform. > Tim ______ Dennis

