mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-46567: Add Tcl/Tk build for Windows ARM64 (GH-31574)
This commit is contained in:
parent
424ecab494
commit
da7d99a4de
16 changed files with 63 additions and 24 deletions
|
@ -13,14 +13,11 @@
|
|||
<xsl:template match="*[local-name()='String' and @Id='InstallButtonNote']">
|
||||
<String Id="InstallButtonNote">[TargetDir]
|
||||
|
||||
Includes pip and documentation
|
||||
Includes IDLE, pip and documentation
|
||||
Creates shortcuts but no file associations</String>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*[local-name()='String' and @Id='Include_launcherHelp']">
|
||||
<String Id="Include_launcherHelp">(The 'py' launcher is currently unavailable on ARM64.)</String>
|
||||
</xsl:template>
|
||||
<xsl:template match="*[local-name()='String' and @Id='Include_tcltkHelpLabel']">
|
||||
<String Id="Include_tcltkHelpLabel">(tcl/tk and IDLE are currently unavailable on ARM64.)</String>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
|
@ -69,7 +69,7 @@
|
|||
<Package Include="..\path\path*.wixproj" />
|
||||
<Package Include="..\appendpath\appendpath*.wixproj" />
|
||||
<Package Include="..\pip\pip*.wixproj" />
|
||||
<Package Include="..\tcltk\tcltk*.wixproj" Condition="$(Platform) != 'ARM64'" />
|
||||
<Package Include="..\tcltk\tcltk*.wixproj" />
|
||||
<Package Include="..\test\test*.wixproj" />
|
||||
<Package Include="..\tools\tools*.wixproj" />
|
||||
<Package Include="..\ucrt\ucrt*.wixproj" Condition="$(Platform) != 'ARM64'" />
|
||||
|
|
|
@ -77,12 +77,7 @@
|
|||
<Variable Name="Include_test" Value="1" bal:Overridable="yes" />
|
||||
<Variable Name="Include_doc" Value="1" bal:Overridable="yes" />
|
||||
<Variable Name="Include_tools" Value="1" bal:Overridable="yes" />
|
||||
<?if $(var.Platform)~="ARM64" ?>
|
||||
<Variable Name="Include_tcltk" Value="0" />
|
||||
<Variable Name="Include_tcltkState" Value="disable" />
|
||||
<?else ?>
|
||||
<Variable Name="Include_tcltk" Value="1" bal:Overridable="yes" />
|
||||
<?endif ?>
|
||||
<Variable Name="Include_pip" Value="1" bal:Overridable="yes" />
|
||||
<?if $(var.Platform)~="ARM64" ?>
|
||||
<Variable Name="Include_launcher" Value="0" bal:Overridable="yes" />
|
||||
|
@ -122,8 +117,8 @@
|
|||
<PackageGroupRef Id="test" />
|
||||
<PackageGroupRef Id="doc" />
|
||||
<PackageGroupRef Id="tools" />
|
||||
<?if $(var.Platform)!="ARM64" ?>
|
||||
<PackageGroupRef Id="tcltk" />
|
||||
<?if $(var.Platform)!="ARM64" ?>
|
||||
<PackageGroupRef Id="launcher" />
|
||||
<?endif ?>
|
||||
<PackageGroupRef Id="pip" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue