|
|
| dbx option | debug option | Description | Notes |
|---|---|---|---|
| corefile | -c corefile | File name of the core file to be debugged | |
| -r | N/A | Executes the object file and exits the debugger only if no error occurs | |
| -x | N/A | Ignore cross-reference file when initializing dbx | Not currently available in debug. |
| -F | N/A | dbx assumes that file scoped structure, union, enum definitions with the same name are identical | Unnecessary |
| -I dir | -s path | Search path(s) for source files | Under debug this sets the global path variable, %global_path |
| -c file | N/A | Execute the dbx commands in the file before reading from standard input | debug offers the script internal command to do this from the debug prompt |
| -C++ | N/A | Assume C++ mode | Set %lang to ``C++'' at the debug prompt to override the default value in %db_lang. |
| -C | N/A | Use C debugging only | Set %lang to ``C'' at the debug prompt to override the default value in %db_lang. |