bpo-36071 Add support for Windows ARM32 in ctypes/libffi (GH-12059)

This commit is contained in:
Paul Monson 2019-04-17 18:09:16 -07:00 committed by Steve Dower
parent 264a0b40b0
commit 11efd79076
7 changed files with 31 additions and 8 deletions

View file

@ -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