|
楼主 |
发表于 2008-12-24 19:43:49
|
显示全部楼层
回复: 混合模式应用程序中的属性求值
Hi Flora,
It sounds like your Find_Cycles.exe is not being built with pdb data, or you are launching it from a different directory from where the PDB is stored.
You can solve the first problem by making sure to build the Debug configuration (should be on the build toolbar, or you can pick it from the Build | Configuration Manager menu option)
If you are already building the debug configuration (or want to build some other configuration) and it is still not working, make sure that your project is generating PDB output.
For C++, this is under General options for the project. You need to check both the C/C++ and linker subcategories.
If that still doesn't work, or you are sure that a PDB file is being generated, it may be that the PDB file is not found in the symbol path.
Go to Tools | Options, and pick the Debugging category on the left. Then pick the Symbols subcategory. In the page that appears to the right, make sure to add where your PDB file is generated to the list of locations for symbols.
Hope that helps.
- Rich |
|