diff options
author | Paul Monson <paulmon@users.noreply.github.com> | 2019-04-17 18:09:16 -0700 |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2019-04-17 18:09:16 -0700 |
commit | 11efd79076559cc6e4034bb36db73e5e4293f02d (patch) | |
tree | 13fb73b3d06b903cf857431d2622846131e829c0 /Include/pythonrun.h | |
parent | bpo-36638: Fix WindowsLoadTracker exception on some Windows versions (GH-12849) (diff) | |
download | cpython-11efd79076559cc6e4034bb36db73e5e4293f02d.tar.gz cpython-11efd79076559cc6e4034bb36db73e5e4293f02d.tar.bz2 cpython-11efd79076559cc6e4034bb36db73e5e4293f02d.zip |
bpo-36071 Add support for Windows ARM32 in ctypes/libffi (GH-12059)
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r-- | Include/pythonrun.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index 6f0c6fc6554..e83846add98 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 |