Difference between revisions of "MPW debugging"

From Lazarus wiki
Jump to navigationJump to search
(category)
(No difference)

Revision as of 08:54, 20 December 2010

The possibillities to do high level debuging in target MacOS is limited, due to limitations of PPCAsm to accept debuginfo (stabs). The limitation is thus not in fpc.

Therefore, if possible, we suggest you to do the main debugging in a MacOSX/Darwin version of your program.

If you really want to try to use a debugger, Power Mac Debugger 2.1, can be downloaded from Apple, ftp://ftp.apple.com/developer/Tool_Chest/Core_Mac_OS_Tools/MPW_etc./Debuggers/Power_Mac_Debugger.sit.hqx

You can not use it in the classic environment in Mac OS X, only real classic MacOS will do, and then you must shut of virtual memory. The reason is probably some bug in the memory mapping of executable files, so when a breakpoint is set in the debugger, the breakpoint will eventually be saved to disk, and thus the executable will be corrupted, next time the app is started.

Compile the programs and units with -g to enable debugging. xcoff files will then be generated which contains debugging info.

  • You can browse among procedures, by their mangled names,
  • You can view the source code.
  • You can set breakpoints, stepping and jumping works.
  • You cannot see variable names, only registers. Hovever this can be useful, especially at procedure entry and exit point where the parameter list and return value are stored in registers, according to the calling conventions.
  • In the assembler view, sometimes the symbolic name of a branch destination is wrong. When actually executing the branch, it will however branch to the correct procedure.