Starting the Debugger Using DDD*

GNU* DDD* is a graphical front-end for command-line debuggers that can be used with Intel IDB.

DBX Mode

Specify --ladebug and --debugger idb options in the shell command line, for example:

 

$ ddd --ladebug --debugger idb a.out

 

If idb is not accessible through PATH environment variable, specify path to the debugger, absolute or relative, for example:

 

$ ddd --ladebug --debugger /opt/intel_idb/bin/idb a.out

 

GDB Mode

Specify --debugger "idb -gdb" options in the shell command line, for example:

 

$ ddd --debugger "idb -gdb" a.out

 

If idb is not accessible through PATH environment variable, specify path to the debugger, absolute or relative, for example:

 

$ ddd --debugger "/opt/intel_idb/bin/idb -gdb" a.out