GNU* DDD* is a graphical front-end for command-line debuggers that can be used with the Intel(R) Debugger (IDB).
GDB Mode
Specify --debugger idb option in the shell command line, for example:
ddd --debugger idb
If idb is not accessible through PATH environment variable, specify path to the debugger, absolute or relative, for example:
$ ddd --debugger "/opt/intel/idb/10.1.xxx/bin/idb" a.out
DBX Mode
Specify --ladebug and --debugger idb -dbx options in the shell command line, for example:
$ ddd --ladebug --debugger idb -dbx 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/10.1.xxx/bin/idb -dbx a.out