PDA

View Full Version : QtQuick unable to debug on 64bit OS



Talei
14th August 2013, 06:45
Hello,
I have a problem with debugger on Windows 8 x64. In short debugger stops after SetUnhandledExceptionFilter when application have QQuickView.

Qt 5.1 for Windows 32 (mingw - 4.8, OpenGL), OS Widnows 8 x64 bit.

Simple application with i.e


QQuickView *v = new QQuickView();
v->show().

while debugging stops on QQuickView or before.

Application output throws:


QML Debugger: Waiting for connection on port 3768...

STATUS_STACK_BUFFER_OVERRUN encountered
(Internal error: pc 0x1 in read in psymtab, but not in symtab.)
...

Removing above line, QQuickView I mean, resolves issue and debugger works ok.

Any idea what is causing this? Maybe MinGW 32bit issue on 64bit os?

PS. Application works fine if it's not "debugged", so issue is probably witch dbg itself.

Regards