Does that make sense?
-
回复: [SOLVED] How to build Release with debug info (MinGW)
If I refer to the solution, I can generate exe files with debugging information, but I also need to bring DLL files with debugging information. What's the difference between this and debugging version?
-
Is there no better solution with MinGW as a compiler?
-
Hi
Is there any reason you can't just use a debug build of the exe with the
Qt debug dlls/so files? -
Usually, we test our program until we can't find a bug, but in fact, there can't be no bug, so we often hope to get the call stack information to help us judge the problem when there is a bug in the user environment, but in general, the DLL we publish is a version without debugging information, if there is an additional file at this time, With debugging information, we can help us find problems, such as PDB file, which is the ideal solution.
-
I don't know if that tells me what I need. :)