Blame SPECS/valgrind.spec

aa821a
%{?scl:%scl_package valgrind}
aa821a
aa821a
Summary: Tool for finding memory management bugs in programs
aa821a
Name: %{?scl_prefix}valgrind
aa821a
Version: 3.12.0
aa821a
Release: 1%{?dist}
aa821a
Epoch: 1
aa821a
License: GPLv2+
aa821a
URL: http://www.valgrind.org/
aa821a
Group: Development/Debuggers
aa821a
aa821a
# Only necessary for RHEL, will be ignored on Fedora
aa821a
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
aa821a
aa821a
# Are we building for a Software Collection?
aa821a
%{?scl:%global is_scl 1}
aa821a
%{!?scl:%global is_scl 0}
aa821a
aa821a
# Only arches that are supported upstream as multilib and that the distro
aa821a
# has multilib builds for should set build_multilib 1. In practice that
aa821a
# is only x86_64 and ppc64 (but not in fedora 21 and later, and never
aa821a
# for ppc64le or when building for scl).
aa821a
%global build_multilib 0
aa821a
aa821a
%ifarch x86_64
aa821a
 %global build_multilib 1
aa821a
%endif
aa821a
aa821a
%ifarch ppc64
aa821a
  %if %{is_scl}
aa821a
    %global build_multilib 0
aa821a
  %else
aa821a
    %if 0%{?rhel}
aa821a
      %global build_multilib 1
aa821a
    %endif
aa821a
    %if 0%{?fedora}
aa821a
      %global build_multilib (%fedora < 21)
aa821a
    %endif
aa821a
  %endif
aa821a
%endif
aa821a
aa821a
# Note s390x doesn't have an openmpi port available.
aa821a
# We never want the openmpi subpackage when building a software collecton
aa821a
%if %{is_scl}
aa821a
  %global build_openmpi 0
aa821a
%else
aa821a
  %ifarch %{ix86} x86_64 ppc ppc64 ppc64le %{arm} aarch64
aa821a
    %global build_openmpi 1
aa821a
  %else
aa821a
    %global build_openmpi 0
aa821a
  %endif
aa821a
%endif
aa821a
aa821a
# Whether to run the full regtest or only a limited set
aa821a
# The full regtest includes gdb_server integration tests.
aa821a
# On arm the gdb integration tests hang for unknown reasons.
aa821a
# On rhel6 the gdb_server tests hang.
aa821a
# On rhel7 they hang on ppc64 and ppc64le.
aa821a
%ifarch %{arm}
aa821a
  %global run_full_regtest 0
aa821a
%else
aa821a
  %if 0%{?rhel} == 6
aa821a
    %global run_full_regtest 0
aa821a
  %else
aa821a
    %if 0%{?rhel} == 7
aa821a
      %ifarch ppc64 ppc64le
aa821a
        %global run_full_regtest 0
aa821a
      %else
aa821a
        %global run_full_regtest 1
aa821a
      %endif
aa821a
    %else
aa821a
      %global run_full_regtest 1
aa821a
    %endif
aa821a
  %endif
aa821a
%endif
aa821a
aa821a
# Generating minisymtabs doesn't really work for the staticly linked
aa821a
# tools. Note (below) that we don't strip the vgpreload libraries at all
aa821a
# because valgrind might read and need the debuginfo in those (client)
aa821a
# libraries for better error reporting and sometimes correctly unwinding.
aa821a
# So those will already have their full symbol table.
aa821a
%undefine _include_minidebuginfo
aa821a
aa821a
Source0: http://www.valgrind.org/downloads/valgrind-%{version}.tar.bz2
aa821a
aa821a
# Needs investigation and pushing upstream
aa821a
Patch1: valgrind-3.9.0-cachegrind-improvements.patch
aa821a
aa821a
# KDE#211352 - helgrind races in helgrind's own mythread_wrapper
aa821a
Patch2: valgrind-3.9.0-helgrind-race-supp.patch
aa821a
aa821a
# Make ld.so supressions slightly less specific.
aa821a
Patch3: valgrind-3.9.0-ldso-supp.patch
aa821a
aa821a
# KDE#371396 - workaround helgrind and drd pth_cond_destroy_busy testcase hangs
aa821a
Patch4: valgrind-3.12.0-skip-cond-var.patch
aa821a
aa821a
%if %{build_multilib}
aa821a
# Ensure glibc{,-devel} is installed for both multilib arches
aa821a
BuildRequires: /lib/libc.so.6 /usr/lib/libc.so /lib64/libc.so.6 /usr/lib64/libc.so
aa821a
%endif
aa821a
aa821a
%if 0%{?fedora} >= 15
aa821a
BuildRequires: glibc-devel >= 2.14
aa821a
%else
aa821a
%if 0%{?rhel} >= 6
aa821a
BuildRequires: glibc-devel >= 2.12
aa821a
%else
aa821a
BuildRequires: glibc-devel >= 2.5
aa821a
%endif
aa821a
%endif
aa821a
aa821a
%if %{build_openmpi}
aa821a
BuildRequires: openmpi-devel >= 1.3.3
aa821a
%endif
aa821a
aa821a
# For %%build and %%check.
aa821a
# In case of a software collection, pick the matching gdb and binutils.
aa821a
BuildRequires: %{?scl_prefix}gdb
aa821a
BuildRequires: %{?scl_prefix}binutils
aa821a
aa821a
# gdbserver_tests/filter_make_empty uses ps in test
aa821a
BuildRequires: procps
aa821a
aa821a
# Some testcases require g++ to build
aa821a
BuildRequires: gcc-c++
aa821a
aa821a
# check_headers_and_includes uses Getopt::Long
aa821a
%if 0%{?fedora}
aa821a
BuildRequires: perl-generators
aa821a
%endif
aa821a
BuildRequires: perl(Getopt::Long)
aa821a
aa821a
%{?scl:Requires:%scl_runtime}
aa821a
aa821a
# We need to fixup selinux file context when doing a scl build.
aa821a
# In RHEL6 we might need to fix up the labels even though the
aa821a
# meta package sets up a fs equivalence. See post.
aa821a
%if 0%{?rhel} == 6
aa821a
%{?scl:Requires(post): /sbin/restorecon}
aa821a
%endif
aa821a
aa821a
ExclusiveArch: %{ix86} x86_64 ppc ppc64 ppc64le s390x armv7hl aarch64
aa821a
%ifarch %{ix86}
aa821a
%define valarch x86
aa821a
%define valsecarch %{nil}
aa821a
%endif
aa821a
%ifarch x86_64
aa821a
%define valarch amd64
aa821a
%define valsecarch x86
aa821a
%endif
aa821a
%ifarch ppc
aa821a
%define valarch ppc32
aa821a
%define valsecarch %{nil}
aa821a
%endif
aa821a
%ifarch ppc64
aa821a
  %define valarch ppc64be
