bpo-35758: Fix building on ARM + MSVC by gongminmin · Pull Request #11531 · python/cpython
gongminmin
changed the title
bpo-14802: Disable x87 control word for ARM
bpo-35758 : Disable x87 control word for ARM
On msvc, x87 control word is only available on x86 target. Need to disable it for other targets to prevent compiling problems.
Immintrin.h is only available on x86 and x64. Need to disable it for other targets to prevent compiling problems.
pitrou
changed the title
bpo-35758 : Disable x87 control word for ARM
bpo-35758 : Fix building on ARM + MSVC
pitrou
changed the title
bpo-35758 : Fix building on ARM + MSVC
bpo-35758: Fix building on ARM + MSVC
gongminmin added a commit to gongminmin/cpython that referenced this pull request
Jan 22, 2019* Disable x87 control word for non-x86 targets On msvc, x87 control word is only available on x86 target. Need to disable it for other targets to prevent compiling problems. * Include immintrin.h on x86 and x64 only Immintrin.h is only available on x86 and x64. Need to disable it for other targets to prevent compiling problems.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters