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 c52ba1f commit e9b0ea6Copy full SHA for e9b0ea6
cpython-windows/build.py
@@ -1303,6 +1303,12 @@ def build_cpython(
1303
log("copying %s to %s" % (source, dest))
1304
shutil.copyfile(source, dest)
1305
1306
+ # Delete the tk nmake helper, it's not needed and links msvc
1307
+ tcltk_commit = DOWNLOADS["tk-windows-bin"]["git_commit"]
1308
+ tcltk_path = td / ("cpython-bin-deps-%s" % tcltk_commit)
1309
+ tcltk_arch = {"amd64": "amd64", "x86": "win32"}[arch]
1310
+ (tcltk_path / tcltk_arch / "lib" / "nmake" / "x86_64-w64-mingw32-nmakehlp.exe").unlink()
1311
+
1312
cpython_source_path = td / ("Python-%s" % python_version)
1313
pcbuild_path = cpython_source_path / "PCbuild"
1314
0 commit comments