diff options
author | Ian Lance Taylor <iant@google.com> | 2006-09-26 21:20:56 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2006-09-26 21:20:56 +0000 |
commit | d288e464ac39ad965115c86ba29c7dc07ed9f5d6 (patch) | |
tree | c890e318317b2541d34f07cd4ad81502e409ea9f /gold/configure | |
parent | 54dc6425456514cdc00cdfef5a21a7bdacfcad2d (diff) | |
download | gdb-d288e464ac39ad965115c86ba29c7dc07ed9f5d6.zip gdb-d288e464ac39ad965115c86ba29c7dc07ed9f5d6.tar.gz gdb-d288e464ac39ad965115c86ba29c7dc07ed9f5d6.tar.bz2 |
g++ 3.2.2 portability for grhat.
Diffstat (limited to 'gold/configure')
-rwxr-xr-x | gold/configure | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/gold/configure b/gold/configure index 4bb9743..c0d93b7 100755 --- a/gold/configure +++ b/gold/configure @@ -3937,6 +3937,7 @@ ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ex ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -4723,6 +4724,47 @@ fi done + +cat >conftest.$ac_ext <<_ACEOF + +class c { public: template<int i> void fn(); }; +template<int i> void foo(c cv) { cv.fn<i>(); } +template void foo<1>(c cv); +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_cxx_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_MEMBER_TEMPLATE_SPECIFICATIONS +_ACEOF + +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |