Select strict ANSI C89 conformance for icc
authorYang Tse <yangsita@gmail.com>
Mon, 8 Sep 2008 16:48:58 +0000 (16:48 +0000)
committerYang Tse <yangsita@gmail.com>
Mon, 8 Sep 2008 16:48:58 +0000 (16:48 +0000)
configure.ac

index 6a8cf7d..fe8a7a7 100644 (file)
@@ -229,6 +229,20 @@ else
   AC_MSG_RESULT([no])
 fi
 
+AC_MSG_CHECKING([whether we are using the Intel C compiler])
+CURL_CHECK_DEF([__INTEL_COMPILER], [], [silent])
+if test "$curl_cv_have_def___INTEL_COMPILER" = "yes"; then
+  AC_MSG_RESULT([yes])
+  dnl Select strict ANSI C conformance
+  CFLAGS="$CFLAGS -strict-ansi"
+  dnl Select ANSI C dialect
+  CFLAGS="$CFLAGS -std=c89"
+  dnl Disable use of ANSI C aliasing rules in optimizations
+  CFLAGS="$CFLAGS -no-ansi-alias"
+else
+  AC_MSG_RESULT([no])
+fi
+
 AC_MSG_CHECKING([whether we are using the DEC/Compaq C compiler])
 CURL_CHECK_DEF([__DECC], [], [silent])
 CURL_CHECK_DEF([__DECC_VER], [], [silent])