diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-06-12 16:02:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-12 16:02:39 (GMT) |
commit | f5b63eab9b974d1a547c9ed4e148fc152b242d72 (patch) | |
tree | c525f5aebba682200dac7995432996caed8953bb /PCbuild/pyproject.props | |
parent | 171aa086f27e581bfcf2288d5afd0167480ef3cb (diff) | |
download | cpython-f5b63eab9b974d1a547c9ed4e148fc152b242d72.zip cpython-f5b63eab9b974d1a547c9ed4e148fc152b242d72.tar.gz cpython-f5b63eab9b974d1a547c9ed4e148fc152b242d72.tar.bz2 |
[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@python.org>
Diffstat (limited to 'PCbuild/pyproject.props')
-rw-r--r-- | PCbuild/pyproject.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index b1b0447..199bf72 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> |