bpo-35976: Enable Windows projects to build with platform ARM32 (GH-11825)

This change adds the necessary items to the build projects to avoid erroring out right at the start. It does not add _support_ for targeting Windows on ARM32, but is a necessary prerequisite for adding it.
This commit is contained in:
Paul Monson 2019-02-14 08:31:30 -08:00 committed by Steve Dower
parent bb3c05d7ef
commit 8a1657b934
46 changed files with 959 additions and 5 deletions

View file

@ -178,7 +178,7 @@ typedef _W64 int ssize_t;
#define PYD_PLATFORM_TAG "win32"
#elif defined(_M_ARM)
#define COMPILER _Py_PASTE_VERSION("32 bit (ARM)")
#define PYD_PLATFORM_TAG "win_arm"
#define PYD_PLATFORM_TAG "win_arm32"
#else
#define COMPILER _Py_PASTE_VERSION("32 bit (Unknown)")
#endif