Flag | Description |
---|---|
-d | Enable debugging. See Debugger Commands for more information about using the debugger. |
-s | Syntax check only. |
-o | Call CoInitializeEx (Windows only). |
-p | Enable engine profiling. The engine profile will be saved as djprof.out. |
-gprogfile | Execute the expression in global mode before any other files. All user-defined functions in that program file will be global and available for use by any others. |
-llogfile | Open the specified log file for all types of messages. |
-wwhitelist | Specify a file containing a list of allowed third-party executables. |
Command | Description |
---|---|
H | Display Help text. When the debugger is active, type the character 'h' to get a list of debugger commands. |
(Empty line) | Step or next, depending on last command. |
S [num] | Single step 1 or NUM lines. |
N [num] | Single step 1 or NUM lines overfunction calls. |
M [module] | Set module for display and breakpoint commands. If MODULE is not specified, default to "current" module. |
D [num1[:num2] | Display lines. With no arguments display next 10 lines. If NUM1 is present, display 10 lines starting with line NUM1. If NUM2 is present, display NUM2 lines starting with line NUM1. |
R | Run to completion or breakpoint. |
E expr | Evaluate expression EXPR. |
BP [num] | Set breakpoint at current line or line NUM. |
BR [num] | Remove breakpoint at current line or line NUM. |
BC | Clear all breakpoints. |
BL | List breakpoints. |
Q | Quit execution. |