aa821a
  %if %{build_multilib}
aa821a
    %define valsecarch ppc32
aa821a
  %else
aa821a
    %define valsecarch %{nil}
aa821a
  %endif
aa821a
%endif
aa821a
%ifarch ppc64le
aa821a
%define valarch ppc64le
aa821a
%define valsecarch %{nil}
aa821a
%endif
aa821a
%ifarch s390x
aa821a
%define valarch s390x
aa821a
%define valsecarch %{nil}
aa821a
%endif
aa821a
%ifarch armv7hl
aa821a
%define valarch arm
aa821a
%define valsecarch %{nil}
aa821a
%endif
aa821a
%ifarch aarch64
aa821a
%define valarch arm64
aa821a
%define valsecarch %{nil}
aa821a
%endif
aa821a
aa821a
%description
aa821a
Valgrind is a tool to help you find memory-management problems in your
aa821a
programs. When a program is run under Valgrind's supervision, all
aa821a
reads and writes of memory are checked, and calls to
aa821a
malloc/new/free/delete are intercepted. As a result, Valgrind can
aa821a
detect a lot of problems that are otherwise very hard to
aa821a
find/diagnose.
aa821a
aa821a
%package devel
aa821a
Summary: Development files for valgrind
aa821a
Group: Development/Debuggers
aa821a
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
aa821a
aa821a
%description devel
aa821a
Header files and libraries for development of valgrind aware programs
aa821a
or valgrind plugins.
aa821a
aa821a
%if %{build_openmpi}
aa821a
%package openmpi
aa821a
Summary: OpenMPI support for valgrind
aa821a
Group: Development/Debuggers
aa821a
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
aa821a
aa821a
%description openmpi
aa821a
A wrapper library for debugging OpenMPI parallel programs with valgrind.
aa821a
See the section on Debugging MPI Parallel Programs with Valgrind in the
aa821a
Valgrind User Manual for details.
aa821a
%endif
aa821a
aa821a
%prep
aa821a
%setup -q -n %{?scl:%{pkg_name}}%{!?scl:%{name}}-%{version}
aa821a
aa821a
%patch1 -p1
aa821a
%patch2 -p1
aa821a
%patch3 -p1
aa821a
%patch4 -p1
aa821a
aa821a
%build
aa821a
# We need to use the software collection compiler and binutils if available.
aa821a
# The configure checks might otherwise miss support for various newer
aa821a
# assembler instructions.
aa821a
%{?scl:PATH=%{_bindir}${PATH:+:${PATH}}}
aa821a
aa821a
CC=gcc
aa821a
%if %{build_multilib}
aa821a
# Ugly hack - libgcc 32-bit package might not be installed
aa821a
mkdir -p shared/libgcc/32
aa821a
ar r shared/libgcc/32/libgcc_s.a
aa821a
ar r shared/libgcc/libgcc_s_32.a
aa821a
CC="gcc -B `pwd`/shared/libgcc/"
aa821a
%endif
aa821a
aa821a
# Old openmpi-devel has version depended paths for mpicc.
aa821a
%if %{build_openmpi}
aa821a
%if 0%{?fedora} >= 13 || 0%{?rhel} >= 6
aa821a
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/bin/mpicc
aa821a
%else
aa821a
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/*/bin/mpicc
aa821a
%endif
aa821a
%endif
aa821a
aa821a
# Filter out some flags that cause lots of valgrind test failures.
aa821a
# Also filter away -O2, valgrind adds it wherever suitable, but
aa821a
# not for tests which should be -O0, as they aren't meant to be
aa821a
# compiled with -O2 unless explicitely requested. Same for any -mcpu flag.
aa821a
# Ideally we will change this to only be done for the non-primary build
aa821a
# and the test suite.
aa821a
%undefine _hardened_build
aa821a
OPTFLAGS="`echo " %{optflags} " | sed 's/ -m\(64\|3[21]\) / /g;s/ -fexceptions / /g;s/ -fstack-protector\([-a-z]*\) / / g;s/ -Wp,-D_FORTIFY_SOURCE=2 / /g;s/ -O2 / /g;s/ -mcpu=\([a-z0-9]\+\) / /g;s/^ //;s/ $//'`"
aa821a
%configure CC="$CC" CFLAGS="$OPTFLAGS" CXXFLAGS="$OPTFLAGS" \
aa821a
%if %{build_openmpi}
aa821a
  --with-mpicc=%{mpiccpath} \
aa821a
%endif
aa821a
  GDB=%{_bindir}/gdb
aa821a
aa821a
make %{?_smp_mflags}
aa821a
aa821a
# Ensure there are no unexpected file descriptors open,
aa821a
# the testsuite otherwise fails.
aa821a
cat > close_fds.c <
aa821a
#include <stdlib.h>
aa821a
#include <unistd.h>
aa821a
int main (int argc, char *const argv[])
aa821a
{
aa821a
  int i, j = sysconf (_SC_OPEN_MAX);
aa821a
  if (j < 0)
aa821a
    exit (1);
aa821a
  for (i = 3; i < j; ++i)
aa821a
    close (i);
aa821a
  execvp (argv[1], argv + 1);
aa821a
  exit (1);
aa821a
}
aa821a
EOF
aa821a
gcc $RPM_OPT_FLAGS -o close_fds close_fds.c
aa821a
aa821a
%install
aa821a
rm -rf $RPM_BUILD_ROOT
aa821a
make DESTDIR=$RPM_BUILD_ROOT install
aa821a
mkdir docs/installed
aa821a
mv $RPM_BUILD_ROOT%{_datadir}/doc/valgrind/* docs/installed/
aa821a
rm -f docs/installed/*.ps
aa821a
aa821a
# We want the MPI wrapper installed under the openmpi libdir so the script
aa821a
# generating the MPI library requires picks them up and sets up the right
aa821a
# openmpi libmpi.so requires. Install symlinks in the original/upstream
aa821a
# location for backwards compatibility.
aa821a
%if %{build_openmpi}
aa821a
pushd $RPM_BUILD_ROOT%{_libdir}
aa821a
mkdir -p openmpi/valgrind
aa821a
cd valgrind
aa821a
mv libmpiwrap-%{valarch}-linux.so ../openmpi/valgrind/
aa821a
ln -s ../openmpi/valgrind/libmpiwrap-%{valarch}-linux.so
aa821a
popd
aa821a
%endif
aa821a
aa821a
%if "%{valsecarch}" != ""
aa821a
pushd $RPM_BUILD_ROOT%{_libdir}/valgrind/
aa821a
rm -f *-%{valsecarch}-* || :
aa821a
for i in *-%{valarch}-*; do
aa821a
  j=`echo $i | sed 's/-%{valarch}-/-%{valsecarch}-/'`
aa821a
  ln -sf ../../lib/valgrind/$j $j
aa821a
done
aa821a
popd
aa821a
%endif
aa821a
aa821a
rm -f $RPM_BUILD_ROOT%{_libdir}/valgrind/*.supp.in
aa821a
aa821a
%ifarch %{ix86} x86_64
aa821a
# To avoid multilib clashes in between i?86 and x86_64,
aa821a
# tweak installed <valgrind/config.h> a little bit.
aa821a
for i in HAVE_PTHREAD_CREATE_GLIBC_2_0 HAVE_PTRACE_GETREGS HAVE_AS_AMD64_FXSAVE64 \
aa821a
%if 0%{?rhel} == 5
aa821a
         HAVE_BUILTIN_ATOMIC HAVE_BUILTIN_ATOMIC_CXX \
aa821a
%endif
aa821a
         ; do
aa821a
  sed -i -e 's,^\(#define '$i' 1\|/\* #undef '$i' \*/\)$,#ifdef __x86_64__\n# define '$i' 1\n#endif,' \
