Debugging information cannot be found or does not match

来源:互联网 发布:我要下载淘宝网 编辑:程序博客网 时间:2024/06/05 19:06

最近使用VS2013配置opencv3,x64出现以下错误,按照以下流程成功解决,ye。


from:http://social.msdn.microsoft.com/Forums/zh-CN/Vsexpressvc/thread/503d3ded-976e-460e-b5f9-7e03454ed387


问题:
Debugging information for "project.exe" cannot be found or does not match. Binary was not built with debug information.

答案:
To enable debugging:

1) Goto Project->HelloWorld Properties
2) On the left expand "Configuration Properties"
3) Expand "C/C++"
4) On the left, Select "General"
5) On the right, change "Debug Information Format" to "Program Database For Edit And Continue (/ZI)"
5) On the left, Select "Optimization"
6) On the right, change "Optimization" to "Disabled (/Od)"
7) On the left, expand "Linker"
8) On the left, select "Debugging"
9) On the right, change "Generate Debug Info" to "Yes"
10) Click ok
11) Set your breakpoints
12) Rebuild your application

Also when running your application use Ctrl+F5 to build and run it, this keeps the console window open long enough for you to see your output.
阅读全文
0 0
原创粉丝点击