博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ Run-Time Libraries
阅读量:5244 次
发布时间:2019-06-14

本文共 2213 字,大约阅读时间需要 7 分钟。

 

推荐一个我自己做的一个电影站,绝对没弹窗:-)   速看电影吧,每天都更新,

最新的电影电视剧都在速看电影吧!~

 

 

Visual C++ libraries have been packaged in several shared side-by-side assemblies with corresponding manifest files.

Assembly Name

DLLs included in the assembly

Visual C++ Library

Microsoft.VC90.ATL

atl100.dll

Active Template Library

Microsoft.VC90.CRT

msvcr100.dll

msvcp100.dll

msvcm100.dll

C Runtime Library, release DLLs

Microsoft.VC90.DebugCRT

msvcr100d.dll

msvcp100d.dll

msvcm100d.dll

C Runtime Library, debug DLLs

Microsoft.VC90.MFC

mfc100.dll

mfcm100.dll

mfc100u.dll

mfcm100u.dll

Microsoft Foundation Classes, release DLLs

Microsoft.VC90.DebugMFC

mfc100d.dll

mfcm100d.dll

mfc100ud.dll

mfcm100ud.dll

Microsoft Foundation Classes, debug DLLs

Microsoft.VC90.MFCLOC

mfc100chs.dll

mfc100deu.dll

mfc100esn.dll

mfc100ita.dll

mfc100kor.dll

mfc100cht.dll

mfc100enu.dll

mfc100fra.dll

mfc100jpn.dll

mfc100rus.dll

Microsoft Foundation Classes, localized resources

Microsoft.VC90.OpenMP

vcomp100.dll

OpenMP Library, release DLLs

Microsoft.VC90.DebugOpenMP

vcomp100d.dll

OpenMP Library, debug DLLs

When you build applications with Visual C++ 2008, you may need to redistribute Visual C++ libraries and deploy the corresponding DLLs to customers' desktops. For more information please see .

 


The following libraries contain the C run-time library functions.

C run-time library (without iostream or standard C++ library)

Associated DLL

Characteristics

Option

Preprocessor directives

libcmt.lib

None, static link.

Multithreaded, static link

_MT

msvcrt.lib

msvcr100.dll

Multithreaded, dynamic link (import library for MSVCR100.DLL). Be aware that if you use the Standard C++ Library, your program will need MSVCP100.DLL to run.

_MT, _DLL

libcmtd.lib

None, static link

Multithreaded, static link (debug)

/MTd

_DEBUG, _MT

msvcrtd.lib

msvcr100d.dll

Multithreaded, dynamic link (import library for MSVCR100D.DLL) (debug).

/MDd

_DEBUG, _MT, _DLL

msvcmrt.lib

None, static link

C Runtime static library. Used for mixed managed/native code.

/clr

/clr:oldSyntax

 

msvcurt.lib

None, static link

C Runtime static library compiled as 100% pure MSIL code. All code complies with the ECMA URT spec for MSIL.

/clr:pure

 

 

 

 

 

转载于:https://www.cnblogs.com/kongchao/archive/2011/04/01/2002157.html

你可能感兴趣的文章
Nodejs --我自己的学习笔记
查看>>
实现幸运抽奖
查看>>
数据库表直接生成Excel
查看>>
git常用使用命令
查看>>
pip 升级 Appium-Python-Client
查看>>
树莓派 ubuntu 系统下修改config.txt文件调整分辨率记录
查看>>
js移除数组中德重复数据
查看>>
使用集合组织相关数据
查看>>
Storm:最火的流式处理框架
查看>>
(二十)、MVC设计思想的优缺点
查看>>
Python程序员的进化史
查看>>
测试窗体只能用于来自本地计算机的请求。
查看>>
忘记mysql密码,如何修改方法。
查看>>
SGU 326 Perspective ★(网络流经典构图の竞赛问题)
查看>>
[转]JS中match、replace方法中使用正则表达式
查看>>
JAVA 调用matlab【转】
查看>>
JavaScript系列教程(九):数组
查看>>
8_DeclarationsAndStatements
查看>>
转:网站Banner设计之道:文字处理
查看>>
DotNetCore 部署到IIS 上
查看>>