summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2011-11-13 20:03:15 (GMT)
committerBrad King <brad.king@kitware.com>2011-11-13 20:06:12 (GMT)
commit33fff24aca46c4eca17997c42c5f62d71666b836 (patch)
tree2d73f2def839f194b08fb51b220663a96dff81c1
parentbcc06d498ccdc6af80544b415678f4385f99279b (diff)
downloadCMake-33fff24aca46c4eca17997c42c5f62d71666b836.zip
CMake-33fff24aca46c4eca17997c42c5f62d71666b836.tar.gz
CMake-33fff24aca46c4eca17997c42c5f62d71666b836.tar.bz2
KWIML: No INT_SCN*8 on Intel for Windows
Intel C/C++ for Windows does not support the SCN*8 format (%hh*). The MS runtime does not support it.
-rw-r--r--INT.h.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/INT.h.in b/INT.h.in
index 5fca08f..3c1f05d 100644
--- a/INT.h.in
+++ b/INT.h.in
@@ -191,6 +191,9 @@ An includer may test the following macros after inclusion:
#endif
#if defined(__INTEL_COMPILER)
+# if defined(_WIN32)
+# define @KWIML@_INT__NO_SCN8
+# endif
#elif defined(__SUNPRO_C) || defined(__SUNPRO_CC)
# define @KWIML@_INT__NO_SCN8
#elif defined(__HP_cc) || defined(__HP_aCC)