diff options
author | David Cole <david.cole@kitware.com> | 2010-12-31 13:38:14 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2010-12-31 13:38:14 (GMT) |
commit | d11f439d8a2dbe78c5dc2a1dc0a219ceb9422c87 (patch) | |
tree | 836a0c2c277b264d5cbc56c0030a08eb40829693 /CTestCustom.cmake.in | |
parent | 5e9d8a295295ac77dd8984f256420a6a6e4d5465 (diff) | |
download | CMake-d11f439d8a2dbe78c5dc2a1dc0a219ceb9422c87.zip CMake-d11f439d8a2dbe78c5dc2a1dc0a219ceb9422c87.tar.gz CMake-d11f439d8a2dbe78c5dc2a1dc0a219ceb9422c87.tar.bz2 |
Suppress erroneous warnings from Intel compiler
Googling for "warning #980: wrong number of actual
arguments to intrinsic function" yields:
http://software.intel.com/en-us/articles/cdiag980/
http://software.intel.com/en-us/articles/diagnostic-980-wrong-number-of-actual-arguments-to-intrinsic-function/
Since the compiler is at fault for issuing the warnings
incorrectly, simply suppress them from CMake dashboard results.
Diffstat (limited to 'CTestCustom.cmake.in')
-rw-r--r-- | CTestCustom.cmake.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index 882fa4c..0047e68 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -25,6 +25,7 @@ SET(CTEST_CUSTOM_WARNING_EXCEPTION "Clock skew detected" "remark\\(1209" "remark: .*LOOP WAS VECTORIZED" + "warning .980: wrong number of actual arguments to intrinsic function .std::basic_" "LINK : warning LNK4089: all references to.*ADVAPI32.dll.*discarded by /OPT:REF" "LINK : warning LNK4089: all references to.*USER32.dll.*discarded by /OPT:REF" "Warning: library was too large for page size.*" |