diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-12 17:44:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-12 17:44:29 (GMT) |
commit | bb3e8a68b2554b2bd94cf0cd9a0311f4561c1a25 (patch) | |
tree | 2bba58c0f52c6fa279307666c5cbd7dac4113907 /PC | |
parent | c9ca96dd968176580a011e852066c95a48aab7e0 (diff) | |
download | cpython-bb3e8a68b2554b2bd94cf0cd9a0311f4561c1a25.zip cpython-bb3e8a68b2554b2bd94cf0cd9a0311f4561c1a25.tar.gz cpython-bb3e8a68b2554b2bd94cf0cd9a0311f4561c1a25.tar.bz2 |
bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)
(cherry picked from commit daf62627518ad97ce66a48c49496aa0573cf0731)
Co-authored-by: Paul Monson <paulmon@users.noreply.github.com>
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index a74ee98..3d7425a 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -122,13 +122,13 @@ WIN32 is still required for the locale module. #if defined(_M_X64) || defined(_M_AMD64) #if defined(__INTEL_COMPILER) #define COMPILER ("[ICC v." _Py_STRINGIZE(__INTEL_COMPILER) " 64 bit (amd64) with MSC v." _Py_STRINGIZE(_MSC_VER) " CRT]") -#elif defined(_M_ARM64) -#define COMPILER _Py_PASTE_VERSION("64 bit (ARM)") -#define PYD_PLATFORM_TAG "win_arm64" #else #define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)") #endif /* __INTEL_COMPILER */ #define PYD_PLATFORM_TAG "win_amd64" +#elif defined(_M_ARM64) +#define COMPILER _Py_PASTE_VERSION("64 bit (ARM64)") +#define PYD_PLATFORM_TAG "win_arm64" #else #define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)") #endif |