diff options
author | Brad King <brad.king@kitware.com> | 2014-03-06 18:04:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-06 18:06:13 (GMT) |
commit | 87d66066059509d355f87dfbf2b38b4738a10659 (patch) | |
tree | 40dd808a27ddc9af028e9ccaf38aebc4107bef8e /CTestCustom.cmake.in | |
parent | 2977330a7b27d21e2b6276d9386624b6811b9274 (diff) | |
download | CMake-87d66066059509d355f87dfbf2b38b4738a10659.zip CMake-87d66066059509d355f87dfbf2b38b4738a10659.tar.gz CMake-87d66066059509d355f87dfbf2b38b4738a10659.tar.bz2 |
CTestCustom: Suppress MIPSpro warnings about Olimit
Since we compile command implementations in large batches the
translation units get too big for MIPSpro optimization limits.
Suppress the warnings it produces:
Warning: Olimit was exceeded on function ...
Warning: To override Olimit for all functions in file, use -OPT:Olimit=3201
Diffstat (limited to 'CTestCustom.cmake.in')
-rw-r--r-- | CTestCustom.cmake.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index eb0b2f6..b0f86ec 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -39,6 +39,8 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION "Warning: public.*BZ2_bz.*in module.*bzlib.*clashes with prior module.*bzlib.*" "Warning: public.*_archive.*clashes with prior module.*" "Warning: LINN32: Last line.*is less.*" + "Warning: Olimit was exceeded on function.*" + "Warning: To override Olimit for all functions in file.*" "warning.*directory name.*CMake-Xcode.*/bin/.*does not exist.*" "stl_deque.h:1051" "(Lexer|Parser).*warning.*conversion.*may (alter its value|change the sign)" |