quot;binary was not built with debug information quot; warning meaning in mfc application?(“二进制文件不是用调试信息构建的mfc 应用程序中的警告含义?)
问题描述
当我在 Windows 7 中运行我的 Windows 应用程序 (MFC) 时,我收到以下警告.
I am getting the following Warning when i run my Windows Application(MFC) in Windows 7.
'XXX.exe': Loaded 'C:2010Debuginpluginscontrollibhotkeys_plugin.dll',Binary 没有使用调试信息构建.
请帮帮我.谢谢
推荐答案
您的二进制文件似乎是在发布模式下构建的
It seems that your binary was build in Release mode
现在有两种方法可以遵循....
Now there are two ways which you can follow....
- 使用调试"配置构建二进制文件
更改项目设置,以便在发布模式下生成程序数据库文件 (PDB).
- build the binary with "Debug" configuration
change the project settings so that a Program Database file (PDB) is generated in the release mode.
现在您可以从属性窗口生成 PDB...
Now you can generate PDB from the property window...
这篇关于“二进制文件不是用调试信息构建的"mfc 应用程序中的警告含义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“二进制文件不是用调试信息构建的"mfc 应用程序中的警告含义?
- 从python回调到c++的选项 2022-11-16
- 近似搜索的工作原理 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 静态初始化顺序失败 2022-01-01
- C++ 协变模板 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07