Issue
I am debugging a Qt application. Where can I find Qt’s debug dll?
I am using vs2010 on windows. It says it needs the pdb file for many .dll from Qt.
Solution
The Qt SDK does not come with debugging symbols for release builds. You have to compile the whole thing from source with the correct compiler flags to get the .pdb files you need.
See this bug report.
Answered By – sjdowling
Answer Checked By – Gilberto Lyons (BugsFixing Admin)