Compare commits

...

2 Commits

Author SHA1 Message Date
Richard W.M. Jones
1f026244ba Version 1.40.1. 2019-01-17 12:06:36 +00:00
Richard W.M. Jones
ae2aa14527 valgrind: Add workaround for slow loading of debuginfo by valgrind.
See nbdkit commit
bd32d899ed
and https://bugzilla.redhat.com/show_bug.cgi?id=1662656

(cherry picked from commit ea7c13fed7)
2019-01-17 12:04:54 +00:00
4 changed files with 5 additions and 3 deletions

Submodule .gnulib updated: 29d8029005...6ccfbb4ce5

View File

@@ -2,6 +2,7 @@
# in the form <version> <date>. If you update the version field (in
# configure.ac) you must also add the current date to this file.
1.40.1 2019-01-17
1.40.0 2019-01-15
1.39.14 2018-12-12
1.39.13 2018-12-11

View File

@@ -20,7 +20,7 @@
# freeform string.
m4_define([libguestfs_major], [1])
m4_define([libguestfs_minor], [40])
m4_define([libguestfs_release], [0])
m4_define([libguestfs_release], [1])
AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release)

View File

@@ -124,9 +124,10 @@ dnl Check for valgrind
AC_CHECK_PROG([VALGRIND],[valgrind],[valgrind],[no])
AS_IF([test "x$VALGRIND" != "xno"],[
# Substitute the whole valgrind command.
# --read-inline-info=no is a temporary workaround for RHBZ#1662656.
# Note we run libtool, not $(LIBTOOL) since the latter expands to
# libtool-kill-dependency-libs.sh
VG='libtool --mode=execute $(VALGRIND) --vgdb=no --log-file=$(abs_top_builddir)/tmp/valgrind-%q{T}-%p.log --leak-check=full --error-exitcode=119 --suppressions=$(abs_top_srcdir)/valgrind-suppressions --trace-children=no --child-silent-after-fork=yes --run-libc-freeres=no'
VG='libtool --mode=execute $(VALGRIND) --vgdb=no --log-file=$(abs_top_builddir)/tmp/valgrind-%q{T}-%p.log --leak-check=full --error-exitcode=119 --suppressions=$(abs_top_srcdir)/valgrind-suppressions --trace-children=no --child-silent-after-fork=yes --run-libc-freeres=no --read-inline-info=no'
],[
# No valgrind, so substitute VG with something that will break.
VG=VALGRIND_IS_NOT_INSTALLED