aa821a
    $RPM_BUILD_ROOT%{_includedir}/valgrind/config.h
aa821a
done
aa821a
%endif
aa821a
aa821a
# We don't want debuginfo generated for the vgpreload libraries.
aa821a
# Turn off execute bit so they aren't included in the debuginfo.list.
aa821a
# We'll turn the execute bit on again in %%files.
aa821a
chmod 644 $RPM_BUILD_ROOT%{_libdir}/valgrind/vgpreload*-%{valarch}-*so
aa821a
aa821a
%check
aa821a
# Make sure some info about the system is in the build.log
aa821a
uname -a
aa821a
rpm -q glibc gcc %{?scl_prefix}binutils %{?scl_prefix}gdb
aa821a
LD_SHOW_AUXV=1 /bin/true
aa821a
cat /proc/cpuinfo
aa821a
aa821a
# Make sure a basic binary runs.
aa821a
./vg-in-place /bin/true
aa821a
aa821a
# Build the test files with the software collection compiler if available.
aa821a
%{?scl:PATH=%{_bindir}${PATH:+:${PATH}}}
aa821a
# Make sure no extra CFLAGS, CXXFLAGS or LDFLAGS leak through,
aa821a
# the testsuite sets all flags necessary. See also configure above.
aa821a
make %{?_smp_mflags} CFLAGS="" CXXFLAGS="" LDFLAGS="" check
aa821a
aa821a
echo ===============TESTING===================
aa821a
%if %{run_full_regtest}
aa821a
  ./close_fds make regtest || :
aa821a
%else
aa821a
  ./close_fds make nonexp-regtest || :
aa821a
%endif
aa821a
aa821a
# Make sure test failures show up in build.log
aa821a
# Gather up the diffs (at most the first 20 lines for each one)
aa821a
MAX_LINES=20
aa821a
diff_files=`find . -name '*.diff' | sort`
aa821a
if [ z"$diff_files" = z ] ; then
aa821a
   echo "Congratulations, all tests passed!" >> diffs
aa821a
else
aa821a
   for i in $diff_files ; do
aa821a
      echo "=================================================" >> diffs
aa821a
      echo $i                                                  >> diffs
aa821a
      echo "=================================================" >> diffs
aa821a
      if [ `wc -l < $i` -le $MAX_LINES ] ; then
aa821a
         cat $i                                                >> diffs
aa821a
      else
aa821a
         head -n $MAX_LINES $i                                 >> diffs
aa821a
         echo "<truncated beyond $MAX_LINES lines>"            >> diffs
aa821a
      fi
aa821a
   done
