[issue46427] Correct MSBuild's configuration for _freeze_module.exe

neonene report at bugs.python.org
Tue Jan 18 18:32:09 EST 2022


neonene <nicesalmon at gmail.com> added the comment:

Defenition in general_advanced.xml

  <EnumProperty Name="PreferredToolArchitecture"
                DisplayName="Preferred Build Tool Architecture"
                Description="Determines which build tools will be used to
                             compile programs (32-bit or 64-bit)."
                Category="General"
                ...
    <EnumValue Name="" DisplayName="Default" />
    <EnumValue Name="x86" DisplayName="32-bit (x86)" />
    <EnumValue Name="x64" DisplayName="64-bit (x64)" />
  </EnumProperty>
--------------------

These options above are corresponded to the following folders in my case:

Microsoft Visual Studio\.....\VC\Tools\MSVC\<version-no>\bin\Hostx86
Microsoft Visual Studio\.....\VC\Tools\MSVC\<version-no>\bin\Hostx64

And Each has the 4 children below that contain cl.exe/link.exe/etc...:

  arm
  arm64
  x64
  x86

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue46427>
_______________________________________


More information about the Python-bugs-list mailing list