Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 6a9a82d

Browse files
author
Anselm Kruis
committed
merge branch 3.5
2 parents b5aa291 + 5700ae8 commit 6a9a82d

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,8 @@ Build
308308
Windows
309309
-------
310310

311+
- Issue #25361: Disables use of SSE2 instructions in Windows 32-bit build
312+
311313
- Issue #25089: Adds logging to installer for case where launcher is not
312314
selected on upgrade.
313315

PCbuild/pyproject.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
<CompileAs>Default</CompileAs>
4444
<SuppressStartupBanner>true</SuppressStartupBanner>
4545
<WholeProgramOptimization>true</WholeProgramOptimization>
46+
<EnableEnhancedInstructionSet Condition="'$(Platform)'=='Win32'">NoExtensions</EnableEnhancedInstructionSet>
4647
</ClCompile>
4748
<ClCompile Condition="$(Configuration) == 'Debug'">
4849
<Optimization>Disabled</Optimization>

PCbuild/pythoncore.vcxproj.filters

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,9 @@
495495
<ClInclude Include="..\Modules\hashtable.h">
496496
<Filter>Modules</Filter>
497497
</ClInclude>
498+
<ClInclude Include="..\Include\odictobject.h">
499+
<Filter>Include</Filter>
500+
</ClInclude>
498501
</ItemGroup>
499502
<ItemGroup>
500503
<ClCompile Include="..\Modules\_bisectmodule.c">
@@ -1028,6 +1031,9 @@
10281031
<ClCompile Include="..\PC\invalid_parameter_handler.c">
10291032
<Filter>PC</Filter>
10301033
</ClCompile>
1034+
<ClCompile Include="..\Objects\odictobject.c">
1035+
<Filter>Objects</Filter>
1036+
</ClCompile>
10311037
<ClCompile Include="..\Stackless\core\cframeobject.c">
10321038
<Filter>Stackless\core</Filter>
10331039
</ClCompile>

0 commit comments

Comments
 (0)