aboutsummaryrefslogtreecommitdiff
path: root/PC/pyconfig.h
diff options
context:
space:
mode:
authorPaul Monson <paulmon@users.noreply.github.com>2019-02-14 08:31:30 -0800
committerSteve Dower <steve.dower@microsoft.com>2019-02-14 08:31:30 -0800
commit8a1657b93469580ef345c7c91738587f3d76e87d (patch)
tree153202aa02cbd97a4214a4a265b35662f2b9c76f /PC/pyconfig.h
parentbb3c05d7efca8d23bf39bc2640297ba2598899f3 (diff)
downloadcpython3-8a1657b93469580ef345c7c91738587f3d76e87d.tar.gz
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.
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r--PC/pyconfig.h2
1 files changed, 1 insertions, 1 deletions
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