My problem is the following:
I want to use the idb intel debugger with eclipse to be able to go step by step through my code, much like idb -gui
does. I already tried to implement a solution i found where i replace the direct call to idb -gdb with a script:
#!/bin/bash
exec/usr/local/soft/intel/fc/10.0.025/bin/ifort/idb -gdb "$@"
This actually works as it starts my program just until it comes to a command prompt. Now i get the following error:
Target request failed: {R,T}xThread terminated.
That is when i wasted about a whole day trying to solve this and decided to post on so. Anyone able to help me further with some intelligent advice? how did you integrate idb into eclipse?
cheers, David