Debugging application outside the qt Creator
-
Hi guys,
I have created a Widget application in Qt 6.5.0 using MinGW-64 and need to debug it on the other system(Lattepanda V1). Is there any way to debug the application outside the qt creator?
I want to create debug log. Does anyone have any idea how to do that?Thanks and regards
Ashish Upara -
@Ashish-Epsilon
(I believe) MinGW comes with the standardgdb
debugger, you can always use that from a Command Prompt, nothing to do with Creator.A debugger will only be of much use on "another system" if you have the sources there.
I want to create debug log.
This has nothing to do with running a debugger. You can put whatever output messages into your code, and send them to file if that is what you want. I don't know what "Lattepanda V1" is, or where
qDebug()
messages might go under such a system.