GXX_VERSION_DETAILED="$GXX_VERSION"
else
+ dnl Maybe CLang?
is_clang="`($CXX --version 2>&1) | grep clang`"
if test "x$is_clang" != x ; then
AC_MSG_RESULT(C++ compiler is clang)
GXX_VERSION_DETAILED="$GXX_VERSION"
else
- dnl Aw, nothing suitable found...
- AC_MSG_RESULT(Unrecognized C++ compiler -- Try to go ahead and get help from dealii@dealii.org)
- GXX_BRAND=Unknown
- GXX_VERSION=unknown_cc
- GXX_VERSION_DETAILED="$GXX_VERSION"
+ dnl Maybe Cray C++?
+ is_cray="`($CXX -V 2>&1) | grep Cray`"
+ if test "x$is_cray" != x ; then
+ AC_MSG_RESULT(C++ compiler is Cray C++)
+ GXX_BRAND=cray
+ GXX_VERSION=cray
+ GXX_VERSION_DETAILED="$GXX_VERSION"
+ else
+
+ dnl Aw, nothing suitable found...
+ AC_MSG_RESULT(Unrecognized C++ compiler -- Try to go ahead and get help from dealii@dealii.org)
+ GXX_BRAND=Unknown
+ GXX_VERSION=unknown_cc
+ GXX_VERSION_DETAILED="$GXX_VERSION"
+ fi
fi
fi
fi
LDFLAGS="$LDFLAGS -lpthread"
;;
+ cray*)
+ LDFLAGS="$LDFLAGS -lpthread"
+ ;;
+
pgCC*)
LDFLAGS="$LDFLAGS -lpthread"
;;
#! /bin/sh
-# From configure.in Revision: 25492 .
+# From configure.in Revision: 25614 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68 for deal.II 7.2.pre.
#
GXX_VERSION_DETAILED="$GXX_VERSION"
else
- is_clang="`($CXX --version 2>&1) | grep clang`"
+ is_clang="`($CXX --version 2>&1) | grep clang`"
if test "x$is_clang" != x ; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: C++ compiler is clang" >&5
$as_echo "C++ compiler is clang" >&6; }
GXX_VERSION_DETAILED="$GXX_VERSION"
else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: Unrecognized C++ compiler -- Try to go ahead and get help from dealii@dealii.org" >&5
+ is_cray="`($CXX -V 2>&1) | grep Cray`"
+ if test "x$is_cray" != x ; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: C++ compiler is Cray C++" >&5
+$as_echo "C++ compiler is Cray C++" >&6; }
+ GXX_BRAND=cray
+ GXX_VERSION=cray
+ GXX_VERSION_DETAILED="$GXX_VERSION"
+ else
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: Unrecognized C++ compiler -- Try to go ahead and get help from dealii@dealii.org" >&5
$as_echo "Unrecognized C++ compiler -- Try to go ahead and get help from dealii@dealii.org" >&6; }
- GXX_BRAND=Unknown
- GXX_VERSION=unknown_cc
- GXX_VERSION_DETAILED="$GXX_VERSION"
+ GXX_BRAND=Unknown
+ GXX_VERSION=unknown_cc
+ GXX_VERSION_DETAILED="$GXX_VERSION"
+ fi
fi
fi
fi
LDFLAGS="$LDFLAGS -lpthread"
;;
+ cray*)
+ LDFLAGS="$LDFLAGS -lpthread"
+ ;;
+
pgCC*)
LDFLAGS="$LDFLAGS -lpthread"
;;