`
king_c
  • 浏览: 223535 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

error : Please use the /MD switch for _AFXDLL builds 的解决方法

 
阅读更多

在用vs打开项目后,编译的时候出现“Please use the /MD switch for _AFXDLL builds”

这个错误的解决方法如下:


修改如下设置:工程(Project)->属性(Properties)->配置属性(Configuration Properties)->c/c++->代码生成(Code Generation)->运行时库(Use run-time library)->多线程调试DLL(/MDd)(Multithreaded DLL/Debug Multithreaded DLL)

分享到:
评论

相关推荐

    C++中常见错误

    IntelliSense: #error directive: Please use the /MD switch for _AFXDLL builds. ``` **错误原因:** 此错误通常发生在使用Microsoft Visual Studio进行MFC项目开发时。当项目设置为使用多线程调试DLL(/MDd)...

    DCMTK 新手使用指南

    在编辑时,可能会出现“fatal error C1189: #error : Please use the /MD switch for _AFXDLL builds”错误。这是因为需要在 Project->Settings->Preprocessor definitions 中添加相应的预处理器定义。 DCMTK 库...

    evc 转换到 vs2005的若干问题

    #### 问题一:编译错误`fatal error C1189: #error : Please use the /MD switch for _AFXDLL builds` **描述**:在尝试编译项目时,会出现一个编译错误,指出在`afxver_.h`文件中的第77行出现致命错误,提示应该...

    VC_6.0编译器错误整理.doc

    错误提示:** `fatal error C1189: #error: Please use the /MD switch for _AFXDLL builds` **说明:** 此错误提示要求使用`/MD`编译开关来构建MFC DLL项目。 **解决方法:** 添加`/MD`编译开关。 - **操作步骤:** ...

    vc++课程设计 聊天程序 任务书及源程序打包

    #ifdef _AFXDLL Enable3dControls(); // Call this when using MFC in a shared DLL #else Enable3dControlsStatic(); // Call this when linking to MFC statically #endif CChatDlg dlg; m_pMainWnd = &dlg...

    Compiler.rar

    cl stdafx.cpp /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_AFXDLL" /D "_MBCS" /Fp"Release/Test.pch" /Yc"stdafx.h" /Fo"Release/" /Fd"Release/" /FD /c cl qq.cpp /nologo /MD /W3 /GX ...

    Socket编程问题.docx

    接下来,错误提示“Please use the /MD switch for _AFXDLL builds”表明在构建项目时,需要使用多线程调试DLL运行时库。在VS中,可以在项目的属性设置里更改此选项。具体步骤如下: 1. 打开工程属性页(右键点击...

    Socket编程问题.pdf

    此外,错误还提到了"Please use the /MD switch for _AFXDLL builds",这意味着在Visual Studio中,当你试图编译一个使用MFC(Microsoft Foundation Classes)的DLL项目时,需要将运行时库设置为多线程调试DLL版本。...

    毕业设计五子棋源代码

    // FiveChess.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "FiveChess.h" #include "MainFrm.h" #include "FiveChessDoc.h" #include "FiveChessView.h" #include ...

    AFXDLL的使用方法,作用,技巧之类的

    AFXDLL 的使用方法、作用和技巧 在 C++ programming 中,AFXDLL 是一个非常重要的概念,尤其是在 MFC(Microsoft Foundation Classes)应用程序开发中。下面我们将详细讲解 AFXDLL 的使用方法、作用和技巧。 什么...

    防火墙设计

    // fire.cpp : Defines the class behaviors for the application. // #include "StarWarsCtrl.h" // Added by ClassView #include "stdafx.h" #include "fire.h" #include "MainFrm.h" #include "fireDoc.h" #...

    图像处理程序大全 C++

    if (ERROR_ALREADY_EXISTS == GetLastError()) // 判断程序是否已运行 { AfxMessageBox("该应用程序已运行! ", MB_ICONINFORMATION | MB_OK); ExitProcess(0); // 退出应用程序 } } ReleaseMutex...

    C++中用MFC制作的通讯录

    // Lab_link.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "Lab_link.h" #include "Lab_linkDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static ...

    VC++概念文档

    #### 二、去除_AFXDLL宏的方法 在项目中,如果需要改变MFC的链接方式,即从动态链接改为静态链接,或者反过来,可以通过修改预处理器宏的定义来实现。然而,直接在项目设置中删除`_AFXDLL`的定义可能并不容易。一种...

    大地测量中的大地正解

    // 大地测量学.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "大地测量学.h" #include "MainFrm.h" #include "大地测量学Doc.h" #include "大地测量学View.h" #...

    visual c++ 课程设计 GPA计算器 源程序

    Creating command line "rc.exe /l 0x804 /fo"Release/GPACalculator.res" /d "NDEBUG" /d "_AFXDLL" "F:\已完成\章节(程序)\ch3\GPACalculator\GPACalculator.rc"" Creating temporary file "C:\DOCUME~1\Simply\...

    c++课程设计钟表程序

    // timer.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "timer.h" #include "timerDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_...

    生产者消费者问题VC实现

    // pc问题.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "pc问题.h" #include "pc问题Dlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char ...

    vc++小程序原文件

    相关代码:// 颜色矩形.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "颜色矩形.h" #include "颜色矩形Dlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_...

    Ring3下获取原始的SSDT

    // ssdt.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "ssdt.h" #include "ssdtDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_...

Global site tag (gtag.js) - Google Analytics