[Qt-creator] Slow cdb

2013-06-04 Thread Peter Kümmel
Wasn't there a wiki entry about dead slow cdb or cdb in general? I think there was something related to the warning WARNING: Unable to verify checksum for ... but I couldn't find it any more. What was the reason for this warning, is this warning related to the slowdown? How could I fix the

Re: [Qt-creator] Slow cdb

2013-06-04 Thread André Hartmann
Do you try to access global variables? I sometimes have a dead slow cdb too, if I try to access member / global variables that are out of scope. In this case, there are warnings in the debugger log that it can't access the variable. Once you run into this problem, the only solution is to

Re: [Qt-creator] Slow cdb

2013-06-04 Thread David Schulz
Hi Peter, the warning could result from using the Microsoft Symbol Server. The problem is that the cdb tries to get all your symbols from this server. What results in some overhead for all the symbols which are not available. For Example the whole Qt and QtCreator libraries. If you have a

Re: [Qt-creator] Slow cdb

2013-06-04 Thread Peter Kümmel
On 04.06.2013 10:27, David Schulz wrote: Hi Peter, the warning could result from using the Microsoft Symbol Server. The problem is that the cdb tries to get all your symbols from this server. What results in some overhead for all the symbols which are not available. For Example the whole Qt