To my understanding, this is what happens:
- debugger downloads the application
- PC (Program Counter) is set to 0
- GDB reports zero as the current program counter to the IDE
- The IDE tries to find the source file for that code at address 0
- because there is no source file for this, it shows that dummy message
In the past I had scripted some extra gdb commands to get around this, but I have to check if this is still applicable to the latest gdb/Eclipse.
I hope this helps,
Erich