https://docs.microsoft.com/en-us/troubleshoot/cpp/faq-standard-cpp-library
Basic C-Runtime libraryVisual C++ include the following libraries in addition to the Microsoft Foundation Classes (MFC) libraries:
- Standard C++ library
| Library types and related compiler switches | Basic C Runtime library / Standard C++ library |
|---|---|
| Single-threaded (/ML) | libc.lib / libcp.lib |
| Debug Single-threaded (/MLd) | libcd.lib / libcpd.lib |
| Multithreaded (/MT) | libcmt.lib / libcpmt.lib |
| Debug Multithreaded (/MTd) | libcmtd.lib / libcpmtd.lib |
| Multithreaded DLL (/MD) | msvcrt.lib / msvcprt.lib |
| Debug Multithreaded /DLL (MDd) | msvcrtd.lib / msvcprtd.lib |
6万+

被折叠的 条评论
为什么被折叠?



