summaryrefslogtreecommitdiff
path: root/PC/pyconfig.h
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-08-28 23:52:31 -0500
committerZachary Ware <zachary.ware@gmail.com>2015-08-28 23:52:31 -0500
commit7aefc750b039be598f17b9b55c033ec6a1ffcd26 (patch)
treea15fa2789122511d410519b491ed006f382e9adf /PC/pyconfig.h
parent59e2833db2c62342e1f32c5822913beeebc4bd77 (diff)
downloadcpython-7aefc750b039be598f17b9b55c033ec6a1ffcd26.tar.gz
Issue #24953: Include ICC version in sys.version string when bulit with ICC on Windows
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r--PC/pyconfig.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index 324a1301b7..d44173ae9a 100644
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -147,7 +147,11 @@ WIN32 is still required for the locale module.
#define MS_WINI64
#define PYD_PLATFORM_TAG "win_ia64"
#elif 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
@@ -194,7 +198,11 @@ typedef _W64 int ssize_t;
#if defined(MS_WIN32) && !defined(MS_WIN64)
#if defined(_M_IX86)
+#if defined(__INTEL_COMPILER)
+#define COMPILER ("[ICC v." _Py_STRINGIZE(__INTEL_COMPILER) " 32 bit (Intel) with MSC v." _Py_STRINGIZE(_MSC_VER) " CRT]")
+#else
#define COMPILER _Py_PASTE_VERSION("32 bit (Intel)")
+#endif /* __INTEL_COMPILER */
#define PYD_PLATFORM_TAG "win32"
#elif defined(_M_ARM)
#define COMPILER _Py_PASTE_VERSION("32 bit (ARM)")