From 188311863aac80346ac2ad23470c572fd0274520 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Mon, 22 Sep 2008 18:42:48 +0000 Subject: icc adjustments for icc 9.0 and prior versions: Disable remark #279: controlling expression is constant Remark triggered mostly on va_arg() and FD_ZERO() macros. --- ares/configure.ac | 4 ++++ configure.ac | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ares/configure.ac b/ares/configure.ac index 18d2d2221..e579ea052 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -242,8 +242,12 @@ if test "$curl_cv_have_def___INTEL_COMPILER" = "yes"; then dnl #266: function declared implicitly CPPFLAGS="$CPPFLAGS -we 140,147,165,266" dnl Disable some remarks + dnl #279: controlling expression is constant dnl #981: operands are evaluated in unspecified order dnl #1469: "cc" clobber ignored + if test "$curl_cv_def___INTEL_COMPILER" -lt "910"; then + CPPFLAGS="$CPPFLAGS -wd 279" + fi CPPFLAGS="$CPPFLAGS -wd 981,1469" dnl Disable use of ANSI C aliasing rules in optimizations CFLAGS="$CFLAGS -no-ansi-alias" diff --git a/configure.ac b/configure.ac index ddde3b7a1..6d4d69347 100644 --- a/configure.ac +++ b/configure.ac @@ -316,8 +316,12 @@ if test "$curl_cv_have_def___INTEL_COMPILER" = "yes"; then dnl #266: function declared implicitly CPPFLAGS="$CPPFLAGS -we 140,147,165,266" dnl Disable some remarks + dnl #279: controlling expression is constant dnl #981: operands are evaluated in unspecified order dnl #1469: "cc" clobber ignored + if test "$curl_cv_def___INTEL_COMPILER" -lt "910"; then + CPPFLAGS="$CPPFLAGS -wd 279" + fi CPPFLAGS="$CPPFLAGS -wd 981,1469" dnl Disable use of ANSI C aliasing rules in optimizations CFLAGS="$CFLAGS -no-ansi-alias" -- cgit v1.2.3