您的位置:首页 > 其它

VS2013让Release程序生成pdb文件

2016-05-16 20:12 302 查看
用VS调试Release的程序,发现无法调试。其实,并不是Release的程序不能调试,而是没有让Release的程序生成pdb文件,VS无法加载pdb文件而无法调试程序。

设置一下,让Release的程序也生成pdb文件,就好了,


http://blog.csdn.net/zengraoli/article/details/28910485
vc2012报错了:

1>c:\program files (x86)\microsoft visual studio11.0\vc\include\xutility(2176): error C4996: 'std::_Copy_impl': Function callwith parameters that may be unsafe - this call relies on the caller to checkthat the passed values are correct. To disable this warning,
use-D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'CheckedIterators'

 

 

 

加入预处理器(项目属性----C/C++----预处理----预处理器定义):

_SCL_SECURE_NO_WARNINGS
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: