There was an error while loading. Please reload this page.
1 parent cf59bc3 commit b87189dCopy full SHA for b87189d
2 files changed
Misc/NEWS.d/next/Build/2025-04-17-19-10-15.gh-issue-132649.DZqGoq.rst
@@ -0,0 +1,2 @@
1
+The :file:`PC\layout` script now allows passing ``--include-tcltk`` on
2
+Windows ARM64.
PC/layout/main.py
@@ -657,7 +657,7 @@ def main():
657
if ns.arch not in ("win32", "amd64", "arm32", "arm64"):
658
log_error("--arch is not a valid value (win32, amd64, arm32, arm64)")
659
return 4
660
- if ns.arch in ("arm32", "arm64"):
+ if ns.arch == "arm32":
661
for n in ("include_idle", "include_tcltk"):
662
if getattr(ns, n):
663
log_warning(f"Disabling --{n.replace('_', '-')} on unsupported platform")
0 commit comments