[Python-checkins] ARM64 clamping bug also exists in MSVC 14.35 (GH-105679)
zooba
webhook-mailer at python.org
Mon Jun 12 11:09:30 EDT 2023
https://github.com/python/cpython/commit/58f0bda34126ed790000451874b96140737f40ed
commit: 58f0bda34126ed790000451874b96140737f40ed
branch: main
author: Steve Dower <steve.dower at python.org>
committer: zooba <steve.dower at microsoft.com>
date: 2023-06-12T15:09:14Z
summary:
ARM64 clamping bug also exists in MSVC 14.35 (GH-105679)
files:
M PCbuild/pyproject.props
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
index 36c4c269d05da..fd928cafd77aa 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