diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-06-19 17:49:04 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-06-19 17:49:04 (GMT) |
commit | 6d58f8dc525f2bdf7e6d4d2b4ce1e63a6a166940 (patch) | |
tree | b7f704e17f47a763f6bbb33ddbb8781d4a049dd0 /Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | |
parent | 4ab4ac8e035060956f71fb73feae567a83bc5fbd (diff) | |
download | cpython-6d58f8dc525f2bdf7e6d4d2b4ce1e63a6a166940.zip cpython-6d58f8dc525f2bdf7e6d4d2b4ce1e63a6a166940.tar.gz cpython-6d58f8dc525f2bdf7e6d4d2b4ce1e63a6a166940.tar.bz2 |
Issue 24476: Statically links vcruntime140.dll and removes it from the installer
Diffstat (limited to 'Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp')
-rw-r--r-- | Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp index 62b9614..1917937 100644 --- a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp +++ b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp @@ -2402,8 +2402,6 @@ private: // Check whether at least CRT v10.0.9924.0 is available. // It should only be installed as a Windows Update package, which means // we don't need to worry about 32-bit/64-bit. - // However, since the WU package does not include vcruntime140.dll, we - // still install that ourselves. LPCWSTR crtFile = L"api-ms-win-crt-runtime-l1-1-0.dll"; DWORD cbVer = GetFileVersionInfoSizeW(crtFile, nullptr); |