summaryrefslogtreecommitdiffstats
path: root/PC/pyconfig.h
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2017-09-06 22:45:25 (GMT)
committerGitHub <noreply@github.com>2017-09-06 22:45:25 (GMT)
commit49ce74efe845a8a91939ff3990a5f233262d3e1f (patch)
tree1a8cc8d4b43bdc3fe04d9fc4810a5830d14d43fe /PC/pyconfig.h
parenteffc12f8e9e20d0951d2ba5883587666bd8218e3 (diff)
downloadcpython-49ce74efe845a8a91939ff3990a5f233262d3e1f.zip
cpython-49ce74efe845a8a91939ff3990a5f233262d3e1f.tar.gz
cpython-49ce74efe845a8a91939ff3990a5f233262d3e1f.tar.bz2
Remove all mention of Windows IA-64 support (GH-3389)
It was mostly removed long ago.
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r--PC/pyconfig.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index 46ff6f0..0da6841 100644
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -112,8 +112,6 @@ WIN32 is still required for the locale module.
defined on Win32 *and* Win64. Win32 only code must therefore be
guarded as follows:
#if defined(MS_WIN32) && !defined(MS_WIN64)
- Some modules are disabled on Itanium processors, therefore we
- have MS_WINI64 set for those targets, otherwise MS_WINX64
*/
#ifdef _WIN64
#define MS_WIN64
@@ -121,17 +119,12 @@ WIN32 is still required for the locale module.
/* set the COMPILER */
#ifdef MS_WIN64
-#if defined(_M_IA64)
-#define COMPILER _Py_PASTE_VERSION("64 bit (Itanium)")
-#define MS_WINI64
-#define PYD_PLATFORM_TAG "win_ia64"
-#elif defined(_M_X64) || defined(_M_AMD64)
+#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]")
#else
#define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)")
#endif /* __INTEL_COMPILER */
-#define MS_WINX64
#define PYD_PLATFORM_TAG "win_amd64"
#else
#define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)")