|
From: <sv...@va...> - 2014-09-10 20:11:41
|
Author: sewardj
Date: Wed Sep 10 20:11:34 2014
New Revision: 14511
Log:
Merge r14507 from trunk (Handle gcc version 5.x.y.)
Modified:
branches/VALGRIND_3_10_BRANCH/ (props changed)
branches/VALGRIND_3_10_BRANCH/NEWS
branches/VALGRIND_3_10_BRANCH/configure.ac
Modified: branches/VALGRIND_3_10_BRANCH/NEWS
==============================================================================
--- branches/VALGRIND_3_10_BRANCH/NEWS (original)
+++ branches/VALGRIND_3_10_BRANCH/NEWS Wed Sep 10 20:11:34 2014
@@ -327,6 +327,7 @@
338703 helgrind on arm-linux gets false positives in dynamic loader
338791 alt dwz files can be relative of debug/main file
338878 on MacOS: assertion 'VG_IS_PAGE_ALIGNED(clstack_end+1)' failed
+338932 build V-trunk with gcc-trunk
n-i-bz Fix KVM_CREATE_IRQCHIP ioctl handling
n-i-bz s390x: Fix memory corruption for multithreaded applications
n-i-bz vex arm->IR: allow PC as basereg in some LDRD cases
Modified: branches/VALGRIND_3_10_BRANCH/configure.ac
==============================================================================
--- branches/VALGRIND_3_10_BRANCH/configure.ac (original)
+++ branches/VALGRIND_3_10_BRANCH/configure.ac Wed Sep 10 20:11:34 2014
@@ -138,6 +138,9 @@
notclang-4.*)
AC_MSG_RESULT([ok (${gcc_version})])
;;
+ notclang-5.*)
+ AC_MSG_RESULT([ok (${gcc_version})])
+ ;;
clang-2.9|clang-3.*|clang-4.*)
AC_MSG_RESULT([ok (clang-${gcc_version})])
;;
@@ -855,7 +858,7 @@
glibc version is: __GLIBC__ __GLIBC_MINOR__
#endif
_ACEOF
- GLIBC_VERSION="`$CPP conftest.$ac_ext | $SED -n 's/^glibc version is: //p' | $SED 's/ /./g'`"
+ GLIBC_VERSION="`$CPP -P conftest.$ac_ext | $SED -n 's/^glibc version is: //p' | $SED 's/ /./g'`"
fi
# not really a version check
|