[Python-checkins] bpo-38492: Remove pythonw.exe dependency on the Microsoft C++ runtime (GH-16824)

Miss Islington (bot) webhook-mailer at python.org
Wed Oct 16 13:46:39 EDT 2019


https://github.com/python/cpython/commit/7773d391f8261a97af502ecfa74a2a588ee05f36
commit: 7773d391f8261a97af502ecfa74a2a588ee05f36
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-10-16T10:46:29-07:00
summary:

bpo-38492: Remove pythonw.exe dependency on the Microsoft C++ runtime (GH-16824)

(cherry picked from commit 7aebbd1182bc818324656b2fb764679faf51fdff)

Co-authored-by: Steve Dower <steve.dower at python.org>

files:
A Misc/NEWS.d/next/Windows/2019-10-16-09-49-09.bpo-38492.Te1LxC.rst
M PCbuild/pythonw_uwp.vcxproj

diff --git a/Misc/NEWS.d/next/Windows/2019-10-16-09-49-09.bpo-38492.Te1LxC.rst b/Misc/NEWS.d/next/Windows/2019-10-16-09-49-09.bpo-38492.Te1LxC.rst
new file mode 100644
index 0000000000000..41fe695413f97
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2019-10-16-09-49-09.bpo-38492.Te1LxC.rst
@@ -0,0 +1 @@
+Remove ``pythonw.exe`` dependency on the Microsoft C++ runtime.
diff --git a/PCbuild/pythonw_uwp.vcxproj b/PCbuild/pythonw_uwp.vcxproj
index 79e105877fbeb..e2c01710498ee 100644
--- a/PCbuild/pythonw_uwp.vcxproj
+++ b/PCbuild/pythonw_uwp.vcxproj
@@ -65,6 +65,15 @@
       <SubSystem>Windows</SubSystem>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="$(Configuration) != 'Debug'">
+    <ClCompile>
+      <RuntimeLibrary>Multithreaded</RuntimeLibrary>
+    </ClCompile>
+    <Link>
+      <AdditionalDependencies>ucrt.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <IgnoreSpecificDefaultLibraries>libucrt;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <None Include="..\PC\pyconw.ico" />
   </ItemGroup>



More information about the Python-checkins mailing list