本文介绍了Visual Studio 中的/mtd 和/mdd(在代码生成属性部分)有什么区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Visual Studio中指定/mdd
(多线程调试dll)和/mtd
(多线程调试)有什么区别??
What's the difference between specifying /mdd
(multi-threaded debug dll) and /mtd
(multi-threaded debug) in Visual Studio??
推荐答案
/mtd
需要一个静态链接,以生成一个更大但不是的 .exe
依赖于包含运行时库的 DLL(VS2005 附带的).
/mtd
requires a static link, to produce a .exe
that's larger but not dependent on the DLL (that comes with VS2005) containing the runtime library.
这篇关于Visual Studio 中的/mtd 和/mdd(在代码生成属性部分)有什么区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!