GNU* DDD* is a graphical front-end for command-line debuggers that can be used with Intel IDB.
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
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