mirror of
https://github.com/python/cpython.git
synced 2025-09-14 12:46:49 +00:00
Issue #25361: Disables use of SSE2 instructions in Windows 32-bit build
This commit is contained in:
parent
9c8213fbc1
commit
5700ae877f
3 changed files with 9 additions and 0 deletions
|
@ -308,6 +308,8 @@ Build
|
||||||
Windows
|
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
|
- Issue #25089: Adds logging to installer for case where launcher is not
|
||||||
selected on upgrade.
|
selected on upgrade.
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
<CompileAs>Default</CompileAs>
|
<CompileAs>Default</CompileAs>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<EnableEnhancedInstructionSet Condition="'$(Platform)'=='Win32'">NoExtensions</EnableEnhancedInstructionSet>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Condition="$(Configuration) == 'Debug'">
|
<ClCompile Condition="$(Configuration) == 'Debug'">
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
|
|
|
@ -435,6 +435,9 @@
|
||||||
<ClInclude Include="..\Modules\hashtable.h">
|
<ClInclude Include="..\Modules\hashtable.h">
|
||||||
<Filter>Modules</Filter>
|
<Filter>Modules</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\Include\odictobject.h">
|
||||||
|
<Filter>Include</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\Modules\_bisectmodule.c">
|
<ClCompile Include="..\Modules\_bisectmodule.c">
|
||||||
|
@ -968,6 +971,9 @@
|
||||||
<ClCompile Include="..\PC\invalid_parameter_handler.c">
|
<ClCompile Include="..\PC\invalid_parameter_handler.c">
|
||||||
<Filter>PC</Filter>
|
<Filter>PC</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\Objects\odictobject.c">
|
||||||
|
<Filter>Objects</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="..\PC\python_nt.rc">
|
<ResourceCompile Include="..\PC\python_nt.rc">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue