Issue #25361: Disables use of SSE2 instructions in Windows 32-bit build
This commit is contained in:
commit
80b31402d5
|
@ -459,6 +459,8 @@ Build
|
|||
Windows
|
||||
-------
|
||||
|
||||
- Issue #25361: Disables use of SSE2 instructions in Windows 32-bit build
|
||||
|
||||
- Issue #25089: Adds logging to installer for case where launcher is not
|
||||
selected on upgrade.
|
||||
|
||||
|
|
|
@ -43,6 +43,7 @@
|
|||
<CompileAs>Default</CompileAs>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<EnableEnhancedInstructionSet Condition="'$(Platform)'=='Win32'">NoExtensions</EnableEnhancedInstructionSet>
|
||||
</ClCompile>
|
||||
<ClCompile Condition="$(Configuration) == 'Debug'">
|
||||
<Optimization>Disabled</Optimization>
|
||||
|
|
|
@ -435,6 +435,9 @@
|
|||
<ClInclude Include="..\Modules\hashtable.h">
|
||||
<Filter>Modules</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\Include\odictobject.h">
|
||||
<Filter>Include</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\Modules\_bisectmodule.c">
|
||||
|
@ -968,6 +971,9 @@
|
|||
<ClCompile Include="..\PC\invalid_parameter_handler.c">
|
||||
<Filter>PC</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\Objects\odictobject.c">
|
||||
<Filter>Objects</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="..\PC\python_nt.rc">
|
||||
|
|
Loading…
Reference in New Issue