aa821a
fi
aa821a
cat diffs
aa821a
echo ===============END TESTING===============
aa821a
aa821a
%files
aa821a
%defattr(-,root,root)
aa821a
%doc COPYING NEWS README_*
aa821a
%doc docs/installed/html docs/installed/*.pdf
aa821a
%{_bindir}/*
aa821a
%dir %{_libdir}/valgrind
aa821a
# Install everything in the libdir except the .so and .a files.
aa821a
# The vgpreload so files might file mode adjustment (see below).
aa821a
# The libmpiwrap so files go in the valgrind-openmpi package.
aa821a
# The .a archives go into the valgrind-devel package.
aa821a
%{_libdir}/valgrind/*[^ao]
aa821a
# Turn on executable bit again for vgpreload libraries.
aa821a
# Was disabled in %%install to prevent debuginfo stripping.
aa821a
%attr(0755,root,root) %{_libdir}/valgrind/vgpreload*-%{valarch}-*so
aa821a
# And install the symlinks to the secarch files if the exist.
aa821a
# These are separate from the above because %%attr doesn't work
aa821a
# on symlinks.
aa821a
%if "%{valsecarch}" != ""
aa821a
%{_libdir}/valgrind/vgpreload*-%{valsecarch}-*so
aa821a
%endif
aa821a
%{_mandir}/man1/*
aa821a
aa821a
%files devel
aa821a
%defattr(-,root,root)
aa821a
%{_includedir}/valgrind
aa821a
%dir %{_libdir}/valgrind
aa821a
%{_libdir}/valgrind/*.a
aa821a
%{_libdir}/pkgconfig/*
aa821a
aa821a
%if %{build_openmpi}
aa821a
%files openmpi
aa821a
%defattr(-,root,root)
aa821a
%dir %{_libdir}/valgrind
aa821a
%{_libdir}/openmpi/valgrind/libmpiwrap*.so
aa821a
%{_libdir}/valgrind/libmpiwrap*.so
aa821a
%endif
aa821a
aa821a
%if 0%{?rhel} == 6
aa821a
%post
aa821a
# There is a bug in rpm (rhbz#214737) that might cause post to be run
aa821a
# even thought the binary isn't installed when installing two multilib
aa821a
# versions at the same time.
aa821a
if [ -x %{_bindir}/valgrind ]; then
aa821a
# On RHEL6 the fs equivalency should be setup by the devtoolset meta
aa821a
# package, but because of a rpm bug (rhbz#924044) it might not work.
aa821a
%{?scl:/sbin/restorecon %{_bindir}/valgrind}%{!?scl:true}
aa821a
fi
aa821a
%endif
aa821a
aa821a
%changelog
aa821a
* Fri Oct 21 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-1
aa821a
- Update to valgrind 3.12.0 release.
aa821a
aa821a
* Thu Oct 20 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.4-RC2
aa821a
- Update to 3.12.0-RC1. Drop integrated patches.
aa821a
- Add valgrind-3.12.0-skip-cond-var.patch
aa821a
aa821a
* Fri Sep 30 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.3-BETA1
aa821a
- Clear CFLAGS, CXXFLAGS and LDFLAGS during make check.
aa821a
aa821a
* Thu Sep 29 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.2-BETA1
aa821a
- Add valgrind-3.12-beta1-ppc64be.patch. (#1378963)
aa821a
- Enable gdb_server tests again. (#1378143)
aa821a
- And disable it again on rhel6 (both i686 and x86_64)
aa821a
  and rhel7 (ppc64 and ppc64le only) (#1380513)
aa821a
aa821a
* Tue Sep 20 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.1-BETA1
aa821a
- Update to valgrind 3.12.0 pre-release.
aa821a
  - Drop upstreamed patches.
aa821a
  - Disable exp-tests in %%check. GDB crashes on gdb_server tests.
aa821a
aa821a
* Fri Jul 22 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-26
aa821a
- Rebase against fedora package:
aa821a
  - Only build valgrind-openmpi when not creating a software collection.
aa821a
  - No support for multilib on secondary arches when creating scl.
aa821a
  - Mandatory Perl build-requires added
aa821a
  - Add valgrind-3.11.0-shr.patch
aa821a
  - Add valgrind-3.11.0-pcmpxstrx-0x70-0x19.patch
aa821a
  - Update valgrind-3.11.0-wrapmalloc.patch
aa821a
  - Add valgrind-3.11.0-sighandler-stack.patch
aa821a
  - Update valgrind-3.11.0-ppoll-mask.patch (#1344082)
aa821a
  - Add valgrind-3.11.0-arm64-handle_at.patch
aa821a
  - Add valgrind-3.11.0-ppc64-syscalls.patch
aa821a
  - Add valgrind-3.11.0-deduppoolalloc.patch
aa821a
  - Add valgrind-3.11.0-ppc-bcd-addsub.patch
aa821a
  - Add valgrind-3.11.0-ppc64-vgdb-vr-regs.patch
aa821a
  - Update valgrind-3.11.0-cxx-freeres.patch (x86 final_tidyup fix)
aa821a
  - Add valgrind-3.11.0-s390x-risbgn.patch
aa821a
  - Add valgrind-3.11.0-cxx-freeres.patch (#1312647)
aa821a
  - Add valgrind-3.11.0-ppc64-separate-socketcalls.patch
aa821a
  - Add valgrind-3.11.0-isZeroU.patch
aa821a
  - Replace valgrind-3.11.0-arm64-ldpsw.patch with upstream version
aa821a
aa821a
* Fri Apr 01 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-19
aa821a
- Touch up empty .exp files. (#1323160)
aa821a
aa821a
* Fri Apr 01 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-18
aa821a
- Refresh valgrind from fedora. (#1323160)
aa821a
aa821a
* Wed Feb 24 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-11
aa821a
- Rebuilt against new buildroot.
aa821a
aa821a
* Fri Jan 22 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-9
aa821a
- Fix valgrind-3.11.0-pthread_barrier.patch to apply with older patch.
aa821a
- Fix multilib issue in config.h with HAVE_AS_AMD64_FXSAVE64.
aa821a
aa821a
* Thu Jan 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-8
aa821a
- Remerge with fedora to rebase to valgrind 3.11.0+ (#1290471)
aa821a
aa821a
* Thu Jan 14 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-5
aa821a
- Merge with fedora to rebase to valgrind 3.11.0 (#1290471)
aa821a
aa821a
* Tue Oct 13 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-15
aa821a
- Add valgrind-3.11.0-rexw-cvtps2pd.patch (#1268438)
aa821a
aa821a
* Tue Sep 01 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-14
aa821a
- Add valgrind-3.10.1-helgrind-supp-io-mempcpy.patch (#1248891)
aa821a
aa821a
* Tue Jul 07 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-13
aa821a
- 3.10.1 Refresh.
aa821a
  - Add valgrind-3.10.1-di_notify_mmap.patch
aa821a
  - Add valgrind-3.10.1-memmove-ld_so-ppc64.patch
aa821a
  - Add valgrind-3.10.1-kernel-4.0.patch.
aa821a
  - Add valgrind-3.10.1-cfi-redzone.patch.
aa821a
  - Add valgrind-3.10.1-memfd_create.patch.
aa821a
  - Add valgrind-3.10.1-syncfs.patch.
aa821a
  - Add valgrind-3.10.1-arm-process_vm_readv_writev.patch.
aa821a
  - Add valgrind-3.10.1-fno-ipa-icf.patch.
aa821a
  - Add valgrind-3.10.1-demangle-q.patch
aa821a
  - Add valgrind-3.10-1-ppc64-sigpending.patch
aa821a
  - Filter out -fstack-protector-strong and disable _hardened_build.
aa821a
  - Add valgrind-3.10.1-send-recv-mmsg.patch
aa821a
  - Add mount and umount2 to valgrind-3.10.1-aarch64-syscalls.patch.
aa821a
  - Add valgrind-3.10.1-glibc-version-check.patch
aa821a
  - Add accept4 to valgrind-3.10.1-aarch64-syscalls.patch.
aa821a
  - Add valgrind-3.10.1-ppc64-accept4.patch.
aa821a
  - Add valgrind-3.10.1-aarch64-syscalls.patch.
aa821a
  - Add valgrind-3.10-s390-spechelper.patch.
aa821a
  - Add valgrind-3.10.1-mempcpy.patch.
aa821a
aa821a
* Thu Dec 18 2014 Mark Wielaard <mjw@redhat.com> - 3.10.1-1
aa821a
- Upgrade to 3.10.1.
aa821a
aa821a
* Wed May 28 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-8.3
aa821a
- Fix %%post to be rhel6 only (#1101849)
aa821a
aa821a
* Mon May 19 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-8.2
aa821a
- Fix colon typo in make nonexp-regtest.
aa821a
aa821a
* Mon May 12 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-8.1
aa821a
- Rebase to 3.9.0-8.
aa821a
- Don't cleanup fake 32-bit libgcc created in %%build. make regtest
aa821a
  might depend on it to build -m32 binaries.
aa821a
- Use nonexp-regtest in check so gdbserver_tests are not run.
aa821a
  They might hang the build.
aa821a
aa821a
* Wed Dec 11 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30.8
aa821a
- Remove nonexp-regtest check hack. (#1019750)
aa821a
aa821a
* Mon Nov  4 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30.7
aa821a
- Add valgrind-3.8.1-amd64-sigstack.patch (#1026230)
aa821a
aa821a
* Mon Oct 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30.6
aa821a
- Fix colon typo in make nonexp-regtest.
aa821a
aa821a
* Mon Oct 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30.5
aa821a
- Use nonexp-regtest in check so gdbserver_tests are not run.
aa821a
  They might hang the build.
aa821a
aa821a
* Mon Oct 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30.4
aa821a
- Fix multilib issue with HAVE_PTRACE_GETREGS in config.h.
aa821a
aa821a
* Fri Oct 04 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30.3
aa821a
- Rebuilt for i386 and x86_64.
aa821a
aa821a
* Thu Oct 03 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30.2
aa821a
- Fixup selinux labels even on RHEL6 in post. (#1014726).
aa821a
aa821a
* Tue Oct 01 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30.1
aa821a
- Resync with 3.8.1-30
aa821a
- Filter out -mcpu= so tests are compiled with the right flags. (#996927).
aa821a
- Implement SSE4 MOVNTDQA insn (valgrind-3.8.1-movntdqa.patch)
aa821a
- Don't BuildRequire /bin/ps, just BuildRequire procps
aa821a
  (procps-ng provides procps).
aa821a
- Fix power_ISA2_05 testcase (valgrind-3.8.1-power-isa-205-deprecation.patch)
aa821a
- Fix ppc32 make check build (valgrind-3.8.1-initial-power-isa-207.patch)
aa821a
- Add valgrind-3.8.1-mmxext.patch
aa821a
- Allow building against glibc 2.18. (#999169)
aa821a
- Add valgrind-3.8.1-s390-STFLE.patch
aa821a
  s390 message-security assist (MSA) instruction extension not implemented.
aa821a
- Add valgrind-3.8.1-power-isa-205-deprecation.patch
aa821a
  Deprecation of some ISA 2.05 POWER6 instructions.
aa821a
- Fixup auto-foo generation of new manpage doc patch.
aa821a
- tests/check_isa-2_07_cap should be executable.
aa821a
- Add valgrind-3.8.1-initial-power-isa-207.patch
aa821a
  Initial ISA 2.07 support for POWER8-tuned libc.
aa821a
- Don't depend on docdir location and version in openmpi subpackage
aa821a
  description (#993938).
aa821a
- Enable openmpi subpackage also on arm.
aa821a
- Add valgrind-3.8.1-ptrace-include-configure.patch (#992847)
aa821a
- Add valgrind-3.8.1-dwarf-anon-enum.patch
aa821a
- Cleanup valgrind-3.8.1-sigill_diag.patch .orig file changes (#949687).
aa821a
- Add valgrind-3.8.1-ppc-setxattr.patch
aa821a
- Add valgrind-3.8.1-new-manpages.patch
aa821a
- Add valgrind-3.8.1-ptrace-thread-area.patch
aa821a
- Add valgrind-3.8.1-af-bluetooth.patch
aa821a
- Add valgrind-3.8.1-zero-size-sections.patch. Resolves issues with zero
aa821a
  sized .eh_frame sections on ppc64.
aa821a
aa821a
* Fri Aug 02 2013 Lubos Kocman <lkocman@redhat.com> - 3.8.1-14.4
aa821a
- Fixing incorrect dist-tag el5_6 -> el5
aa821a
aa821a
* Thu Aug  1 2013 Frank Ch. Eigler <fche@redhat.com> 3.8.1-14.3
aa821a
- bz988640, selinux context fix
aa821a
aa821a
* Fri Jun 28 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-14.2
aa821a
- selinux context fixup only needed for RHEL5 scl build. (#979412)
aa821a
aa821a
* Thu Apr 18 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-14.1
aa821a
- Resync with fedora 3.8.1-14
aa821a
  - fixup selinux file context when doing a scl build.
aa821a
  - Enable regtest suite on ARM.
aa821a
  - valgrind-3.8.1-abbrev-parsing.patch, drop workaround, enable real fix.
aa821a
  - Fix -Ttext-segment configure check. Enables s390x again.
aa821a
  - BuildRequire ps for testsuite.
aa821a
aa821a
* Tue Mar 12 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-13.1
aa821a
- Resync with fedora 3.8.1-13
aa821a
  - Add valgrind-3.8.1-text-segment.patch
aa821a
  - Don't undefine _missing_build_ids_terminate_build.
aa821a
  - Fix quoting in valgrind valgrind-3.8.1-enable-armv5.patch
aa821a
  - Add valgrind-3.8.1-regtest-fixlets.patch.
aa821a
aa821a
* Tue Mar 12 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-11.1
aa821a
- Resync with fedora 3.8.1-11
aa821a
  Mark Wielaard <mjw@redhat.com>
aa821a
  - Add valgrind-3.8.1-manpages.patch
aa821a
  - Don't disable -debuginfo package generation, but do undefine
aa821a
    _missing_build_ids_terminate_build.
aa821a
  - Add valgrind-3.8.1-sendmsg-flags.patch
aa821a
  - Add valgrind-3.8.1-ptrace-setgetregset.patch
aa821a
  - Add valgrind-3.8.1-static-variables.patch
aa821a
  Jon Ciesla <limburgher@gmail.com>
aa821a
  - Merge review fixes, BZ 226522.
aa821a
aa821a
* Wed Jan 16 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-6.1
aa821a
- Allow building against glibc-2.17.
aa821a
aa821a
* Mon Jan 14 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-5.1
aa821a
- Add valgrind-3.8.1-stpncpy.patch (KDE#309427)
aa821a
- Add valgrind-3.8.1-ppc-32-mode-64-bit-instr.patch (#810992, KDE#308573)
aa821a
- Add valgrind-3.8.1-sigill_diag.patch (#810992, KDE#309425)
aa821a
- Rebase on fedora valgrind 3.8.1-5
aa821a
aa821a
* Tue Oct 16 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-3.2
aa821a
- Add valgrind-3.8.1-xaddb.patch (#866943, KDE#307106)
aa821a
aa821a
* Mon Oct 15 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-3.1
aa821a
- Rebase on fedora valgrind 3.8.1-3
aa821a
aa821a
* Fri Sep 14 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-8.2
aa821a
- Only use DTS binutils and gdb for new asm and test checks, not gcc.
aa821a
aa821a
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-8.1
aa821a
- Rebase on fedora 3.8.0-8.
aa821a
  - Add valgrind-3.8.0-avx2-bmi-fma.patch (KDE#305728)
aa821a
  - Add configure fixup valgrind-3.8.0-bmi-conf-check.patch
aa821a
- Use scl gcc and binutils also for build to pick up new instruction support.
aa821a
aa821a
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> - 3.8.0-6.2
aa821a
- libmpiwrapper should not require a particular libmpi.so version (#854542)
aa821a
aa821a
* Tue Sep 11 2012 Mark Wielaard <mjw@redhat.com> - 3.8.0-6.1
aa821a
- Rebase on fedora 3.8.0-6.
aa821a
  - tweak up <valgrind/config.h> to allow simultaneous installation
aa821a
    of valgrind-devel.{i686,x86_64} (#848146)
aa821a
  - Add valgrind-3.8.0-find-buildid.patch workaround bug #849435 (KDE#305431).
aa821a
  - Add valgrind-3.8.0-abbrev-parsing.patch for #849783 (KDE#305513).
aa821a
  - Add valgrind-3.8.0-lzcnt-tzcnt-bugfix.patch (KDE#295808)
aa821a
  - Add valgrind-3.8.0-avx-alignment-check.patch (KDE#305926)
aa821a
aa821a
* Fri Aug 10 2012 Mark Wielaard <mjw@redhat.com> - 3.8.0-1.1
aa821a
- update to 3.8.0 release, based on fedora 3.8.0-1.
aa821a
aa821a
* Mon Jul 23 2012 Mark Wielaard <mjw@redhat.com> - 3.7.0-4.2
aa821a
- Enable devtoolset-1.1-gcc build requires again for check.
aa821a
aa821a
* Mon Jul 16 2012 Mark Wielaard <mjw@redhat.com> - 3.7.0-4.1
aa821a
- Add SCL macros
aa821a
- Temporarily disable gcc requires, devtoolset-1.1-gcc not yet there.
aa821a
aa821a
* Mon May  7 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-4
aa821a
- adjust suppressions so that it works even with ld-2.15.so (#806854)
aa821a
- handle DW_TAG_unspecified_type and DW_TAG_rvalue_reference_type
aa821a
  (#810284, KDE#278313)
aa821a
- handle .debug_types sections (#810286, KDE#284124)
aa821a
aa821a
* Sun Mar  4 2012 Peter Robinson <pbrobinson@fedoraproject.org> 3.7.0-2
aa821a
- Fix building on ARM platform
aa821a
aa821a
* Fri Jan 27 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-1
aa821a
- update to 3.7.0 (#769213, #782910, #772343)
aa821a
- handle some further SCSI ioctls (#783936)
aa821a
- handle fcntl F_SETOWN_EX and F_GETOWN_EX (#770746)
aa821a
aa821a
* Wed Aug 17 2011 Adam Jackson <ajax@redhat.com> 3.6.1-6
aa821a
- rebuild for rpm 4.9.1 trailing / bug
aa821a
aa821a
* Thu Jul 21 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-5
aa821a
- handle PLT unwind info (#723790, KDE#277045)
aa821a
aa821a
* Mon Jun 13 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-4
aa821a
- fix memcpy/memmove redirection on x86_64 (#705790)
aa821a
aa821a
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-3
aa821a
- fix testing against glibc 2.14
aa821a
aa821a
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-2
aa821a
- fix build on ppc64 (#711608)
aa821a
- don't fail if s390x support patch hasn't been applied,
aa821a
  move testing into %%check (#708522)
aa821a
- rebuilt against glibc 2.14
aa821a
aa821a
* Wed Feb 23 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-1
aa821a
- update to 3.6.1
aa821a
aa821a
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.6.0-3
aa821a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
aa821a
aa821a
* Fri Jan 28 2011 Jakub Jelinek <jakub@redhat.com> 3.6.0-2
aa821a
- rebuilt against glibc 2.13 (#673046)
aa821a
- hook in pwrite64 syscall on ppc64 (#672858)
aa821a
- fix PIE handling on ppc/ppc64 (#665289)
aa821a
aa821a
* Fri Nov 12 2010 Jakub Jelinek <jakub@redhat.com> 3.6.0-1
aa821a
- update to 3.6.0
aa821a
- add s390x support (#632354)
aa821a
- provide a replacement for str{,n}casecmp{,_l} (#626470)
aa821a
aa821a
* Tue May 18 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-18
aa821a
- rebuilt against glibc 2.12
aa821a
aa821a
* Mon Apr 12 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-16
aa821a
- change pub_tool_basics.h not to include config.h (#579283)
aa821a
- add valgrind-openmpi package for OpenMPI support (#565541)
aa821a
- allow NULL second argument to capget (#450976)
aa821a
aa821a
* Wed Apr  7 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-15
aa821a
- handle i686 nopw insns with more than one data16 prefix (#574889)
aa821a
- DWARF4 support
aa821a
- handle getcpu and splice syscalls
aa821a
aa821a
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-14
aa821a
- fix build against latest glibc headers
aa821a
aa821a
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-13
aa821a
- DW_OP_mod is unsigned modulus instead of signed
aa821a
- fix up valgrind.pc (#551277)
aa821a
aa821a
* Mon Dec 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-12
aa821a
- don't require offset field to be set in adjtimex's
aa821a
  ADJ_OFFSET_SS_READ mode (#545866)
aa821a
aa821a
* Wed Dec  2 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-10
aa821a
- add handling of a bunch of recent syscalls and fix some
aa821a
  other syscall wrappers (Dodji Seketeli)
aa821a
- handle prelink created split of .bss into .dynbss and .bss
aa821a
  and similarly for .sbss and .sdynbss (#539874)
aa821a
aa821a
* Wed Nov  4 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-9
aa821a
- rebuilt against glibc 2.11
aa821a
- use upstream version of the ifunc support
aa821a
aa821a
* Wed Oct 28 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-8
aa821a
- add preadv/pwritev syscall support
aa821a
aa821a
* Tue Oct 27 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-7
aa821a
- add perf_counter_open syscall support (#531271)
aa821a
- add handling of some sbb/adc insn forms on x86_64 (KDE#211410)
aa821a
aa821a
* Fri Oct 23 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-6
aa821a
- ppc and ppc64 fixes
aa821a
aa821a
* Thu Oct 22 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-5
aa821a
- add emulation of 0x67 prefixed loop* insns on x86_64 (#530165)
aa821a
aa821a
* Wed Oct 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-4
aa821a
- handle reading of .debug_frame in addition to .eh_frame
aa821a
- ignore unknown DWARF3 expressions in evaluate_trivial_GX
aa821a
- suppress helgrind race errors in helgrind's own mythread_wrapper
aa821a
- fix compilation of x86 tests on x86_64 and ppc tests
aa821a
aa821a
* Wed Oct 14 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-3
aa821a
- handle many more DW_OP_* ops that GCC now uses
aa821a
- handle the more compact form of DW_AT_data_member_location
aa821a
- don't strip .debug_loc etc. from valgrind binaries
aa821a
aa821a
* Mon Oct 12 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-2
aa821a
- add STT_GNU_IFUNC support (Dodji Seketeli, #518247)
aa821a
- wrap inotify_init1 syscall (Dodji Seketeli, #527198)
aa821a
- fix mmap/mprotect handling in memcheck (KDE#210268)
aa821a
aa821a
* Fri Aug 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-1
aa821a
- update to 3.5.0
aa821a
aa821a
* Tue Jul 28 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-7
aa821a
- handle futex ops newly added during last 4 years (#512121)
aa821a
aa821a
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 3.4.1-6
aa821a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
aa821a
aa821a
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-5
aa821a
- add support for DW_CFA_{remember,restore}_state
aa821a
aa821a
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-4
aa821a
- handle version 3 .debug_frame, .eh_frame, .debug_info and
aa821a
  .debug_line (#509197)
aa821a
aa821a
* Mon May 11 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-3
aa821a
- rebuilt against glibc 2.10.1
aa821a
aa821a
* Wed Apr 22 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-2
aa821a
- redirect x86_64 ld.so strlen early (#495645)
aa821a
aa821a
* Mon Mar  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-1
aa821a
- update to 3.4.1
aa821a
aa821a
* Mon Feb  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.0-3
aa821a
- update to 3.4.0
aa821a
aa821a
* Wed Apr 16 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-3
aa821a
- add suppressions for glibc 2.8
aa821a
- add a bunch of syscall wrappers (#441709)
aa821a
aa821a
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-2
aa821a
- add _dl_start suppression for ppc/ppc64
aa821a
aa821a
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-1
aa821a
- update to 3.3.0
aa821a
- split off devel bits into valgrind-devel subpackage
aa821a
aa821a
* Thu Oct 18 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-7
aa821a
- add suppressions for glibc >= 2.7
aa821a
aa821a
* Fri Aug 31 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-6
aa821a
- handle new x86_64 nops (#256801, KDE#148447)
aa821a
- add support for private futexes (KDE#146781)
aa821a
- update License tag
aa821a
aa821a
* Fri Aug  3 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-5
aa821a
- add ppc64-linux symlink in valgrind ppc.rpm, so that when
aa821a
  rpm prefers 32-bit binaries over 64-bit ones 32-bit
aa821a
  /usr/bin/valgrind can find 64-bit valgrind helper binaries
aa821a
  (#249773)
aa821a
- power5+ and power6 support (#240762)
aa821a
aa821a
* Thu Jun 28 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-4
aa821a
- pass GDB=%%{_prefix}/gdb to configure to fix default
aa821a
  --db-command (#220840)
aa821a
aa821a
* Wed Jun 27 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-3
aa821a
- add suppressions for glibc >= 2.6
aa821a
- avoid valgrind internal error if io_destroy syscall is
aa821a
  passed a bogus argument
aa821a
aa821a
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-2
aa821a
- fix valgrind.pc again
aa821a
aa821a
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-1
aa821a
- update to 3.2.3
aa821a
aa821a
* Wed Nov  8 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-7
aa821a
- some cachegrind improvements (Ulrich Drepper)
aa821a
aa821a
* Mon Nov  6 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-6
aa821a
- fix valgrind.pc (#213149)
aa821a
- handle Intel Core2 cache sizes in cachegrind (Ulrich Drepper)
aa821a
aa821a
* Wed Oct 25 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-5
aa821a
- fix valgrind on ppc/ppc64 where PAGESIZE is 64K (#211598)
aa821a
aa821a
* Sun Oct  1 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-4
aa821a
- adjust for glibc-2.5
aa821a
aa821a
* Wed Sep 27 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-3
aa821a
- another DW_CFA_set_loc handling fix
aa821a
aa821a
* Tue Sep 26 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-2
aa821a
- fix openat handling (#208097)
aa821a
- fix DW_CFA_set_loc handling
aa821a
aa821a
* Tue Sep 19 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-1
aa821a
- update to 3.2.1 bugfix release
aa821a
  - SSE3 emulation fixes, reduce memcheck false positive rate,
aa821a
    4 dozens of bugfixes
aa821a
aa821a
* Mon Aug 21 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-5
aa821a
- handle the new i686/x86_64 nops (#203273)
aa821a
aa821a
* Fri Jul 28 2006 Jeremy Katz <katzj@redhat.com> - 1:3.2.0-4
aa821a
- rebuild to bring ppc back
aa821a
aa821a
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.2.0-3.1
aa821a
- rebuild
aa821a
aa821a
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-3
aa821a
- handle [sg]et_robust_list syscall on ppc{32,64}
aa821a
aa821a
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-2
aa821a
- fix ppc64 symlink to 32-bit valgrind libdir
aa821a
- handle a few extra ppc64 syscalls
aa821a
aa821a
* Thu Jun 15 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-1
aa821a
- update to 3.2.0
aa821a
  - ppc64 support
aa821a
aa821a
* Fri May 26 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-3
aa821a
- handle [sg]et_robust_list syscalls on i?86/x86_64
aa821a
- handle *at syscalls on ppc
aa821a
- ensure on x86_64 both 32-bit and 64-bit glibc{,-devel} are
aa821a
  installed in the buildroot (#191820)
aa821a
aa821a
* Wed Apr 12 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-2
aa821a
- handle many syscalls that were unhandled before, especially on ppc
aa821a
aa821a
* Mon Apr  3 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-1
aa821a
- upgrade to 3.1.1
aa821a
  - many bugfixes
aa821a
aa821a
* Mon Mar 13 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-2
aa821a
- add support for DW_CFA_val_offset{,_sf}, DW_CFA_def_cfa_sf
aa821a
  and skip over DW_CFA_val_expression quietly
aa821a
- adjust libc/ld.so filenames in glibc-2.4.supp for glibc 2.4
aa821a
  release
aa821a
aa821a
* Mon Jan  9 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-1
aa821a
- upgrade to 3.1.0 (#174582)
aa821a
  - many bugfixes, ppc32 support
aa821a
aa821a
* Thu Oct 13 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-2
aa821a
- remove Obsoletes for valgrind-callgrind, as it has been
aa821a
  ported to valgrind 3.0.x already
aa821a
aa821a
* Sun Sep 11 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-1
aa821a
- upgrade to 3.0.1
aa821a
  - many bugfixes
aa821a
- handle xattr syscalls on x86-64 (Ulrich Drepper)
aa821a
aa821a
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-3
aa821a
- fix amd64 handling of cwtd instruction
aa821a
- fix amd64 handling of e.g. sarb $0x4,val(%%rip)
aa821a
- speedup amd64 insn decoding
aa821a
aa821a
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-2
aa821a
- lower x86_64 stage2 base from 112TB down to 450GB, so that
aa821a
  valgrind works even on 2.4.x kernels.  Still way better than
aa821a
  1.75GB that stock valgrind allows
aa821a
aa821a
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-1
aa821a
- upgrade to 3.0.0
aa821a
  - x86_64 support
aa821a
- temporarily obsolete valgrind-callgrind, as it has not been
aa821a
  ported yet
aa821a
aa821a
* Tue Jul 12 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-3
aa821a
- build some insn tests with -mmmx, -msse or -msse2 (#161572)
aa821a
- handle glibc-2.3.90 the same way as 2.3.[0-5]
aa821a
aa821a
* Wed Mar 30 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-2
aa821a
- resurrect the non-upstreamed part of valgrind_h patch
aa821a
- remove 2.1.2-4G patch, seems to be upstreamed
aa821a
- resurrect passing -fno-builtin in memcheck tests
aa821a
aa821a
* Sun Mar 27 2005 Colin Walters <walters@redhat.com> 2.4.0-1
aa821a
- New upstream version 
aa821a
- Update valgrind-2.2.0-regtest.patch to 2.4.0; required minor
aa821a
  massaging
aa821a
- Disable valgrind-2.1.2-4G.patch for now; Not going to touch this,
aa821a
  and Fedora does not ship 4G kernel by default anymore
aa821a
- Remove upstreamed valgrind-2.2.0.ioctls.patch
aa821a
- Remove obsolete valgrind-2.2.0-warnings.patch; Code is no longer
aa821a
  present
aa821a
- Remove upstreamed valgrind-2.2.0-valgrind_h.patch
aa821a
- Remove obsolete valgrind-2.2.0-unnest.patch and
aa821a
  valgrind-2.0.0-pthread-stacksize.patch; valgrind no longer
aa821a
  includes its own pthread library
aa821a
aa821a
* Thu Mar 17 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-10
aa821a
- rebuilt with GCC 4
aa821a
aa821a
* Tue Feb  8 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-8
aa821a
- avoid unnecessary use of nested functions for pthread_once
aa821a
  cleanup
aa821a
aa821a
* Mon Dec  6 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-7
aa821a
- update URL (#141873)
aa821a
aa821a
* Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-6
aa821a
- act as if NVALGRIND is defined when using <valgrind.h>
aa821a
  in non-m32/i386 programs (#138923)
aa821a
- remove weak from VALGRIND_PRINTF*, make it static and
aa821a
  add unused attribute
aa821a
aa821a
* Mon Nov  8 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-4
aa821a
- fix a printout and possible problem with local variable
aa821a
  usage around setjmp (#138254)
aa821a
aa821a
* Tue Oct  5 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-3
aa821a
- remove workaround for buggy old makes (#134563)
aa821a
aa821a
* Fri Oct  1 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-2
aa821a
- handle some more ioctls (Peter Jones, #131967)
aa821a
aa821a
* Thu Sep  2 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-1
aa821a
- update to 2.2.0
aa821a
aa821a
* Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-3
aa821a
- fix packaging of documentation
aa821a
aa821a
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-2
aa821a
- allow tracing of 32-bit binaries on x86-64
aa821a
aa821a
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-1
aa821a
- update to 2.1.2
aa821a
- run make regtest as part of package build
aa821a
- use glibc-2.3 suppressions instead of glibc-2.2 suppressions
aa821a
aa821a
* Thu Apr 29 2004 Colin Walters <walters@redhat.com> 2.0.0-1
aa821a
- update to 2.0.0
aa821a
aa821a
* Tue Feb 25 2003 Jeff Johnson <jbj@redhat.com> 1.9.4-0.20030228
aa821a
- update to 1.9.4 from CVS.
aa821a
- dwarf patch from Graydon Hoare.
aa821a
- sysinfo patch from Graydon Hoare, take 1.
aa821a
aa821a
* Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-6.20030207
aa821a
- add return codes to syscalls.
aa821a
- fix: set errno after syscalls.
aa821a
aa821a
* Tue Feb 11 2003 Graydon Hoare <graydon@redhat.com> 1.9.3-5.20030207
aa821a
- add handling for separate debug info (+fix).
aa821a
- handle blocking readv/writev correctly.
aa821a
- comment out 4 overly zealous pthread checks.
aa821a
aa821a
* Tue Feb 11 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-4.20030207
aa821a
- move _pthread_desc to vg_include.h.
aa821a
- implement pthread_mutex_timedlock().
aa821a
- implement pthread_barrier_wait().
aa821a
aa821a
* Mon Feb 10 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-3.20030207
aa821a
- import all(afaik) missing functionality from linuxthreads.
aa821a
aa821a
* Sun Feb  9 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-2.20030207
aa821a
- import more missing functionality from linuxthreads in glibc-2.3.1.
aa821a
aa821a
* Sat Feb  8 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-1.20030207
aa821a
- start fixing nptl test cases.
aa821a
aa821a
* Fri Feb  7 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-0.20030207
aa821a
- build against current 1.9.3 with nptl hacks.
aa821a
aa821a
* Tue Oct 15 2002 Alexander Larsson <alexl@redhat.com>
aa821a
- Update to 1.0.4
aa821a
aa821a
* Fri Aug  9 2002 Alexander Larsson <alexl@redhat.com>
aa821a
- Update to 1.0.0
aa821a
aa821a
* Wed Jul  3 2002 Alexander Larsson <alexl@redhat.com>
aa821a
- Update to pre4.
aa821a
aa821a
* Tue Jun 18 2002 Alexander Larsson <alla@lysator.liu.se>
aa821a
- Add threadkeys and extra suppressions patches. Bump epoch.
aa821a
aa821a
* Mon Jun 17 2002 Alexander Larsson <alla@lysator.liu.se>
aa821a
- Updated to 1.0pre1
aa821a
aa821a
* Tue May 28 2002 Alex Larsson <alexl@redhat.com>
aa821a
- Updated to 20020524. Added GLIBC_PRIVATE patch
aa821a
aa821a
* Thu May  9 2002 Jonathan Blandford <jrb@redhat.com>
aa821a
- add missing symbol __pthread_clock_settime
aa821a
aa821a
* Wed May  8 2002 Alex Larsson <alexl@redhat.com>
aa821a
- Update to 20020508
aa821a
aa821a
* Mon May  6 2002 Alex Larsson <alexl@redhat.com>
aa821a
- Update to 20020503b
aa821a
aa821a
* Thu May  2 2002 Alex Larsson <alexl@redhat.com>
aa821a
- update to new snapshot
aa821a
aa821a
* Mon Apr 29 2002 Alex Larsson <alexl@redhat.com> 20020428-1
aa821a
- update to new snapshot
aa821a
aa821a
* Fri Apr 26 2002 Jeremy Katz <katzj@redhat.com> 20020426-1
aa821a
- update to new snapshot
aa821a
aa821a
* Thu Apr 25 2002 Alex Larsson <alexl@redhat.com> 20020424-5
aa821a
- Added stack patch. Commented out other patches.
aa821a
aa821a
* Wed Apr 24 2002 Nalin Dahyabhai <nalin@redhat.com> 20020424-4
aa821a
- filter out GLIBC_PRIVATE requires, add preload patch
aa821a
aa821a
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-3
aa821a
- Make glibc 2.2 and XFree86 4 the default supressions
aa821a
aa821a
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-2
aa821a
- Added patch that includes atomic.h
aa821a
aa821a
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-1
aa821a
- Initial build