We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
x86_64-w64-mingw32-nmakehlp.exe
1 parent b6c6e40 commit f525650Copy full SHA for f525650
cpython-windows/build.py
@@ -1271,6 +1271,12 @@ def build_cpython(
1271
log("copying %s to %s" % (source, dest))
1272
shutil.copyfile(source, dest)
1273
1274
+ # Delete the tk nmake helper, it's not needed and links msvc
1275
+ tcltk_commit = DOWNLOADS["tk-windows-bin"]["git_commit"]
1276
+ tcltk_path = td / ("cpython-bin-deps-%s" % tcltk_commit)
1277
+ tcltk_arch = {"amd64": "amd64", "x86": "win32"}[arch]
1278
+ (tcltk_path / tcltk_arch / "lib" / "nmake" / "x86_64-w64-mingw32-nmakehlp.exe").unlink()
1279
+
1280
cpython_source_path = td / ("Python-%s" % python_version)
1281
pcbuild_path = cpython_source_path / "PCbuild"
1282
0 commit comments