From 8a1657b93469580ef345c7c91738587f3d76e87d Mon Sep 17 00:00:00 2001 From: Paul Monson Date: Thu, 14 Feb 2019 08:31:30 -0800 Subject: 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. --- PC/pyconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'PC/pyconfig.h') diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 0f1fcdd944..42bbc697ae 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -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 -- cgit v1.2.3