c++ - gcc debug log files on Windows? -
I'm starting to run built-in Qt applications using minimal GP and there is a question about debug logs . When using the code compiled with MSVC, if my app used to crash the file or mini-dump, then it could have been priceless when diagnosing that problem. There is even a very quiet library that can generate and then automatically email this log file back home.
Will I be blessed with the same debugging log when the application created using a GCC crash? If not, is there any device that can use useful logs that I can use to diagnose problems?
Through default application compiled with GCC, they do not log when crashed - you Will have to do something. On some platforms (no windows), they can build a core dump, which can be used for debugging, but this is not particularly something with GCC.
Comments
Post a Comment