“二进制文件不是用调试信息构建的"mfc 应用程序中的警告含义?

2023-07-01C/C++开发问题
13

本文介绍了“二进制文件不是用调试信息构建的"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 应用程序中的警告含义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

如何使用 Visual Studio 2017 在 Windows 上构建 OpenSSL?
How to build OpenSSL on Windows with Visual Studio 2017?(如何使用 Visual Studio 2017 在 Windows 上构建 OpenSSL?)...
2024-08-14 C/C++开发问题
1

如何在 Qt 中实现 OpenSSL?
How to implement OpenSSL in Qt?(如何在 Qt 中实现 OpenSSL?)...
2024-08-14 C/C++开发问题
6

在 Visual Studio 2012 中使用 OpenSSL
using OpenSSL in Visual Studio 2012(在 Visual Studio 2012 中使用 OpenSSL)...
2024-08-14 C/C++开发问题
109

C++ 中的 Curl - 无法从 HTTPS 获取数据
Curl in C++ - Can#39;t get data from HTTPS(C++ 中的 Curl - 无法从 HTTPS 获取数据)...
2024-08-14 C/C++开发问题
12

如何在 Windows 中使用 MinGW 构建 OpenSSL?
How to build OpenSSL with MinGW in Windows?(如何在 Windows 中使用 MinGW 构建 OpenSSL?)...
2024-08-14 C/C++开发问题
6

Windows 上的 OpenSSL 可以使用系统证书存储吗?
Can OpenSSL on Windows use the system certificate store?(Windows 上的 OpenSSL 可以使用系统证书存储吗?)...
2024-08-14 C/C++开发问题
5