diff options
author | Yang Tse <yangsita@gmail.com> | 2008-09-08 16:48:58 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-09-08 16:48:58 +0000 |
commit | a3787eff192c5f862651b5acdc4a4dfa1cac7e3d (patch) | |
tree | 56fdcb83f18678a758924ccf2b3f46928416346b | |
parent | 836d945ecede0ad1f252f1bcb2170d8e2cecbe34 (diff) |
Select strict ANSI C89 conformance for icc
-rw-r--r-- | ares/configure.ac | 14 | ||||
-rw-r--r-- | configure.ac | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/ares/configure.ac b/ares/configure.ac index 6a8cf7dce..fe8a7a7f0 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -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]) diff --git a/configure.ac b/configure.ac index 17f7c1c47..71464f43f 100644 --- a/configure.ac +++ b/configure.ac @@ -296,6 +296,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]) |