diff options
author | Brad King <brad.king@kitware.com> | 2011-11-13 20:03:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-11-13 20:06:12 (GMT) |
commit | 33fff24aca46c4eca17997c42c5f62d71666b836 (patch) | |
tree | 2d73f2def839f194b08fb51b220663a96dff81c1 | |
parent | bcc06d498ccdc6af80544b415678f4385f99279b (diff) | |
download | CMake-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.in | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |