Staging
v0.5.1
https://github.com/python/cpython
Revision 7a2368063f25746d4008a74aca0dc0b82f86ff7b authored by Minmin Gong on 21 January 2019, 20:49:40 UTC, committed by Antoine Pitrou on 21 January 2019, 20:49:40 UTC
* 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.
1 parent 2433a2a
Raw File
Tip revision: 7a2368063f25746d4008a74aca0dc0b82f86ff7b authored by Minmin Gong on 21 January 2019, 20:49:40 UTC
bpo-35758: Fix building on ARM + MSVC (gh-11531)
Tip revision: 7a23680
unicodedata.vcxproj.filters
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup>
    <Filter Include="Header Files">
      <UniqueIdentifier>{b939a8f1-ccd7-420a-974a-243606dccd74}</UniqueIdentifier>
    </Filter>
    <Filter Include="Source Files">
      <UniqueIdentifier>{e2c055bb-ec62-4bbc-aa1c-d88da4d4ad1c}</UniqueIdentifier>
    </Filter>
  </ItemGroup>
  <ItemGroup>
    <ClInclude Include="..\Modules\unicodedata_db.h">
      <Filter>Header Files</Filter>
    </ClInclude>
    <ClInclude Include="..\Modules\unicodename_db.h">
      <Filter>Header Files</Filter>
    </ClInclude>
  </ItemGroup>
  <ItemGroup>
    <ClCompile Include="..\Modules\unicodedata.c">
      <Filter>Source Files</Filter>
    </ClCompile>
  </ItemGroup>
</Project>
back to top