diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-10-11 22:16:21 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-10-11 22:16:21 (GMT) |
commit | 80b31402d590519a9e59512707987f8a3ad37768 (patch) | |
tree | bbd865efe194cfe380b33bb9981bca17ac9231cd /PCbuild | |
parent | 6b1e113f9f142a0e531d0ae3d45cc31341fc9949 (diff) | |
parent | 5700ae877fc1a93cebe95739c6817d06768504c0 (diff) | |
download | cpython-80b31402d590519a9e59512707987f8a3ad37768.zip cpython-80b31402d590519a9e59512707987f8a3ad37768.tar.gz cpython-80b31402d590519a9e59512707987f8a3ad37768.tar.bz2 |
Issue #25361: Disables use of SSE2 instructions in Windows 32-bit build
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pyproject.props | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index c1303e1..a2c44f3 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -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> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 3b275bb..837b736 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -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"> |