Qt 5.6.1 installed using MaintenanceTool , studio 2015 update 2 . The application is built in Debug, debug versions of the Qt libraries are connected (with the ending d ). The debugger shows ( Debug-Windows-Modules ) that pdb are loaded. With step-by-step debugging, it does not go to the Qt library code (the studio writes that the .cpp file was not found and suggests tracing further in the disassembler). Is there an option to debug code libraries without downloading sources?
|
1 answer
A detailed answer to your question can be found in this article . In short, no, no source code in any way.
UPD:
The program database file (PDB) contains debugging data and information about the state of the project, allowing you to perform a sequential layout of the debug configuration of the program.
Each time you create an .obj file, the C / C ++ compiler combines debugging data into VCx0.PBD. The data inserted into it includes type information, but does not include character data, such as function definitions.
|