Hello!
I' m using Qt 4.6 + QtCreator + MinGW.
When an expression in Q_ASSERT evaluates to false my application just aborts with a message in the debug output, that is often meaningless. How can I make it to break into debugger to the line that contains the assert, so I can see the call stack?
I googled a lot, but found only
asm("int $0x3");
which is weird and won't work in x64.
Thanks in advance.