PDA

View Full Version : Debugger {} not found



GrahamB
23rd August 2017, 09:48
Sirs
I have been working on a project on and off for about a year. I set it up initially to enable me to use the debugger, which I used several times a day.
I broke off for a holiday and to do other projects for about two weeks. I have just returned to this project and when I try to debug I get the following error:
Debugger' {Lot's of HEX stuff}' not found.
I don't know what I have done or how to undo it.
One answer would be to start a new 'clean' project and copy and paste 3000+ lines of code. Is there another way?
I am using the Qt 5.0.1 kit with the 'Debug' Build.
If I try the other builds I get syntax errors in read only application header files!
I searched this forum without success. (I cannot believe no one else has had this problem.)
I am running on Linux
Any help would be much appreciated.

d_stranz
24th August 2017, 00:50
I don't know what I have done or how to undo it.

Given your vague description, who knows what you could have done? Moved / updated your Qt distribution? Moved your project? Renamed directories or files that your project depends on?


One answer would be to start a new 'clean' project and copy and paste 3000+ lines of code.

Geez, why not reformat your hard drive and start from scratch? That's not a solution, especially if you think you need to cut and paste and not just fix project settings to use the existing files where they are already.

First, make a basic, do-nothing Qt GUI project - a main() that shows a QWidget. If you can compile, build, and debug that, then it is likely you inadvertently changed something your other project depends on. If you can't it's likely you 1) messed up your Qt installation somehow, 2) installed some other package that conflicts with something you were previously using, 3) changed your PATH so the wrong things are found first, or 4) did something else.