summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranimalize <animalize@users.noreply.github.com>2019-06-24 23:43:26 (GMT)
committerSteve Dower <steve.dower@python.org>2019-06-24 23:43:26 (GMT)
commit8bd2872adbbc7ed5dd0a7593193c52431ae34c8d (patch)
tree12ced2ae6acac5c3d6c41294252a842181224e2c
parent7fd2ba354ec2304743ffd9ba620e07d113532264 (diff)
downloadcpython-8bd2872adbbc7ed5dd0a7593193c52431ae34c8d.zip
cpython-8bd2872adbbc7ed5dd0a7593193c52431ae34c8d.tar.gz
cpython-8bd2872adbbc7ed5dd0a7593193c52431ae34c8d.tar.bz2
bpo-25361: Enable SSE2 instructions for Windows 32-bit build (GH-12438)
-rw-r--r--Misc/NEWS.d/next/Build/2019-03-19-22-07-37.bpo-25361.XO9Bfr.rst1
-rw-r--r--PCbuild/pyproject.props1
2 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Build/2019-03-19-22-07-37.bpo-25361.XO9Bfr.rst b/Misc/NEWS.d/next/Build/2019-03-19-22-07-37.bpo-25361.XO9Bfr.rst
new file mode 100644
index 0000000..9953b07
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2019-03-19-22-07-37.bpo-25361.XO9Bfr.rst
@@ -0,0 +1 @@
+Enables use of SSE2 instructions in Windows 32-bit build.
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
index 7c0f50b..c4c07c5 100644
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -43,7 +43,6 @@
<CompileAs>Default</CompileAs>
<SuppressStartupBanner>true</SuppressStartupBanner>
<WholeProgramOptimization>true</WholeProgramOptimization>
- <EnableEnhancedInstructionSet Condition="'$(Platform)'=='Win32'">NoExtensions</EnableEnhancedInstructionSet>
<InlineFunctionExpansion Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">OnlyExplicitInline</InlineFunctionExpansion>
<InlineFunctionExpansion Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">OnlyExplicitInline</InlineFunctionExpansion>
</ClCompile>