jit-debug 636 B

1234567891011121314151617181920212223
  1. * Debugging information
  2. Compile your programs using the `-g' flag in MCS, that will generate a file
  3. with the extension .dbg containing the dwarf symbols for your executable.
  4. To get stack traces with line number information, you need to run your
  5. program like this:
  6. <b>
  7. mono --debug program.exe
  8. </b>
  9. Notice that the program will need to be compiled with the -g
  10. flag and that running with --debug will slow down the execution.
  11. * Mono Debugger
  12. A new debugger has been created in C# and using Gtk# for its
  13. user interface, this will simplify the debugging of CLI applications.
  14. Stay turned for its first public release.