Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

huangqinjin/ucrt

Repository files navigation

What the UCRT is

Visual C++ C Runtime (CRT) was shipped with and versioned by each releases of Visual Studio (2002, 2003, 2005, 2008,2010, 2012, and 2013) before. Since Visual Studio 2015, the CRT has been split into two logical parts: TheVCRuntime,which contained the compiler support functionality required for things like process startup and exception handling, anda "stable" part namedUniversal CRT, which can be considered as the Windows' equivalent of the GNU C Library (glibc)in the Linux world, that contained all of the purely library parts of the CRT including C99 and POSIX functionality andsome extensions.

How the UCRT exsits

A C++ program built with Visual Studio 2015 or later will depend on the Universal CRT. The UCRT DLLs are nameducrtbase.dll (release) and ucrtbased.dll (debug); they do not include a version number and become components of WindowsOperating System.

  • The UCRT is a part of Windows 10.
  • There are Windows Update MSU packages that distribute the UCRT for Windows Vista, 7 and 8.x.
  • On Windows XP, the VCRedist will deploy the UCRT itself.

Where the UCRT sources

A subset of UCRT sources has been released under the MIT license atnuget.org. Alternatively, they can be found at below locations:

  • Include:C:\Program Files (x86)\Windows Kits\10\Include\%Version%\ucrt.
  • Source:C:\Program Files (x86)\Windows Kits\10\Source\%Version%\ucrt.
  • Redist DLLs:C:\Program Files (x86)\Windows Kits\10\Redist\%Version%\ucrt\DLLs\%ARCH%.
  • Debug DLL:C:\Program Files (x86)\Windows Kits\10\bin\%Version%\%ARCH%\ucrt.

References

  1. Introducing the Universal CRT.
  2. Determining Which DLLs to Redistribute.
  3. Update for Universal C Runtime in Windows.
  4. https://github.com/microsoft/STL?tab=readme-ov-file#block-diagram

[8]ページ先頭

©2009-2025 Movatter.jp