summaryrefslogtreecommitdiff
path: root/Include/pythonrun.h
diff options
context:
space:
mode:
authorPaul Monson <paulmon@users.noreply.github.com>2019-04-17 18:09:16 -0700
committerSteve Dower <steve.dower@microsoft.com>2019-04-17 18:09:16 -0700
commit11efd79076559cc6e4034bb36db73e5e4293f02d (patch)
tree13fb73b3d06b903cf857431d2622846131e829c0 /Include/pythonrun.h
parent264a0b40b030fc0ff919b8294df91bdaac853bfb (diff)
downloadcpython-git-11efd79076559cc6e4034bb36db73e5e4293f02d.tar.gz
bpo-36071 Add support for Windows ARM32 in ctypes/libffi (GH-12059)
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r--Include/pythonrun.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h
index 6f0c6fc655..e83846add9 100644
--- a/Include/pythonrun.h
+++ b/Include/pythonrun.h
@@ -165,7 +165,7 @@ PyAPI_DATA(PyThreadState*) _PyOS_ReadlineTState;
to an 8k margin. */
#define PYOS_STACK_MARGIN 2048
-#if defined(WIN32) && !defined(MS_WIN64) && defined(_MSC_VER) && _MSC_VER >= 1300
+#if defined(WIN32) && !defined(MS_WIN64) && !defined(_M_ARM) && defined(_MSC_VER) && _MSC_VER >= 1300
/* Enable stack checking under Microsoft C */
#define USE_STACKCHECK
#endif