Commit 32ba424b authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul Committed by Yoni Fogel

Fixes #5255. Disable intel warning 1292: {{{svn merge -c 45766 ../tokudb.3571}}}

git-svn-id: file:///svn/toku/tokudb@45767 c7de825b-a66e-492c-adef-691d508d4ae1
parent 45ce83f3
...@@ -84,6 +84,7 @@ if (CMAKE_C_COMPILER_ID MATCHES Intel) ...@@ -84,6 +84,7 @@ if (CMAKE_C_COMPILER_ID MATCHES Intel)
set(intel_warnings set(intel_warnings
94 # allow arrays of length 0 94 # allow arrays of length 0
589 # do not complain about goto that skips initialization 589 # do not complain about goto that skips initialization
1292 # icc lies (it says it is "__GNUC__", but it doesn't handle the resulting macroexpansions from glibc 2.15.37 (which is designed for gcc 4.7, and appears in Fedora 17)
2259 # do not complain about "non-pointer conversion from int to u_int8_t (and other small types) may lose significant bits". this produces too many false positives 2259 # do not complain about "non-pointer conversion from int to u_int8_t (and other small types) may lose significant bits". this produces too many false positives
11000 # do not remark about multi-file optimizations, single-file optimizations, and object temp files 11000 # do not remark about multi-file optimizations, single-file optimizations, and object temp files
11001 11001
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment