I don't see any function names, file names or line numbers in gdb, I just get addresses like below. Is this bad?
Brian Program received signal SIGTRAP, Trace/breakpoint trap. 0x10c750f0 in ?? () (gdb) bt #0 0x10c750f0 in ?? () #1 0x10c756ec in ?? () #2 0x10c768ba in ?? () #3 0x53260 in OnMainScrollEvent (pevt=0x3d24c) at MyApp.cpp:503 #4 0x530a6 in MainHandleEvent (pevt=0x3d24c) at MyApp.cpp:447 #5 0x10c65e64 in ?? () #6 0x10c697f8 in ?? () #7 0x5296e in EventLoop () at MyApp.cpp:225 #8 0x5252e in F_MAX_EXP () at MyApp.cpp:110 #9 0x523d8 in DBL_MANT_DIG () (gdb) -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Brian Smith Sent: Sunday, March 10, 2002 2:40 PM To: Palm Developer Forum Subject: Re: How to get PalmOS debug info under gdb? On Sun, 10 Mar 2002, Brian Ku wrote: > How can I get dbg source info under gdb for PalmOS? I am using the > debug rom and I have the PalmOS 3.5 sources (limited). You have the function names, file names, and line numbers. What in particular are you missing? If you're looking for the value of a particular variable, you can move up and down in the stack trace ("up" and "down" commands) and use the "print" command to see the value. ----------------------------------------------------------------------- Brian Smith // avalon73 at arthurian dot nu // http://www.arthurian.nu/ Software Developer // Gamer // Webmaster // System Administrator fortune: cannot execute. Out of cookies. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
