[Python-checkins] [3.11] ARM64 clamping bug also exists in MSVC 14.35 (GH-105679) (#105696)

zooba webhook-mailer at python.org
Mon Jun 12 12:02:48 EDT 2023


https://github.com/python/cpython/commit/f5b63eab9b974d1a547c9ed4e148fc152b242d72
commit: f5b63eab9b974d1a547c9ed4e148fc152b242d72
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: zooba <steve.dower at microsoft.com>
date: 2023-06-12T17:02:39+01:00
summary:

[3.11] ARM64 clamping bug also exists in MSVC 14.35 (GH-105679) (#105696)

ARM64 clamping bug also exists in MSVC 14.35 (GH-105679)
(cherry picked from commit 58f0bda34126ed790000451874b96140737f40ed)

Co-authored-by: Steve Dower <steve.dower at python.org>

files:
M PCbuild/pyproject.props

diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
index b1b04472bb502..199bf72b0d578 100644
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -25,7 +25,7 @@
     <_VCToolsVersion>$([System.Version]::Parse(`$(VCToolsVersion)`).Major).$([System.Version]::Parse(`$(VCToolsVersion)`).Minor)</_VCToolsVersion>
 
     <!-- See https://developercommunity.visualstudio.com/t/Regression-in-MSVC-1433-1434-ARM64-co/10224361 -->
-    <MSVCHasBrokenARM64Clamping Condition="$(_VCToolsVersion) == '14.34'">true</MSVCHasBrokenARM64Clamping>
+    <MSVCHasBrokenARM64Clamping Condition="$(_VCToolsVersion) == '14.34' or $(_VCToolsVersion) == '14.35'">true</MSVCHasBrokenARM64Clamping>
   </PropertyGroup>
 
   <PropertyGroup>



More information about the Python-checkins mailing list