From: Wolfgang Bangerth Date: Fri, 18 May 2001 10:03:20 +0000 (+0000) Subject: More for Intel's ICC. X-Git-Tag: v8.0.0~19122 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=328b8cbfdc5b499dcaa5ac5aef5ce23337497a76;p=dealii.git More for Intel's ICC. git-svn-id: https://svn.dealii.org/trunk@4672 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure.in b/deal.II/configure.in index 07496f5acd..d0cc3a61d5 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -258,9 +258,15 @@ else if test "x$GXX_VERSION" = "xintel_icc" ; then dnl Disable some compiler warnings, as they often are wrong on dnl out code: - dnl #175: subscript out of range (doesn't take into account that + dnl #175: `subscript out of range' (doesn't take into account that dnl some code is only reachable for some dimensions) - CXXFLAGSG="$CXXFLAGS -Kc++eh -Krtti -w1 -wd175 -DDEBUG -inline_debug_info" + dnl #327: `NULL reference is not allowed' (this happens when we + dnl write "*static_cast(0)" or some such thing, + dnl which we do to create invalid references) + dnl #525: `type "DataOutBase::DataOutBase" is an inaccessible type + dnl (allowed for compatibility)' (I don't understand what the + dnl compiler means) + CXXFLAGSG="$CXXFLAGS -Kc++eh -Krtti -w1 -wd175 -wd525 -wd327 -DDEBUG -inline_debug_info" CXXFLAGSO="$CXXFLAGS -Kc++eh -Krtti -O2 -tpp6 -axiMK -unroll -w0" else