#error Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]
时间: 2024-04-27 16:24:02 浏览: 236
这个错误通常是因为在使用 MFC 库时,编译器的选项设置有误导致的。在使用 MFC 库时,需要使用共享 DLL 版本的 MFC 库和动态链接的运行时库(/MD 或 /MDd 选项)。解决该问题的方法是:
1. 在项目属性中的 C/C++ -> 预处理器 -> 预处理器定义 中添加 _AFXDLL。
2. 或者,在项目属性中的 C/C++ -> 代码生成 -> 运行库 中选择使用 MFC 的共享 DLL 版本(/MD 或 /MDd 选项)。
3. 重新编译项目,该错误应该就会消失。
相关问题
Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]
这是一个编译器错误提示,意思是说如果你想使用动态链接Microsoft Visual C++运行库(CRT dll version,/MD[d]选项),则需要使用MFC共享dll版本(MFC shared dll version),并且需要在代码中定义宏_AFXDLL。如果不想使用MFC共享dll版本,则需要修改编译选项,不使用/MD[d]选项。
阅读全文