# HG changeset patch # User Akos Ladanyi # Date 1223202986 -7200 # Node ID 9768e60aa4e181f9138b4555fe6743585857834c # Parent cbe3ec2d59d2d7c539ab62f2ca6796c960795237 Properly detect the Intel C++ compiler (ticket #154). diff -r cbe3ec2d59d2 -r 9768e60aa4e1 configure.ac --- a/configure.ac Wed Oct 01 13:56:40 2008 +0200 +++ b/configure.ac Sun Oct 05 12:36:26 2008 +0200 @@ -21,6 +21,9 @@ lx_cmdline_cxxflags_set=${CXXFLAGS+set} +dnl Do compilation tests using the C++ compiler. +AC_LANG([C++]) + dnl Checks for programs. AC_PROG_CXX AC_PROG_CXXCPP @@ -31,8 +34,19 @@ AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no]) AC_CHECK_PROG([gs_found],[gs],[yes],[no]) +dnl Detect Intel compiler. +AC_MSG_CHECKING([whether we are using the Intel C++ compiler]) +AC_COMPILE_IFELSE([#ifndef __INTEL_COMPILER +choke me +#endif], [ICC=[yes]], [ICC=[no]]) +if test x"$ICC" = x"yes"; then + AC_MSG_RESULT([yes]) +else + AC_MSG_RESULT([no]) +fi + dnl Set custom compiler flags when using g++. -if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then +if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes -a "$ICC" = no; then CXXFLAGS="$CXXFLAGS -Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -Woverloaded-virtual -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas" fi