Blame SPECS/valgrind.spec

baee74
%{?scl:%scl_package valgrind}
baee74
baee74
Summary: Tool for finding memory management bugs in programs
baee74
Name: %{?scl_prefix}valgrind
baee74
Version: 3.15.0
baee74
Release: 9%{?dist}
baee74
Epoch: 1
baee74
License: GPLv2+
baee74
URL: http://www.valgrind.org/
baee74
Group: Development/Debuggers
baee74
baee74
# Only necessary for RHEL, will be ignored on Fedora
baee74
baee74
# Are we building for a Software Collection?
baee74
%{?scl:%global is_scl 1}
baee74
%{!?scl:%global is_scl 0}
baee74
baee74
# We never want the openmpi subpackage when building a software collecton.
baee74
# We always want it for fedora.
baee74
# We only want it for older rhel. But not s390x for too old rhel.
baee74
%if %{is_scl}
baee74
  %global build_openmpi 0
baee74
%else
baee74
  %if 0%{?fedora}
baee74
    %global build_openmpi 1
baee74
  %endif
baee74
  %if 0%{?rhel}
baee74
    %if 0%{?rhel} > 7
baee74
      %global build_openmpi 0
baee74
    %else
baee74
      %ifarch s390x
baee74
	%global build_openmpi (%{?rhel} > 6)
baee74
      %else
baee74
	%global build_openmpi 1
baee74
      %endif
baee74
    %endif
baee74
  %endif
baee74
%endif
baee74
baee74
# We only want to build the valgrind-tools-devel package for Fedora proper
baee74
# as convenience. But not for DTS or RHEL.
baee74
%if %{is_scl}
baee74
  %global build_tools_devel 0
baee74
%else
baee74
  %if 0%{?rhel}
baee74
    %global build_tools_devel 0
baee74
  %else
baee74
    %global build_tools_devel 1
baee74
  %endif
baee74
%endif
baee74
baee74
# Whether to run the full regtest or only a limited set
baee74
# The full regtest includes gdb_server integration tests
baee74
# and experimental tools.
baee74
# Only run full regtests on fedora, but not on older rhel
baee74
# or when creating scl, the gdb_server tests might hang.
baee74
%if %{is_scl}
baee74
  %global run_full_regtest 0
baee74
%else
baee74
  %if 0%{?fedora}
baee74
    %global run_full_regtest 1
baee74
  %endif
baee74
  %if 0%{?rhel}
baee74
    %global run_full_regtest (%rhel >= 7)
baee74
  %endif
baee74
%endif
baee74
baee74
# Generating minisymtabs doesn't really work for the staticly linked
baee74
# tools. Note (below) that we don't strip the vgpreload libraries at all
baee74
# because valgrind might read and need the debuginfo in those (client)
baee74
# libraries for better error reporting and sometimes correctly unwinding.
baee74
# So those will already have their full symbol table.
baee74
%undefine _include_minidebuginfo
baee74
baee74
Source0: ftp://sourceware.org/pub/valgrind/valgrind-%{version}.tar.bz2
baee74
baee74
# Needs investigation and pushing upstream
baee74
Patch1: valgrind-3.9.0-cachegrind-improvements.patch
baee74
baee74
# KDE#211352 - helgrind races in helgrind's own mythread_wrapper
baee74
Patch2: valgrind-3.9.0-helgrind-race-supp.patch
baee74
baee74
# Make ld.so supressions slightly less specific.
baee74
Patch3: valgrind-3.9.0-ldso-supp.patch
baee74
baee74
# We want all executables and libraries in libexec instead of lib
baee74
# so they are only available for valgrind usage itself and so the
baee74
# same directory is used independent of arch.
baee74
Patch4: valgrind-3.15.0-pkglibexecdir.patch
baee74
baee74
# KDE#398649 s390x z13 support doesn't build with older gcc/binutils
baee74
# Disable z13 support (on rhel6)
baee74
Patch5: valgrind-3.15.0-disable-s390x-z13.patch
baee74
baee74
# Add some stack-protector
baee74
Patch6: valgrind-3.15.0-some-stack-protector.patch
baee74
baee74
# KDE#406561  mcinfcallWSRU gdbserver_test fails on ppc64
baee74
Patch7: valgrind-3.15.0-ppc64-filter_gdb.patch
baee74
baee74
# KDE#407218 Add support for the copy_file_range syscall
baee74
Patch8: valgrind-3.15.0-copy_file_range.patch
baee74
baee74
# KDE#407307 Intercept stpcpy also in ld.so for arm64
baee74
Patch9: valgrind-3.15.0-arm64-ld-stpcpy.patch
baee74
baee74
# commit 59784c aarch64 (arm64) isn't a supported architecture for exp-sgcheck.
baee74
Patch10: valgrind-3.15.0-exp-sgcheck-no-aarch64.patch
baee74
baee74
# commit 917e42 Make memcheck/tests/arm64-linux/scalar work under root
baee74
Patch11: valgrind-3.15.0-scalar-arm64.patch
baee74
baee74
# commit abc09f Make memcheck/tests/x86-linux/scalar test work under root.
baee74
Patch12: valgrind-3.15.0-scalar-x86.patch
baee74
baee74
# KDE#407764 s390x: drd fails on z13 due to function wrapping issue
baee74
Patch13: valgrind-3.15.0-s390x-wrap-drd.patch
baee74
baee74
# Add some -Wl,z,now.
baee74
Patch14: valgrind-3.15.0-some-Wl-z-now.patch
baee74
baee74
# KDE#408009 Expose rdrand and f16c even on avx if host cpu supports them
baee74
Patch15: valgrind-3.15.0-avx-rdrand-f16c.patch
baee74
baee74
# KDE#408091 Missing pkey syscalls
baee74
Patch16: valgrind-3.15.0-pkey.patch
baee74
71f454
# Fix test link on arm32
71f454
Patch8001: valgrind-3.14.0-fix-tests-arm.patch
71f454
baee74
BuildRequires: glibc-devel
baee74
baee74
%if %{build_openmpi}
baee74
BuildRequires: openmpi-devel
baee74
%endif
baee74
baee74
%if %{run_full_regtest}
baee74
BuildRequires: gdb
baee74
%endif
baee74
baee74
# gdbserver_tests/filter_make_empty uses ps in test
baee74
BuildRequires: procps
baee74
baee74
# Some testcases require g++ to build
baee74
BuildRequires: gcc-c++
baee74
baee74
# check_headers_and_includes uses Getopt::Long
baee74
%if 0%{?fedora}
baee74
BuildRequires: perl-generators
baee74
%endif
baee74
BuildRequires: perl(Getopt::Long)
baee74
baee74
# We always autoreconf
baee74
BuildRequires: automake
baee74
BuildRequires: autoconf
baee74
baee74
%{?scl:Requires:%scl_runtime}
baee74
baee74
# We need to fixup selinux file context when doing a scl build.
baee74
# In RHEL6 we might need to fix up the labels even though the
baee74
# meta package sets up a fs equivalence. See post.
baee74
%if 0%{?rhel} == 6
baee74
%{?scl:Requires(post): /sbin/restorecon}
baee74
%endif
baee74
baee74
# We could use %%valgrind_arches as defined in redhat-rpm-config
baee74
# But that is really for programs using valgrind, it defines the
baee74
# set of architectures that valgrind works correctly on.
baee74
ExclusiveArch: %{ix86} x86_64 ppc ppc64 ppc64le s390x armv7hl aarch64
baee74
baee74
# Define valarch, the architecture name that valgrind uses
baee74
# And only_arch, the configure option to only build for that arch.
baee74
%ifarch %{ix86}
baee74
%define valarch x86
baee74
%define only_arch --enable-only32bit
baee74
%endif
baee74
%ifarch x86_64
baee74
%define valarch amd64
baee74
%define only_arch --enable-only64bit
baee74
%endif
baee74
%ifarch ppc
baee74
%define valarch ppc32
baee74
%define only_arch --enable-only32bit
baee74
%endif
baee74
%ifarch ppc64
baee74
%define valarch ppc64be
baee74
%define only_arch --enable-only64bit
baee74
%endif
baee74
%ifarch ppc64le
baee74
%define valarch ppc64le
baee74
%define only_arch --enable-only64bit
baee74
%endif
baee74
%ifarch s390x
baee74
%define valarch s390x
baee74
%define only_arch --enable-only64bit
baee74
%endif
baee74
%ifarch armv7hl
baee74
%define valarch arm
baee74
%define only_arch --enable-only32bit
baee74
%endif
baee74
%ifarch aarch64
baee74
%define valarch arm64
baee74
%define only_arch --enable-only64bit
baee74
%endif
baee74
baee74
%description
baee74
Valgrind is an instrumentation framework for building dynamic analysis
baee74
tools. There are Valgrind tools that can automatically detect many
baee74
memory management and threading bugs, and profile your programs in
baee74
detail. You can also use Valgrind to build new tools. The Valgrind
baee74
distribution currently includes six production-quality tools: a memory
baee74
error detector (memcheck, the default tool), two thread error
baee74
detectors (helgrind and drd), a cache and branch-prediction profiler
baee74
(cachegrind), a call-graph generating cache and branch-prediction
baee74
profiler (callgrind), and a heap profiler (massif).
baee74
baee74
%package devel
baee74
Summary: Development files for valgrind aware programs
baee74
Group: Development/Debuggers
baee74
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
baee74
baee74
%description devel
baee74
Header files and libraries for development of valgrind aware programs.
baee74
baee74
%if %{build_tools_devel}
baee74
%package tools-devel
baee74
Summary: Development files for building valgrind tools.
baee74
Group: Development/Debuggers
baee74
Requires: %{?scl_prefix}valgrind-devel = %{epoch}:%{version}-%{release}
baee74
Provides: %{name}-static = %{epoch}:%{version}-%{release}
baee74
baee74
%description tools-devel
baee74
Header files and libraries for development of valgrind tools.
baee74
%endif
baee74
baee74
%if %{build_openmpi}
baee74
%package openmpi
baee74
Summary: OpenMPI support for valgrind
baee74
Group: Development/Debuggers
baee74
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
baee74
baee74
%description openmpi
baee74
A wrapper library for debugging OpenMPI parallel programs with valgrind.
baee74
See the section on Debugging MPI Parallel Programs with Valgrind in the
baee74
Valgrind User Manual for details.
baee74
%endif
baee74
baee74
%prep
baee74
%setup -q -n %{?scl:%{pkg_name}}%{!?scl:%{name}}-%{version}
baee74
baee74
%patch1 -p1
baee74
%patch2 -p1
baee74
%patch3 -p1
baee74
%patch4 -p1
baee74
baee74
# Disable s390x z13 support on old rhel, binutils is just too old.
baee74
%if 0%{?rhel} == 6
baee74
%patch5 -p1
baee74
%endif
baee74
baee74
# Old rhel gcc doesn't have -fstack-protector-strong.
baee74
%if 0%{?fedora} || 0%{?rhel} >= 7
baee74
%patch6 -p1
baee74
%endif
baee74
baee74
%patch7 -p1
baee74
%patch8 -p1
baee74
%patch9 -p1
baee74
%patch10 -p1
baee74
%patch11 -p1
baee74
%patch12 -p1
baee74
%patch13 -p1
baee74
baee74
# This depends on patch6, old rhel gcc doesn't have -fstack-protector-strong.
baee74
%if 0%{?fedora} || 0%{?rhel} >= 7
baee74
%patch14 -p1
baee74
%endif
baee74
baee74
%patch15 -p1
baee74
%patch16 -p1
baee74
71f454
%ifarch %{arm}
71f454
%patch8001 -p1 -b .armtests
71f454
%endif
71f454
baee74
%build
baee74
baee74
# Some patches (might) touch Makefile.am or configure.ac files.
baee74
# Just always autoreconf so we don't need patches to prebuild files.
baee74
./autogen.sh
baee74
baee74
# Old openmpi-devel has version depended paths for mpicc.
baee74
%if %{build_openmpi}
baee74
%if 0%{?fedora} >= 13 || 0%{?rhel} >= 6
baee74
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/bin/mpicc
baee74
%else
baee74
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/*/bin/mpicc
baee74
%endif
baee74
%else
baee74
# We explicitly don't want the libmpi wrapper. So make sure that configure
baee74
# doesn't pick some random mpi compiler that happens to be installed.
baee74
%define mpiccpath /bin/false
baee74
%endif
baee74
baee74
# Filter out "hardening" flags that don't make sense for valgrind.
baee74
# -fstack-protector just cannot work (valgrind would have to implement
baee74
# its own version since it doesn't link with glibc and handles stack
baee74
# setup itself). We patch some flags back in just for those helper
baee74
# programs where it does make sense.
baee74
#
baee74
# -Wl,-z,now doesn't make sense for static linked tools
baee74
# and would prevent using the vgpreload libraries on binaries that
baee74
# don't link themselves against libraries (like pthread) which symbols
baee74
# are needed (but only if the inferior itself would use them).
baee74
#
baee74
# -O2 doesn't work for the vgpreload libraries either. They are meant
baee74
# to not be optimized to show precisely what happened. valgrind adds
baee74
# -O2 itself wherever suitable.
baee74
#
baee74
# On ppc64[be] -fexceptions is troublesome.
baee74
# It might cause an undefined reference to `_Unwind_Resume'
baee74
# in libcoregrind-ppc64be-linux.a(libcoregrind_ppc64be_linux_a-readelf.o):
baee74
# In function `read_elf_symtab__ppc64be_linux.
baee74
#
baee74
# Also disable strict symbol checks because the vg_preload library
baee74
# will use hidden/undefined symbols from glibc like __libc_freeres.
baee74
%undefine _strict_symbol_defs_build
baee74
baee74
%ifarch ppc64
baee74
CFLAGS="`echo " %{optflags} " | sed 's/ -fstack-protector\([-a-z]*\) / / g;s/ -O2 / /g;s/ -fexceptions / /g;'`"
baee74
%else
baee74
CFLAGS="`echo " %{optflags} " | sed 's/ -fstack-protector\([-a-z]*\) / / g;s/ -O2 / /g;'`"
baee74
%endif
baee74
export CFLAGS
baee74
baee74
# Older Fedora/RHEL only had __global_ldflags.
baee74
# Even older didn't even have that (so we don't need to scrub them).
baee74
%if 0%{?build_ldflags:1}
baee74
LDFLAGS="`echo " %{build_ldflags} "    | sed 's/ -Wl,-z,now / / g;'`"
baee74
%else
baee74
%if 0%{?__global_ldflags:1}
baee74
LDFLAGS="`echo " %{__global_ldflags} " | sed 's/ -Wl,-z,now / / g;'`"
baee74
%endif
baee74
%endif
baee74
export LDFLAGS
baee74
baee74
%configure \
baee74
  --with-mpicc=%{mpiccpath} \
baee74
  %{only_arch} \
baee74
  GDB=%{_bindir}/gdb
baee74
baee74
make %{?_smp_mflags}
baee74
baee74
%install
baee74
rm -rf $RPM_BUILD_ROOT
baee74
make DESTDIR=$RPM_BUILD_ROOT install
baee74
mkdir docs/installed
baee74
mv $RPM_BUILD_ROOT%{_datadir}/doc/valgrind/* docs/installed/
baee74
rm -f docs/installed/*.ps
baee74
baee74
# We want the MPI wrapper installed under the openmpi libdir so the script
baee74
# generating the MPI library requires picks them up and sets up the right
baee74
# openmpi libmpi.so requires. Install symlinks in the original/upstream
baee74
# location for backwards compatibility.
baee74
%if %{build_openmpi}
baee74
pushd $RPM_BUILD_ROOT%{_libdir}
baee74
mkdir -p openmpi/valgrind
baee74
cd valgrind
baee74
mv libmpiwrap-%{valarch}-linux.so ../openmpi/valgrind/
baee74
ln -s ../openmpi/valgrind/libmpiwrap-%{valarch}-linux.so
baee74
popd
baee74
%endif
baee74
baee74
%if %{build_tools_devel}
baee74
%ifarch %{ix86} x86_64
baee74
# To avoid multilib clashes in between i?86 and x86_64,
baee74
# tweak installed <valgrind/config.h> a little bit.
baee74
for i in HAVE_PTHREAD_CREATE_GLIBC_2_0 HAVE_PTRACE_GETREGS HAVE_AS_AMD64_FXSAVE64; do
baee74
  sed -i -e 's,^\(#define '$i' 1\|/\* #undef '$i' \*/\)$,#ifdef __x86_64__\n# define '$i' 1\n#endif,' \
baee74
    $RPM_BUILD_ROOT%{_includedir}/valgrind/config.h
baee74
done
baee74
%endif
baee74
%else
baee74
# Remove files we aren't going to package.
baee74
# See tools-devel files.
baee74
rm $RPM_BUILD_ROOT%{_includedir}/valgrind/config.h
baee74
rm $RPM_BUILD_ROOT%{_includedir}/valgrind/libvex*h
baee74
rm $RPM_BUILD_ROOT%{_includedir}/valgrind/pub_tool_*h
baee74
rm -rf $RPM_BUILD_ROOT%{_includedir}/valgrind/vki
baee74
rm $RPM_BUILD_ROOT%{_libdir}/valgrind/*.a
baee74
%endif
baee74
baee74
# We don't want debuginfo generated for the vgpreload libraries.
baee74
# Turn off execute bit so they aren't included in the debuginfo.list.
baee74
# We'll turn the execute bit on again in %%files.
baee74
chmod 644 $RPM_BUILD_ROOT%{_libexecdir}/valgrind/vgpreload*-%{valarch}-*so
baee74
baee74
%check
baee74
# Make sure some info about the system is in the build.log
baee74
# Add || true because rpm on copr EPEL6 acts weirdly and we don't want
baee74
# to break the build.
baee74
uname -a
baee74
rpm -q glibc gcc binutils || true
baee74
%if %{run_full_regtest}
baee74
rpm -q gdb || true
baee74
%endif
baee74
baee74
LD_SHOW_AUXV=1 /bin/true
baee74
cat /proc/cpuinfo
baee74
baee74
# Make sure a basic binary runs. There should be no errors.
baee74
./vg-in-place --error-exitcode=1 /bin/true --help
baee74
baee74
# Build the test files with the software collection compiler if available.
baee74
%{?scl:PATH=%{_bindir}${PATH:+:${PATH}}}
baee74
# Make sure no extra CFLAGS, CXXFLAGS or LDFLAGS leak through,
baee74
# the testsuite sets all flags necessary. See also configure above.
baee74
make %{?_smp_mflags} CFLAGS="" CXXFLAGS="" LDFLAGS="" check
baee74
baee74
# Workaround https://bugzilla.redhat.com/show_bug.cgi?id=1434601
baee74
# for gdbserver tests.
baee74
export PYTHONCOERCECLOCALE=0
baee74
baee74
echo ===============TESTING===================
baee74
%if %{run_full_regtest}
baee74
  make regtest || :
baee74
%else
baee74
  make nonexp-regtest || :
baee74
%endif
baee74
baee74
# Make sure test failures show up in build.log
baee74
# Gather up the diffs (at most the first 20 lines for each one)
baee74
MAX_LINES=20
baee74
diff_files=`find gdbserver_tests */tests -name '*.diff*' | sort`
baee74
if [ z"$diff_files" = z ] ; then
baee74
   echo "Congratulations, all tests passed!" >> diffs
baee74
else
baee74
   for i in $diff_files ; do
baee74
      echo "=================================================" >> diffs
baee74
      echo $i                                                  >> diffs
baee74
      echo "=================================================" >> diffs
baee74
      if [ `wc -l < $i` -le $MAX_LINES ] ; then
baee74
         cat $i                                                >> diffs
baee74
      else
baee74
         head -n $MAX_LINES $i                                 >> diffs
baee74
         echo "<truncated beyond $MAX_LINES lines>"            >> diffs
baee74
      fi
baee74
   done
baee74
fi
baee74
cat diffs
baee74
echo ===============END TESTING===============
baee74
baee74
%files
baee74
%doc COPYING NEWS README_*
baee74
%doc docs/installed/html docs/installed/*.pdf
baee74
%{_bindir}/*
baee74
%dir %{_libexecdir}/valgrind
baee74
# Install everything in the libdir except the .so.
baee74
# The vgpreload so files might need file mode adjustment.
baee74
%{_libexecdir}/valgrind/*[^o]
baee74
# Turn on executable bit again for vgpreload libraries.
baee74
# Was disabled in %%install to prevent debuginfo stripping.
baee74
%attr(0755,root,root) %{_libexecdir}/valgrind/vgpreload*-%{valarch}-*so
baee74
%{_mandir}/man1/*
baee74
baee74
%files devel
baee74
%dir %{_includedir}/valgrind
baee74
%{_includedir}/valgrind/valgrind.h
baee74
%{_includedir}/valgrind/callgrind.h
baee74
%{_includedir}/valgrind/drd.h
baee74
%{_includedir}/valgrind/helgrind.h
baee74
%{_includedir}/valgrind/memcheck.h
baee74
%{_libdir}/pkgconfig/valgrind.pc
baee74
baee74
%if %{build_tools_devel}
baee74
%files tools-devel
baee74
%{_includedir}/valgrind/config.h
baee74
%{_includedir}/valgrind/libvex*h
baee74
%{_includedir}/valgrind/pub_tool_*h
baee74
%{_includedir}/valgrind/vki
baee74
%dir %{_libdir}/valgrind
baee74
%{_libdir}/valgrind/*.a
baee74
%endif
baee74
baee74
%if %{build_openmpi}
baee74
%files openmpi
baee74
%dir %{_libdir}/valgrind
baee74
%{_libdir}/openmpi/valgrind/libmpiwrap*.so
baee74
%{_libdir}/valgrind/libmpiwrap*.so
baee74
%endif
baee74
baee74
%if 0%{?rhel} == 6
baee74
%post
baee74
# There is a bug in rpm (rhbz#214737) that might cause post to be run
baee74
# even thought the binary isn't installed when installing two multilib
baee74
# versions at the same time.
baee74
if [ -x %{_bindir}/valgrind ]; then
baee74
# On RHEL6 the fs equivalency should be setup by the devtoolset meta
baee74
# package, but because of a rpm bug (rhbz#924044) it might not work.
baee74
%{?scl:/sbin/restorecon %{_bindir}/valgrind}%{!?scl:true}
baee74
fi
baee74
%endif
baee74
baee74
%changelog
baee74
* Wed May 29 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-9
baee74
- Add valgrind-3.15.0-pkey.patch
baee74
- Add valgrind-3.15.0-avx-rdrand-f16c.patch.
baee74
baee74
* Fri May 24 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-6
baee74
- Update valgrind-3.15.0-copy_file_range.patch.
baee74
- Update valgrind-3.15.0-some-stack-protector.patch to include getoff.
baee74
- Add valgrind-3.15.0-some-Wl-z-now.patch
baee74
- Add valgrind-3.15.0-s390x-wrap-drd.patch
baee74
baee74
* Mon May 20 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-5
baee74
- Add valgrind-3.15.0-exp-sgcheck-no-aarch64.patch
baee74
- Add valgrind-3.15.0-scalar-arm64.patch
baee74
- Add valgrind-3.15.0-scalar-x86.patch
baee74
baee74
* Wed May  8 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-4
baee74
- Add valgrind-3.15.0-copy_file_range.patch
baee74
- Add valgrind-3.15.0-arm64-ld-stpcpy.patch
baee74
baee74
* Tue May  7 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-2
baee74
- valgrind-3.15.0 final
baee74
- clean up build flags
baee74
baee74
* Wed Apr 17 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-11
baee74
- Rebuilt with s390x-vec-facility-bit for 8.1.0 (#1669234)
baee74
baee74
* Thu Jan 24 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-10
baee74
- Add valgrind-3.14.0-s390x-vec-facility-bit.patch.
baee74
baee74
* Mon Jan  7 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-9
baee74
- Add valgrind-3.14.0-power9-addex.patch
baee74
baee74
* Thu Dec 20 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-8
baee74
- Update valgrind-3.14.0-jm-vmx-constraints.patch for ppc64. (#1658680)
baee74
- Show all diff files in check, not just the main/default one.
baee74
baee74
* Mon Dec 17 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-7
baee74
- Add valgrind-3.14.0-arm64-ptrace-traceme.patch
baee74
- Add valgrind-3.14.0-mc_translate-vecret.patch
baee74
baee74
* Wed Dec 12 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-6
baee74
- Add valgrind-3.14.0-final_tidyup.patch
baee74
- Add valgrind-3.14.0-ppc64-ldbrx.patch
baee74
- Add valgrind-3.14.0-ppc64-unaligned-words.patch
baee74
- Add valgrind-3.14.0-ppc64-lxvd2x.patch
baee74
- Add valgrind-3.14.0-ppc64-unaligned-vecs.patch
baee74
- Add valgrind-3.14.0-ppc64-lxvb16x.patch
baee74
- Add valgrind-3.14.0-set_AV_CR6.patch
baee74
- Add valgrind-3.14.0-undef_malloc_args.patch
baee74
- Add valgrind-3.14.0-jm-vmx-constraints.patch
baee74
- Add valgrind-3.14.0-sigkill.patch
baee74
- Add valgrind-3.14.0-ppc64-ptrace.patch
baee74
baee74
* Tue Dec  4 2018 Mark Wielaard <mjw@redhat.com>
baee74
- Add valgrind-3.14.0-wcsncmp.patch (#1655642)
baee74
baee74
- Replace valgrind-3.14.0-s390x-vec-float-point-{code,test}.patch
baee74
  with upstream versions. (#1525405)
baee74
baee74
* Fri Nov 23 2018 Mark Wielaard  <mjw@redhat.com> - 3.14.0-4
baee74
- Add valgrind-3.14.0-get_otrack_shadow_offset_wrk-ppc.patch,
baee74
  valgrind-3.14.0-new-strlen-IROps.patch,
baee74
  valgrind-3.14.0-ppc-instr-new-IROps.patch,
baee74
  valgrind-3.14.0-memcheck-new-IROps.patch,
baee74
  valgrind-3.14.0-ppc-frontend-new-IROps.patch,
baee74
  valgrind-3.14.0-transform-popcount64-ctznat64.patch and
baee74
  valgrind-3.14.0-enable-ppc-Iop_Sar_Shr8.patch (#1532205)
baee74
baee74
* Wed Nov 21 2018 Mark Wielaard  <mjw@redhat.com> - 3.14.0-3
baee74
- Add valgrind-3.14.0-s390z-more-z13-fixes.patch.
baee74
baee74
* Tue Nov 20 2018 Mark Wielaard  <mjw@redhat.com> - 3.14.0-2
baee74
- Add valgrind-3.14.0-s390x-fix-reg-alloc-vr-vs-fpr.patch.
baee74
- Add valgrind-3.14.0-s390x-sign-extend-lochi.patch.
baee74
- Add valgrind-3.14.0-s390x-vec-reg-vgdb.patch.
baee74
- Add valgrind-3.14.0-s390x-vec-float-point-code.patch
baee74
  and valgrind-3.14.0-s390x-vec-float-point-tests.patch
baee74
- Only run full regtests on x86_64 on fedora or latest rhel.
baee74
baee74
* Tue Oct  9 2018 Mark Wielaard  <mjw@redhat.com> - 3.14.0-1
baee74
- valgrind 3.14.0 (#1569600).
baee74
- Enable s390x again.
baee74
baee74
* Fri Aug 10 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-29
baee74
- Add valgrind-3.13.0-utime.patch
baee74
baee74
* Thu Aug  9 2018 Florian Weimer <fweimer@redhat.com> - 1:3.13.0-28
baee74
- Rebuild to remove s390x packages due to lack of z13 support (#1525405)
baee74
baee74
* Fri Aug  3 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-27
baee74
- Add valgrind-3.13.0-ppc64-xsmaxcdp.patch
baee74
baee74
* Fri Aug  3 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-26
baee74
- Use valgrind_arches for ExclusiveArch when defined.
baee74
- Use restorecon for scl on rhel6 to work around rpm bug (#1610676).
baee74
baee74
* Tue Jul 31 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-25
baee74
- Add valgrind-3.13.0-x86-arch_prctl.patch (#1610304)
baee74
baee74
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 3.13.0-24
baee74
- Rebuild with fixed binutils
baee74
baee74
* Fri Jul 27 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-23
baee74
- Remove valgrind-3.13.0-arm-disable-vfp-test.patch
baee74
baee74
* Thu Jul 26 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-22
baee74
- Add valgrind-3.13.0-arch_prctl.patch (#1608824)
baee74
baee74
* Thu Jul 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-21
baee74
- Add valgrind-3.13.0-separate-code.patch (#1600034)
baee74
- Add valgrind-3.13.0-arm-disable-vfp-test.patch
baee74
baee74
* Thu Jul  5 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-20
baee74
- Don't try a full_regtest under scl, also don't adjust PATH.
baee74
baee74
* Thu Apr 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-19
baee74
- Improved valgrind-3.13.0-arm64-hwcap.patch
baee74
- Add valgrind-3.13.0-arm64-ptrace.patch
baee74
baee74
* Thu Apr 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-18
baee74
- Add valgrind-3.13.0-build-id-phdrs.patch (#1566639)
baee74
baee74
* Tue Feb 27 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-17
baee74
- Add valgrind-3.13.0-ppc64-mtfprwa-constraint.patch.
baee74
baee74
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.13.0-16
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
baee74
baee74
* Tue Jan 23 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-15
baee74
- Split valgrind-tools-devel from valgrind-devel.
baee74
- Make building of libmpi wrapper explicit.
baee74
baee74
* Mon Jan 22 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-14
baee74
- undefine _strict_symbol_defs_build.
baee74
baee74
* Tue Jan  2 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-13
baee74
- Add additional fix to valgrind-3.13.0-debug-alt-file.patch.
baee74
baee74
* Tue Dec 12 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-12
baee74
- Add valgrind-3.13.0-s390-cgijnl.patch.
baee74
- Use upstream version of valgrind-3.13.0-debug-alt-file.patch.
baee74
baee74
* Sun Dec 10 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-11
baee74
- Add valgrind-3.13.0-debug-alt-file.patch.
baee74
baee74
* Thu Nov  2 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-10
baee74
- Add valgrind-3.13.0-ppc64-timebase.patch.
baee74
baee74
* Tue Oct 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-9
baee74
- Add valgrind-3.13.0-amd64-eflags-tests.patch
baee74
- Add valgrind-3.13.0-suppress-dl-trampoline-sse-avx.patch
baee74
- Add valgrind-3.13.0-static-tls.patch
baee74
baee74
* Mon Oct 16 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-8
baee74
- Add valgrind-3.13.0-ppc64-vex-fixes.patch
baee74
baee74
* Thu Aug 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-7
baee74
- Add valgrind-3.13.0-xml-socket.patch
baee74
baee74
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.13.0-6
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
baee74
baee74
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.13.0-5
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
baee74
baee74
* Fri Jul  7 2017 Mark Wielaard <mjw@fedoraproject.org>
baee74
- Add --error-exitcode=1 to /bin/true check.
baee74
baee74
* Thu Jun 29 2017 Mark Wielaard <mjw@fedoraproject.org> 3.13.0-4
baee74
- Add valgrind-3.13.0-arm-index-hardwire.patch (#1466017)
baee74
- Add valgrind-3.13.0-ucontext_t.patch
baee74
- Add valgrind-3.13.0-gdb-8-testfix.patch
baee74
- Add valgrind-3.13.0-disable-vgdb-child.patch
baee74
baee74
* Fri Jun 23 2017 Mark Wielaard <mjw@fedoraproject.org> 3.13.0-3
baee74
- Add valgrind-3.13.0-arm64-hwcap.patch (#1464211)
baee74
baee74
* Sat Jun 17 2017 Mark Wielaard <mjw@fedoraproject.org> 3.13.0-2
baee74
- Add valgrind-3.13.0-ppc64-check-no-vsx.patch
baee74
- Add valgrind-3.13.0-epoll_pwait.patch (#1462258)
baee74
- Add valgrind-3.13.0-ppc64-diag.patch
baee74
baee74
* Thu Jun 15 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-1
baee74
- valgrind 3.13.0 final.
baee74
- Drop all upstreamed patches.
baee74
baee74
* Tue Jun  6 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-0.2.RC1
baee74
- Add valgrind-3.13.0-arm-dcache.patch
baee74
- Add valgrind-3.13.0-g++-4.4.patch
baee74
- Add valgrind-3.13.0-s390x-GI-strcspn.patch
baee74
- Add valgrind-3.13.0-xtree-callgrind.patch
baee74
baee74
* Fri Jun  2 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-0.1.RC1
baee74
- Update description as suggested by Ivo Raisr.
baee74
- Workaround gdb/python bug in testsuite (#1434601)
baee74
- Update to upstream 3.13.0-RC1.
baee74
- Drop all upstreamed patches.
baee74
baee74
* Tue Mar 28 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-8
baee74
- Add valgrind-3.12.0-powerpc-register-pair.patch
baee74
- Add valgrind-3.12.0-ppc64-isa-3_00.patch
baee74
baee74
* Sat Feb 18 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-7
baee74
- Add valgrind-3.12.0-aarch64-syscalls.patch
baee74
baee74
* Sat Feb 18 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-6
baee74
- Add valgrind-3.12.0-arm64-ppc64-prlimit64.patch
baee74
- Add valgrind-3.12.0-arm64-hint.patch
baee74
- Add valgrind-3.12.0-clone-spawn.patch
baee74
- Add valgrind-3.12.0-quick-fatal-sigs.patch
baee74
- Add valgrind-3.12.0-exit_group.patch
baee74
- Add valgrind-3.12.0-deregister-stack.patch
baee74
- Add valgrind-3.12.0-x86-gdt-and-ss.patch
baee74
- Add valgrind-3.12.0-cd-dvd-ioctl.patch
baee74
- Add valgrind-3.12.0-tests-cxx11_abi_0.patch
baee74
- Add valgrind-3.12.0-helgrind-dl_allocate_tls-supp.patch
baee74
- Add valgrind-3.12.0-ppc-xxsel.patch
baee74
baee74
* Fri Feb 17 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-5
baee74
- Add valgrind-3.12.0-ppc64-r2.patch (#1424367)
baee74
baee74
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.12.0-4
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
baee74
baee74
* Sat Nov 12 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-3
baee74
- Add valgrind-3.12.0-nocwd-cleanup.patch (#1390282)
baee74
baee74
* Fri Oct 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1:3.12.0-2
baee74
- Rebuild for openmpi 2.0
baee74
baee74
* Fri Oct 21 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-1
baee74
- Update to valgrind 3.12.0 release.
baee74
baee74
* Thu Oct 20 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.4-RC2
baee74
- Update to 3.12.0-RC1. Drop integrated patches.
baee74
- Add valgrind-3.12.0-skip-cond-var.patch
baee74
baee74
* Fri Sep 30 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.3-BETA1
baee74
- Clear CFLAGS, CXXFLAGS and LDFLAGS during make check.
baee74
baee74
* Thu Sep 29 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.2-BETA1
baee74
- Add valgrind-3.12-beta1-ppc64be.patch.
baee74
- Enable gdb_server tests again.
baee74
baee74
* Tue Sep 20 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.1-BETA1
baee74
- Update to valgrind 3.12.0 pre-release.
baee74
  - Drop upstreamed patches.
baee74
  - Disable exp-tests in %%check. GDB crashes on gdb_server tests.
baee74
baee74
* Fri Jul 22 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-26
baee74
- Only build valgrind-openmpi when not creating a software collection.
baee74
- No support for multilib on secondary arches when creating scl.
baee74
- Touch up empty .exp files.
baee74
baee74
* Thu Jul 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-24
baee74
- Mandatory Perl build-requires added
baee74
- Add valgrind-3.11.0-shr.patch
baee74
- Add valgrind-3.11.0-pcmpxstrx-0x70-0x19.patch
baee74
- Update valgrind-3.11.0-wrapmalloc.patch
baee74
- Add valgrind-3.11.0-sighandler-stack.patch
baee74
baee74
* Tue Jun 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-23
baee74
- Update valgrind-3.11.0-ppoll-mask.patch (#1344082)
baee74
baee74
* Mon May 30 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-22
baee74
- Add valgrind-3.11.0-arm64-handle_at.patch
baee74
- Add valgrind-3.11.0-ppc64-syscalls.patch
baee74
baee74
* Fri Apr 29 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-21
baee74
- Add valgrind-3.11.0-deduppoolalloc.patch
baee74
- Add valgrind-3.11.0-ppc-bcd-addsub.patch
baee74
- Add valgrind-3.11.0-ppc64-vgdb-vr-regs.patch
baee74
baee74
* Fri Apr 15 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-20
baee74
- Update valgrind-3.11.0-cxx-freeres.patch (x86 final_tidyup fix)
baee74
- Add valgrind-3.11.0-s390x-risbgn.patch
baee74
baee74
* Sun Apr 03 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-19
baee74
- Add valgrind-3.11.0-cxx-freeres.patch (#1312647)
baee74
- Add valgrind-3.11.0-ppc64-separate-socketcalls.patch
baee74
- Add valgrind-3.11.0-isZeroU.patch
baee74
- Replace valgrind-3.11.0-arm64-ldpsw.patch with upstream version
baee74
- Add valgrind-3.11.0-ppc64-128bit-mod-carry.patch
baee74
- Add valgrind-3.11.0-amd64-fcom.patch
baee74
- Add valgrind-3.11.0-z13s.patch
baee74
- Add valgrind-3.11.0-gdb-test-filters.patch
baee74
baee74
* Mon Mar 14 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-18
baee74
- Update valgrind-3.11.0-libstdc++-supp.patch.
baee74
- Add valgrind-3.11.0-arm64-ldr-literal-test.patch.
baee74
- Add valgrind-3.11.0-arm64-ldpsw.patch
baee74
baee74
* Thu Mar 10 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-17
baee74
- Update valgrind-3.11.0-arm64-more-syscalls.patch
baee74
- Add valgrind-3.11.0-libstdc++-supp.patch (#1312647)
baee74
baee74
* Wed Mar 09 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-16
baee74
- Add valgrind-3.11.0-ppoll-mask.patch
baee74
- Add valgrind-3.11.0-arm64-more-syscalls.patch
baee74
baee74
* Wed Feb 24 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-15
baee74
- Add valgrind-3.11.0-s390-separate-socketcalls.patch
baee74
- Add valgrind-3.11.0-amd64-ld-index.patch
baee74
baee74
* Thu Feb 18 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-14
baee74
- Update valgrind-3.11.0-futex.patch (fix helgrind/drd regression).
baee74
- Update valgrind-3.11.0-x86_unwind.patch (include amd64 fix).
baee74
baee74
* Wed Feb 17 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-13
baee74
- Remove valgrind-3.11.0-no-stv.patch (gcc6 has been fixed).
baee74
- Add valgrind-3.11.0-futex.patch
baee74
- Add valgrind-3.11.0-s390x-popcnt.patch
baee74
baee74
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.11.0-12
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
baee74
baee74
* Sat Jan 30 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-11
baee74
- Add valgrind-3.11.0-no-stv.patch (GCC6 workaround).
baee74
baee74
* Mon Jan 25 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-10
baee74
- Add valgrind-3.11.0-drd_std_thread.patch GCC6 build fix.
baee74
baee74
* Fri Jan 22 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-9
baee74
- Fix valgrind-3.11.0-pthread_barrier.patch to apply with older patch.
baee74
- Fix multilib issue in config.h with HAVE_AS_AMD64_FXSAVE64.
baee74
baee74
* Thu Jan 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-8
baee74
- Add valgrind-3.11.0-rlimit_data.patch
baee74
- Add valgrind-3.11.0-fclose.patch
baee74
- Add valgrind-3.11.0-pthread_spin_destroy.patch
baee74
- Add valgrind-3.11.0-socketcall-x86-linux.patch
baee74
- Don't strip debuginfo from vgpreload libaries.
baee74
  Enable dwz for everything else again.
baee74
- Add valgrind-3.11.0-is_stmt.patch
baee74
- Add valgrind-3.11.0-x86_unwind.patch
baee74
baee74
* Tue Jan 19 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-7
baee74
- Add valgrind-3.11.0-pthread_barrier.patch
baee74
baee74
* Sat Jan 16 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-6
baee74
- Add valgrind-3.11.0-aspacemgr.patch (#1283774)
baee74
baee74
* Sun Nov 15 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-5
baee74
- Add valgrind-3.11.0-wrapmalloc.patch
baee74
baee74
* Mon Oct 12 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-4
baee74
- Fix parenthesis in valgrind-3.11.0-rexw-cvtps2pd.patch.
baee74
- Add valgrind-3.11.0-s390-hwcap.patch
baee74
baee74
* Mon Oct 12 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-3
baee74
- Add valgrind-3.11.0-rexw-cvtps2pd.patch.
baee74
baee74
* Thu Oct 01 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-2
baee74
- Add valgrind-3.11.0-no-rdrand.patch
baee74
baee74
* Wed Sep 23 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-1
baee74
- Upgrade to valgrind 3.11.0 final
baee74
- Drop patches included upstream
baee74
  - valgrind-3.11.0-ppc-dfp-guard.patch
baee74
  - valgrind-3.11.0-ppc-ppr.patch
baee74
  - valgrind-3.11.0-ppc-mbar.patch
baee74
  - valgrind-3.11.0-glibc-futex-message.patch
baee74
  - valgrind-3.11.0-arm64-libvex_test.patch
baee74
  - valgrind-3.11.0-arm-warnings.patch
baee74
  - valgrind-3.11.0-arm-no-cast-align.patch
baee74
  - valgrind-3.11.0-ppc-vbit-test.patch
baee74
- Add arm64 syscall patches
baee74
  - valgrind-3.11.0-arm64-xattr.patch
baee74
  - valgrind-3.11.0-arm64-sigpending.patch
baee74
baee74
* Sat Sep 19 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-0.4.TEST1
baee74
- Add valgrind-3.11.0-ppc-dfp-guard.patch
baee74
- Add valgrind-3.11.0-ppc-ppr.patch
baee74
- Add valgrind-3.11.0-ppc-mbar.patch
baee74
baee74
* Fri Sep 18 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-0.3.TEST1
baee74
- Make sure some info about the system is in the build.log before check.
baee74
- Add valgrind-3.11.0-glibc-futex-message.patch
baee74
- Add valgrind-3.11.0-arm64-libvex_test.patch
baee74
- Add valgrind-3.11.0-arm-warnings.patch
baee74
- Add valgrind-3.11.0-arm-no-cast-align.patch
baee74
- Add valgrind-3.11.0-ppc-vbit-test.patch
baee74
baee74
* Tue Sep 15 2015 Orion Poplawski <orion@cora.nwra.com> - 1:3.11.0-0.2.TEST1
baee74
- Rebuild for openmpi 1.10.0
baee74
baee74
* Thu Sep 10 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-0.1.TEST1
baee74
- Add BuildRequires perl(Getopt::Long)
baee74
- Upgrade to valgrind 3.11.0.TEST1
baee74
- Remove upstreamed valgrind-3.10.1-gdb-file-warning.patch
baee74
baee74
* Tue Aug 25 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-22.svn20150825r15589
baee74
- Drop valgrind-3.9.0-stat_h.patch.
baee74
- Add BuildRequires gcc-c++.
baee74
- Update to current valgrind svn (svn20150825r15589)
baee74
- Add valgrind-3.10.1-gdb-file-warning.patch
baee74
baee74
* Mon Aug 17 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-21.svn20150817r15561
baee74
- Update to current valgrind svn. Drop patches now upstream.
baee74
baee74
* Mon Aug 17 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-20
baee74
- Don't try to move around libmpiwrap when not building for openmpi (s390x)
baee74
baee74
* Fri Aug 14 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-19
baee74
- Install libmpiwrap library under {_libdir}/openmpi/valgrind (#1238428)
baee74
baee74
* Mon Aug 10 2015 Sandro Mani <manisandro@gmail.com> - 1:3.10.1-18
baee74
- Rebuild for RPM MPI Requires Provides Change
baee74
baee74
* Mon Aug 10 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-17
baee74
- Add setuid and setresgid to valgrind-3.10.1-aarch64-syscalls.patch.
baee74
baee74
* Mon Aug 03 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-16
baee74
- Add valgrind-3.10.1-ppc64-hwcap2.patch
baee74
baee74
* Wed Jul 08 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-15
baee74
- Update valgrind-3.10.1-s390x-fiebra.patch
baee74
baee74
* Wed Jul 08 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-14
baee74
- Add valgrind-3.10.1-s390x-fiebra.patch
baee74
baee74
* Tue Jul 07 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-13
baee74
- Add valgrind-3.10.1-di_notify_mmap.patch
baee74
- Add valgrind-3.10.1-memmove-ld_so-ppc64.patch
baee74
baee74
* Fri Jun 19 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-12
baee74
- Add valgrind-3.10.1-kernel-4.0.patch.
baee74
baee74
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.10.1-11
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
baee74
baee74
* Sun Jun 07 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-10
baee74
- Add valgrind-3.10.1-cfi-redzone.patch.
baee74
baee74
* Wed Jun 03 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-9
baee74
- Add valgrind-3.10.1-memfd_create.patch.
baee74
- Add valgrind-3.10.1-syncfs.patch.
baee74
- Add valgrind-3.10.1-arm-process_vm_readv_writev.patch.
baee74
- Add valgrind-3.10.1-fno-ipa-icf.patch.
baee74
- Add valgrind-3.10.1-demangle-q.patch
baee74
baee74
* Fri May 22 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-8
baee74
- Disable extended regtest on arm. The gdb tests hang for unknown reasons.
baee74
  The reason is a glibc bug #1196181 which causes:
baee74
  "GDB fails with Cannot parse expression `.L1055 4@r4'."
baee74
baee74
* Wed Apr 22 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-7
baee74
- Add valgrind-3.10-1-ppc64-sigpending.patch
baee74
- Filter out -fstack-protector-strong and disable _hardened_build.
baee74
baee74
* Wed Feb 18 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-6
baee74
- Add valgrind-3.10.1-send-recv-mmsg.patch
baee74
- Add mount and umount2 to valgrind-3.10.1-aarch64-syscalls.patch.
baee74
- Add valgrind-3.10.1-glibc-version-check.patch
baee74
baee74
* Tue Feb 10 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-5
baee74
- Add accept4 to valgrind-3.10.1-aarch64-syscalls.patch.
baee74
- Add valgrind-3.10.1-ppc64-accept4.patch.
baee74
baee74
* Sun Feb 08 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-4
baee74
- Add valgrind-3.10.1-aarch64-syscalls.patch.
baee74
baee74
* Thu Feb 05 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-3
baee74
- Add valgrind-3.10-s390-spechelper.patch.
baee74
baee74
* Tue Jan 13 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-2
baee74
- Add valgrind-3.10.1-mempcpy.patch.
baee74
baee74
* Wed Nov 26 2014 Mark Wielaard <mjw@redhat.com> - 3.10.1-1
baee74
- Upgrade to 3.10.1 final.
baee74
baee74
* Mon Nov 24 2014 Mark Wielaard <mjw@redhat.com> - 3.10.1-0.1.TEST1
baee74
- Upgrade to valgrind 3.10.1.TEST1
baee74
- Remove patches that are now upstream:
baee74
  - valgrind-3.10.0-old-ppc32-instr-magic.patch
baee74
  - valgrind-3.10.0-aarch64-syscalls.patch
baee74
  - valgrind-3.10.0-aarch64-dmb-sy.patch
baee74
  - valgrind-3.10.0-aarch64-frint.patch
baee74
  - valgrind-3.10.0-fcvtmu.patch
baee74
  - valgrind-3.10.0-aarch64-fcvta.patch
baee74
baee74
* Wed Nov 19 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-6
baee74
- Add getgroups/setgroups to valgrind-3.10.0-aarch64-syscalls.patch
baee74
baee74
* Tue Nov  4 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-5
baee74
- Merge valgrind-3.10.0-aarch64-times.patch
baee74
  and valgrind-3.10.0-aarch64-getsetsid.patch
baee74
  into valgrind-3.10.0-aarch64-syscalls.patch
baee74
  add fdatasync, msync, pread64, setreuid, setregid,
baee74
  mknodat, fchdir, chroot, fchownat, fchmod and fchown.
baee74
- Add valgrind-3.10.0-aarch64-frint.patch
baee74
- Add valgrind-3.10.0-fcvtmu.patch
baee74
- Add valgrind-3.10.0-aarch64-fcvta.patch
baee74
baee74
* Sat Oct 11 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-4
baee74
- Add valgrind-3.10.0-aarch64-times.patch
baee74
- Add valgrind-3.10.0-aarch64-getsetsid.patch
baee74
- Add valgrind-3.10.0-aarch64-dmb-sy.patch
baee74
baee74
* Mon Sep 15 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-3
baee74
- Add valgrind-3.10.0-old-ppc32-instr-magic.patch.
baee74
baee74
* Fri Sep 12 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-2
baee74
- Fix ppc32 multilib handling on ppc64[be].
baee74
- Drop ppc64 secondary for ppc32 primary support.
baee74
- Except for armv7hl we don't support any other arm[32] arch.
baee74
baee74
* Thu Sep 11 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-1
baee74
- Update to 3.10.0 final.
baee74
- Remove valgrind-3.10-configure-glibc-2.20.patch fixed upstream.
baee74
baee74
* Mon Sep  8 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-0.2.BETA2
baee74
- Update to 3.10.0.BETA2.
baee74
- Don't run dwz or generate minisymtab.
baee74
- Remove valgrind-3.9.0-s390x-ld-supp.patch fixed upstream.
baee74
- Add valgrind-3.10-configure-glibc-2.20.patch.
baee74
baee74
* Tue Sep  2 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-0.1.BETA1
baee74
- Update to official upstream 3.10.0 BETA1.
baee74
  - Enables inlined frames in stacktraces.
baee74
baee74
* Fri Aug 29 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-26.svn20140829r14384
baee74
- Update to upstream svn r14384
baee74
- Enable gdb_server tests again for arm and aarch64
baee74
baee74
* Wed Aug 27 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-25.svn20140827r14370
baee74
- Update to upstream svn r14370
baee74
- Remove ppc testfile copying (no longer patched in)
baee74
baee74
* Mon Aug 18 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-24.svn20140818r14303
baee74
- Update to upstream svn r14303
baee74
- Move fake libgcc into shared to not break post-regtest-checks.
baee74
- autogen.sh execution no longer needed in %%build.
baee74
baee74
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.9.0-23.svn20140809r14250
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
baee74
baee74
* Sat Aug  9 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-22.svn20140809r14250
baee74
- Update to upstream svn r14250
baee74
  - ppc64le support got integrated upstream. Remove patches:
baee74
    valgrind-3.9.0-ppc64le-initial.patch
baee74
    valgrind-3.9.0-ppc64le-functional.patch
baee74
    valgrind-3.9.0-ppc64le-test.patch
baee74
    valgrind-3.9.0-ppc64le-extra.patch
baee74
baee74
* Sat Jul 19 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-21.svn20140718r14176
baee74
- Disable full regtest on arm (gdb integration tests sometimes hang).
baee74
baee74
* Fri Jul 18 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-20.svn20140718r14176
baee74
- Update to upstream svn r14176
baee74
  Remove valgrind-3.9.0-arm64-user_regs.patch
baee74
- Add ppc64le support
baee74
  valgrind-3.9.0-ppc64le-initial.patch
baee74
  valgrind-3.9.0-ppc64le-functional.patch
baee74
  valgrind-3.9.0-ppc64le-test.patch
baee74
  valgrind-3.9.0-ppc64le-extra.patch
baee74
baee74
* Tue Jul 15 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-19.svn20140715r14165
baee74
- Add valgrind-3.9.0-arm64-user_regs.patch
baee74
- Disable full regtest on aarch64 (gdb integration tests sometimes hang).
baee74
- Enable openmpi support on aarch64.
baee74
baee74
* Tue Jul 15 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-18.svn20140715r14165
baee74
- Update to upstream svn r14165.
baee74
- Remove valgrind-3.9.0-ppc64-ifunc.patch.
baee74
- Remove valgrind-3.9.0-aarch64-glibc-2.19.90-gcc-4.9.patch
baee74
- Remove valgrind-3.9.0-format-security.patch
baee74
- Remove valgrind-3.9.0-msghdr.patch
baee74
baee74
* Fri Jul  4 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-17.svn20140513r13961
baee74
- Remove ppc multilib support (#1116110)
baee74
- Add valgrind-3.9.0-ppc64-ifunc.patch
baee74
baee74
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.9.0-16.svn20140513r13961
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
baee74
baee74
* Mon May 19 2014 Mark Wielaard <mjw@redhat.com>
baee74
- Don't cleanup fake 32-bit libgcc created in %%build.
baee74
  make regtest might depend on it to build -m32 binaries.
baee74
baee74
* Fri May 16 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-15.svn20140513r13961
baee74
- Add SHL_d_d_#imm to valgrind-3.9.0-aarch64-glibc-2.19.90-gcc-4.9.patch
baee74
baee74
* Thu May 15 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-14.svn20140513r13961
baee74
- Add valgrind-3.9.0-aarch64-glibc-2.19.90-gcc-4.9.patch
baee74
baee74
* Tue May 13 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-13.svn20140513r13961
baee74
- Update to upstream svn r13961.
baee74
- Remove valgrind-3.9.0-mpx.patch integrated upstream now.
baee74
- Add valgrind-3.9.0-msghdr.patch
baee74
- Add valgrind-3.9.0-format-security.patch
baee74
baee74
* Thu May 8 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-12.svn20140319r13879
baee74
- Add valgrind-3.9.0-mpx.patch (#1087933)
baee74
baee74
* Wed Mar 19 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-11.svn20140319r13879
baee74
- Update to upstream svn r13879. arm64 make check now builds.
baee74
baee74
* Tue Mar 18 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-10.svn20140318r13876
baee74
- Make sure basic binary (/bin/true) runs under valgrind.
baee74
  And fail the whole build if not. The regtests are not zero-fail.
baee74
- Update to upstream svn r13876.
baee74
- Introduce build_openmpi and build_multilib in spec file.
baee74
baee74
* Tue Mar 11 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-9.svn20140311r13869
baee74
- Enable aarch64 based on current upstream svn. Removed upstreamed patches.
baee74
  Thanks to Marcin Juszkiewicz <mjuszkiewicz@redhat.com>
baee74
baee74
* Mon Mar 10 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-8
baee74
- Add valgrind-3.9.0-ppc64-priority.patch
baee74
baee74
* Mon Feb 24 2014 Mark Wielaard <mjw@redhat.com>
baee74
- Add upstream fixes to valgrind-3.9.0-timer_create.patch
baee74
baee74
* Fri Feb 21 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-7
baee74
- Add valgrind-3.9.0-glibc-2.19.patch
baee74
baee74
* Fri Feb 21 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-6
baee74
- Add valgrind-3.9.0-s390-dup3.patch
baee74
- Add valgrind-3.9.0-timer_create.patch
baee74
baee74
* Thu Dec 12 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-5
baee74
- Add valgrind-3.9.0-manpage-memcheck-options.patch.
baee74
- Add valgrind-3.9.0-s390-fpr-pair.patch.
baee74
baee74
* Thu Nov 28 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-4
baee74
- Add valgrind-3.9.0-xabort.patch.
baee74
baee74
* Fri Nov 22 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-3
baee74
- Add valgrind-3.9.0-anon-typedef.patch.
baee74
- Add valgrind-3.9.0-s390x-ld-supp.patch
baee74
baee74
* Wed Nov 20 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-2
baee74
- Add valgrind-3.9.0-dwz-alt-buildid.patch.
baee74
- Add valgrind-3.9.0-s390-risbg.patch.
baee74
baee74
* Fri Nov  1 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-1
baee74
- Upgrade to valgrind 3.9.0 final.
baee74
- Remove support for really ancient GCCs (valgrind-3.9.0-config_h.patch).
baee74
- Add valgrind-3.9.0-amd64_gen_insn_test.patch.
baee74
- Remove and cleanup fake 32-bit libgcc package.
baee74
baee74
* Mon Oct 28 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-0.1.TEST1
baee74
- Upgrade to valgrind 3.9.0.TEST1
baee74
- Remove patches that are now upstream:
baee74
  - valgrind-3.8.1-abbrev-parsing.patch
baee74
  - valgrind-3.8.1-af-bluetooth.patch
baee74
  - valgrind-3.8.1-aspacemgr_VG_N_SEGs.patch
baee74
  - valgrind-3.8.1-avx2-bmi-fma.patch.gz
baee74
  - valgrind-3.8.1-avx2-prereq.patch
baee74
  - valgrind-3.8.1-bmi-conf-check.patch
baee74
  - valgrind-3.8.1-capget.patch
baee74
  - valgrind-3.8.1-cfi_dw_ops.patch
baee74
  - valgrind-3.8.1-dwarf-anon-enum.patch
baee74
  - valgrind-3.8.1-filter_gdb.patch
baee74
  - valgrind-3.8.1-find-buildid.patch
baee74
  - valgrind-3.8.1-gdbserver_exit.patch
baee74
  - valgrind-3.8.1-gdbserver_tests-syscall-template-source.patch
baee74
  - valgrind-3.8.1-glibc-2.17-18.patch
baee74
  - valgrind-3.8.1-index-supp.patch
baee74
  - valgrind-3.8.1-initial-power-isa-207.patch
baee74
  - valgrind-3.8.1-manpages.patch
baee74
  - valgrind-3.8.1-memcheck-mc_translate-Iop_8HLto16.patch
baee74
  - valgrind-3.8.1-mmxext.patch
baee74
  - valgrind-3.8.1-movntdqa.patch
baee74
  - valgrind-3.8.1-new-manpages.patch
baee74
  - valgrind-3.8.1-openat.patch
baee74
  - valgrind-3.8.1-overlap_memcpy_filter.patch
baee74
  - valgrind-3.8.1-pie.patch
baee74
  - valgrind-3.8.1-pkg-config.patch
baee74
  - valgrind-3.8.1-power-isa-205-deprecation.patch
baee74
  - valgrind-3.8.1-ppc-32-mode-64-bit-instr.patch
baee74
  - valgrind-3.8.1-ppc-setxattr.patch
baee74
  - valgrind-3.8.1-proc-auxv.patch
baee74
  - valgrind-3.8.1-ptrace-include-configure.patch
baee74
  - valgrind-3.8.1-ptrace-setgetregset.patch
baee74
  - valgrind-3.8.1-ptrace-thread-area.patch
baee74
  - valgrind-3.8.1-regtest-fixlets.patch
baee74
  - valgrind-3.8.1-s390-STFLE.patch
baee74
  - valgrind-3.8.1-s390_tsearch_supp.patch
baee74
  - valgrind-3.8.1-sendmsg-flags.patch
baee74
  - valgrind-3.8.1-sigill_diag.patch
baee74
  - valgrind-3.8.1-static-variables.patch
baee74
  - valgrind-3.8.1-stpncpy.patch
baee74
  - valgrind-3.8.1-text-segment.patch
baee74
  - valgrind-3.8.1-wcs.patch
baee74
  - valgrind-3.8.1-x86_amd64_features-avx.patch
baee74
  - valgrind-3.8.1-xaddb.patch
baee74
  - valgrind-3.8.1-zero-size-sections.patch
baee74
- Remove special case valgrind-3.8.1-enable-armv5.patch.
baee74
- Remove valgrind-3.8.1-x86-backtrace.patch, rely on new upstream fp/cfi
baee74
  try-cache mechanism.
baee74
baee74
* Mon Oct 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-31
baee74
- Fix multilib issue with HAVE_PTRACE_GETREGS in config.h.
baee74
baee74
* Thu Sep 26 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30
baee74
- Add valgrind-3.8.1-index-supp.patch (#1011713)
baee74
baee74
* Wed Sep 25 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-29
baee74
- Filter out -mcpu= so tests are compiled with the right flags. (#996927).
baee74
baee74
* Mon Sep 23 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-28
baee74
- Implement SSE4 MOVNTDQA insn (valgrind-3.8.1-movntdqa.patch)
baee74
- Don't BuildRequire /bin/ps, just BuildRequire procps
baee74
  (procps-ng provides procps).
baee74
baee74
* Thu Sep 05 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-27
baee74
- Fix power_ISA2_05 testcase (valgrind-3.8.1-power-isa-205-deprecation.patch)
baee74
- Fix ppc32 make check build (valgrind-3.8.1-initial-power-isa-207.patch)
baee74
- Add valgrind-3.8.1-mmxext.patch
baee74
baee74
* Wed Aug 21 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-26
baee74
- Allow building against glibc 2.18. (#999169)
baee74
baee74
* Thu Aug 15 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-25
baee74
- Add valgrind-3.8.1-s390-STFLE.patch
baee74
  s390 message-security assist (MSA) instruction extension not implemented.
baee74
baee74
* Wed Aug 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-24
baee74
- Add valgrind-3.8.1-power-isa-205-deprecation.patch
baee74
  Deprecation of some ISA 2.05 POWER6 instructions.
baee74
- Fixup auto-foo generation of new manpage doc patch.
baee74
baee74
* Wed Aug 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-23
baee74
- tests/check_isa-2_07_cap should be executable.
baee74
baee74
* Tue Aug 13 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-22
baee74
- Add valgrind-3.8.1-initial-power-isa-207.patch
baee74
  Initial ISA 2.07 support for POWER8-tuned libc.
baee74
baee74
* Thu Aug 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-21
baee74
- Don't depend on docdir location and version in openmpi subpackage
baee74
  description (#993938).
baee74
- Enable openmpi subpackage also on arm.
baee74
baee74
* Thu Aug 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-20
baee74
- Add valgrind-3.8.1-ptrace-include-configure.patch (#992847)
baee74
baee74
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.8.1-19
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
baee74
baee74
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 1:3.8.1-18
baee74
- Perl 5.18 rebuild
baee74
baee74
* Mon Jul 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-17
baee74
- Add valgrind-3.8.1-dwarf-anon-enum.patch
baee74
- Cleanup valgrind-3.8.1-sigill_diag.patch .orig file changes (#949687).
baee74
- Add valgrind-3.8.1-ppc-setxattr.patch
baee74
- Add valgrind-3.8.1-new-manpages.patch
baee74
- Add valgrind-3.8.1-ptrace-thread-area.patch
baee74
- Add valgrind-3.8.1-af-bluetooth.patch
baee74
baee74
* Tue May 28 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 1:3.8.1-16
baee74
- Provide virtual -static package in -devel subpackage (#609624).
baee74
baee74
* Thu Apr 25 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-15
baee74
- Add valgrind-3.8.1-zero-size-sections.patch. Resolves issues with zero
baee74
  sized .eh_frame sections on ppc64.
baee74
baee74
* Thu Apr 18 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-14
baee74
- fixup selinux file context when doing a scl build.
baee74
- Enable regtest suite on ARM.
baee74
- valgrind-3.8.1-abbrev-parsing.patch, drop workaround, enable real fix.
baee74
- Fix -Ttext-segment configure check. Enables s390x again.
baee74
- BuildRequire ps for testsuite.
baee74
baee74
* Tue Apr 02 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-13
baee74
- Fix quoting in valgrind valgrind-3.8.1-enable-armv5.patch and
baee74
  remove arm configure hunk from valgrind-3.8.1-text-segment.patch #947440
baee74
- Replace valgrind-3.8.1-text-segment.patch with upstream variant.
baee74
- Add valgrind-3.8.1-regtest-fixlets.patch.
baee74
baee74
* Wed Mar 20 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-12
baee74
- Add valgrind-3.8.1-text-segment.patch
baee74
- Don't undefine _missing_build_ids_terminate_build.
baee74
baee74
* Tue Mar 12 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-11
baee74
- Add valgrind-3.8.1-manpages.patch
baee74
baee74
* Fri Mar 01 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-10
baee74
- Don't disable -debuginfo package generation, but do undefine
baee74
  _missing_build_ids_terminate_build.
baee74
baee74
* Thu Feb 28 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-9
baee74
- Replace valgrind-3.8.1-sendmsg-flags.patch with upstream version.
baee74
baee74
* Tue Feb 19 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-8
baee74
- Add valgrind-3.8.1-sendmsg-flags.patch
baee74
- Add valgrind-3.8.1-ptrace-setgetregset.patch
baee74
- Add valgrind-3.8.1-static-variables.patch
baee74
baee74
* Thu Feb 07 2013 Jon Ciesla <limburgher@gmail.com> 1:3.8.1-7
baee74
- Merge review fixes, BZ 226522.
baee74
baee74
* Wed Jan 16 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-6
baee74
- Allow building against glibc-2.17.
baee74
baee74
* Sun Nov  4 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-5
baee74
- Add valgrind-3.8.1-stpncpy.patch (KDE#309427)
baee74
- Add valgrind-3.8.1-ppc-32-mode-64-bit-instr.patch (#810992, KDE#308573)
baee74
- Add valgrind-3.8.1-sigill_diag.patch (#810992, KDE#309425)
baee74
baee74
* Tue Oct 16 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-4
baee74
- Add valgrind-3.8.1-xaddb.patch (#866793, KDE#307106)
baee74
baee74
* Mon Oct 15 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-3
baee74
- Add valgrind-3.8.1-x86_amd64_features-avx.patch (KDE#307285)
baee74
- Add valgrind-3.8.1-gdbserver_tests-syscall-template-source.patch (KDE#307155)
baee74
- Add valgrind-3.8.1-overlap_memcpy_filter.patch (KDE#307290)
baee74
- Add valgrind-3.8.1-pkg-config.patch (#827219, KDE#307729)
baee74
- Add valgrind-3.8.1-proc-auxv.patch (KDE#253519)
baee74
- Add valgrind-3.8.1-wcs.patch (#755242, KDE#307828)
baee74
- Add valgrind-3.8.1-filter_gdb.patch (KDE#308321)
baee74
- Add valgrind-3.8.1-gdbserver_exit.patch (#862795, KDE#308341)
baee74
- Add valgrind-3.8.1-aspacemgr_VG_N_SEGs.patch (#730303, KDE#164485)
baee74
- Add valgrind-3.8.1-s390_tsearch_supp.patch (#816244, KDE#308427)
baee74
baee74
* Fri Sep 21 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-2
baee74
- Add valgrind-3.8.1-gdbserver_tests-mcinvoke-ppc64.patch
baee74
- Replace valgrind-3.8.1-cfi_dw_ops.patch with version as committed upstream.
baee74
- Remove erroneous printf change from valgrind-3.8.1-abbrev-parsing.patch.
baee74
- Add scalar testcase change to valgrind-3.8.1-capget.patch.
baee74
baee74
* Thu Sep 20 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-1
baee74
- Add partial backport of upstream revision 12884
baee74
  valgrind-3.8.0-memcheck-mc_translate-Iop_8HLto16.patch
baee74
  without it AVX2 VPBROADCASTB insn is broken under memcheck.
baee74
- Add valgrind-3.8.0-cfi_dw_ops.patch (KDE#307038)
baee74
  DWARF2 CFI reader: unhandled DW_OP_ opcode 0x8 (DW_OP_const1u and friends)
baee74
- Add valgrind-3.8.0-avx2-prereq.patch.
baee74
- Remove accidentially included diffs for gdbserver_tests and helgrind/tests
baee74
  Makefile.in from valgrind-3.8.0-avx2-bmi-fma.patch.gz
baee74
- Remove valgrind-3.8.0-tests.patch tests no longer hang.
baee74
- Added SCL macros to support building as part of a Software Collection.
baee74
- Upgrade to valgrind 3.8.1.
baee74
baee74
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-8
baee74
- Add configure fixup valgrind-3.8.0-bmi-conf-check.patch
baee74
baee74
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-7
baee74
- Add valgrind-3.8.0-avx2-bmi-fma.patch (KDE#305728)
baee74
baee74
* Tue Sep 11 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-6
baee74
- Add valgrind-3.8.0-lzcnt-tzcnt-bugfix.patch (KDE#295808)
baee74
- Add valgrind-3.8.0-avx-alignment-check.patch (KDE#305926)
baee74
baee74
* Mon Aug 27 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-5
baee74
- Add valgrind-3.8.0-abbrev-parsing.patch for #849783 (KDE#305513).
baee74
baee74
* Sun Aug 19 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-4
baee74
- Add valgrind-3.8.0-find-buildid.patch workaround bug #849435 (KDE#305431).
baee74
baee74
* Wed Aug 15 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-3
baee74
- fix up last change
baee74
baee74
* Wed Aug 15 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-2
baee74
- tweak up <valgrind/config.h> to allow simultaneous installation
baee74
  of valgrind-devel.{i686,x86_64} (#848146)
baee74
baee74
* Fri Aug 10 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-1
baee74
- update to 3.8.0 release
baee74
- from CFLAGS/CXXFLAGS filter just fortification flags, not arch
baee74
  specific flags
baee74
- on i?86 prefer to use CFI over %%ebp unwinding, as GCC 4.6+
baee74
  defaults to -fomit-frame-pointer
baee74
baee74
* Tue Aug 07 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-0.1.TEST1.svn12858
baee74
- Update to 3.8.0-TEST1
baee74
- Clear CFLAGS CXXFLAGS LDFLAGS.
baee74
- Fix \ line continuation in configure line.
baee74
baee74
* Fri Aug 03 2012 Mark Wielaard <mjw@redhat.com> 3.7.0-7
baee74
- Fixup shadowing warnings valgrind-3.7.0-dwz.patch
baee74
- Add valgrind-3.7.0-ref_addr.patch (#842659, KDE#298864)
baee74
baee74
* Wed Jul 25 2012 Mark Wielaard <mjw@redhat.com> 3.7.0-6
baee74
- handle dwz DWARF compressor output (#842659, KDE#302901)
baee74
- allow glibc 2.16.
baee74
baee74
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.7.0-5
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
baee74
baee74
* Mon May  7 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-4
baee74
- adjust suppressions so that it works even with ld-2.15.so (#806854)
baee74
- handle DW_TAG_unspecified_type and DW_TAG_rvalue_reference_type
baee74
  (#810284, KDE#278313)
baee74
- handle .debug_types sections (#810286, KDE#284124)
baee74
baee74
* Sun Mar  4 2012 Peter Robinson <pbrobinson@fedoraproject.org> 3.7.0-2
baee74
- Fix building on ARM platform
baee74
baee74
* Fri Jan 27 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-1
baee74
- update to 3.7.0 (#769213, #782910, #772343)
baee74
- handle some further SCSI ioctls (#783936)
baee74
- handle fcntl F_SETOWN_EX and F_GETOWN_EX (#770746)
baee74
baee74
* Wed Aug 17 2011 Adam Jackson <ajax@redhat.com> 3.6.1-6
baee74
- rebuild for rpm 4.9.1 trailing / bug
baee74
baee74
* Thu Jul 21 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-5
baee74
- handle PLT unwind info (#723790, KDE#277045)
baee74
baee74
* Mon Jun 13 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-4
baee74
- fix memcpy/memmove redirection on x86_64 (#705790)
baee74
baee74
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-3
baee74
- fix testing against glibc 2.14
baee74
baee74
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-2
baee74
- fix build on ppc64 (#711608)
baee74
- don't fail if s390x support patch hasn't been applied,
baee74
  move testing into %%check (#708522)
baee74
- rebuilt against glibc 2.14
baee74
baee74
* Wed Feb 23 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-1
baee74
- update to 3.6.1
baee74
baee74
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.6.0-3
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
baee74
baee74
* Fri Jan 28 2011 Jakub Jelinek <jakub@redhat.com> 3.6.0-2
baee74
- rebuilt against glibc 2.13 (#673046)
baee74
- hook in pwrite64 syscall on ppc64 (#672858)
baee74
- fix PIE handling on ppc/ppc64 (#665289)
baee74
baee74
* Fri Nov 12 2010 Jakub Jelinek <jakub@redhat.com> 3.6.0-1
baee74
- update to 3.6.0
baee74
- add s390x support (#632354)
baee74
- provide a replacement for str{,n}casecmp{,_l} (#626470)
baee74
baee74
* Tue May 18 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-18
baee74
- rebuilt against glibc 2.12
baee74
baee74
* Mon Apr 12 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-16
baee74
- change pub_tool_basics.h not to include config.h (#579283)
baee74
- add valgrind-openmpi package for OpenMPI support (#565541)
baee74
- allow NULL second argument to capget (#450976)
baee74
baee74
* Wed Apr  7 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-15
baee74
- handle i686 nopw insns with more than one data16 prefix (#574889)
baee74
- DWARF4 support
baee74
- handle getcpu and splice syscalls
baee74
baee74
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-14
baee74
- fix build against latest glibc headers
baee74
baee74
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-13
baee74
- DW_OP_mod is unsigned modulus instead of signed
baee74
- fix up valgrind.pc (#551277)
baee74
baee74
* Mon Dec 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-12
baee74
- don't require offset field to be set in adjtimex's
baee74
  ADJ_OFFSET_SS_READ mode (#545866)
baee74
baee74
* Wed Dec  2 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-10
baee74
- add handling of a bunch of recent syscalls and fix some
baee74
  other syscall wrappers (Dodji Seketeli)
baee74
- handle prelink created split of .bss into .dynbss and .bss
baee74
  and similarly for .sbss and .sdynbss (#539874)
baee74
baee74
* Wed Nov  4 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-9
baee74
- rebuilt against glibc 2.11
baee74
- use upstream version of the ifunc support
baee74
baee74
* Wed Oct 28 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-8
baee74
- add preadv/pwritev syscall support
baee74
baee74
* Tue Oct 27 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-7
baee74
- add perf_counter_open syscall support (#531271)
baee74
- add handling of some sbb/adc insn forms on x86_64 (KDE#211410)
baee74
baee74
* Fri Oct 23 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-6
baee74
- ppc and ppc64 fixes
baee74
baee74
* Thu Oct 22 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-5
baee74
- add emulation of 0x67 prefixed loop* insns on x86_64 (#530165)
baee74
baee74
* Wed Oct 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-4
baee74
- handle reading of .debug_frame in addition to .eh_frame
baee74
- ignore unknown DWARF3 expressions in evaluate_trivial_GX
baee74
- suppress helgrind race errors in helgrind's own mythread_wrapper
baee74
- fix compilation of x86 tests on x86_64 and ppc tests
baee74
baee74
* Wed Oct 14 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-3
baee74
- handle many more DW_OP_* ops that GCC now uses
baee74
- handle the more compact form of DW_AT_data_member_location
baee74
- don't strip .debug_loc etc. from valgrind binaries
baee74
baee74
* Mon Oct 12 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-2
baee74
- add STT_GNU_IFUNC support (Dodji Seketeli, #518247)
baee74
- wrap inotify_init1 syscall (Dodji Seketeli, #527198)
baee74
- fix mmap/mprotect handling in memcheck (KDE#210268)
baee74
baee74
* Fri Aug 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-1
baee74
- update to 3.5.0
baee74
baee74
* Tue Jul 28 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-7
baee74
- handle futex ops newly added during last 4 years (#512121)
baee74
baee74
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 3.4.1-6
baee74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
baee74
baee74
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-5
baee74
- add support for DW_CFA_{remember,restore}_state
baee74
baee74
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-4
baee74
- handle version 3 .debug_frame, .eh_frame, .debug_info and
baee74
  .debug_line (#509197)
baee74
baee74
* Mon May 11 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-3
baee74
- rebuilt against glibc 2.10.1
baee74
baee74
* Wed Apr 22 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-2
baee74
- redirect x86_64 ld.so strlen early (#495645)
baee74
baee74
* Mon Mar  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-1
baee74
- update to 3.4.1
baee74
baee74
* Mon Feb  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.0-3
baee74
- update to 3.4.0
baee74
baee74
* Wed Apr 16 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-3
baee74
- add suppressions for glibc 2.8
baee74
- add a bunch of syscall wrappers (#441709)
baee74
baee74
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-2
baee74
- add _dl_start suppression for ppc/ppc64
baee74
baee74
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-1
baee74
- update to 3.3.0
baee74
- split off devel bits into valgrind-devel subpackage
baee74
baee74
* Thu Oct 18 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-7
baee74
- add suppressions for glibc >= 2.7
baee74
baee74
* Fri Aug 31 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-6
baee74
- handle new x86_64 nops (#256801, KDE#148447)
baee74
- add support for private futexes (KDE#146781)
baee74
- update License tag
baee74
baee74
* Fri Aug  3 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-5
baee74
- add ppc64-linux symlink in valgrind ppc.rpm, so that when
baee74
  rpm prefers 32-bit binaries over 64-bit ones 32-bit
baee74
  /usr/bin/valgrind can find 64-bit valgrind helper binaries
baee74
  (#249773)
baee74
- power5+ and power6 support (#240762)
baee74
baee74
* Thu Jun 28 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-4
baee74
- pass GDB=%%{_prefix}/gdb to configure to fix default
baee74
  --db-command (#220840)
baee74
baee74
* Wed Jun 27 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-3
baee74
- add suppressions for glibc >= 2.6
baee74
- avoid valgrind internal error if io_destroy syscall is
baee74
  passed a bogus argument
baee74
baee74
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-2
baee74
- fix valgrind.pc again
baee74
baee74
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-1
baee74
- update to 3.2.3
baee74
baee74
* Wed Nov  8 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-7
baee74
- some cachegrind improvements (Ulrich Drepper)
baee74
baee74
* Mon Nov  6 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-6
baee74
- fix valgrind.pc (#213149)
baee74
- handle Intel Core2 cache sizes in cachegrind (Ulrich Drepper)
baee74
baee74
* Wed Oct 25 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-5
baee74
- fix valgrind on ppc/ppc64 where PAGESIZE is 64K (#211598)
baee74
baee74
* Sun Oct  1 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-4
baee74
- adjust for glibc-2.5
baee74
baee74
* Wed Sep 27 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-3
baee74
- another DW_CFA_set_loc handling fix
baee74
baee74
* Tue Sep 26 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-2
baee74
- fix openat handling (#208097)
baee74
- fix DW_CFA_set_loc handling
baee74
baee74
* Tue Sep 19 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-1
baee74
- update to 3.2.1 bugfix release
baee74
  - SSE3 emulation fixes, reduce memcheck false positive rate,
baee74
    4 dozens of bugfixes
baee74
baee74
* Mon Aug 21 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-5
baee74
- handle the new i686/x86_64 nops (#203273)
baee74
baee74
* Fri Jul 28 2006 Jeremy Katz <katzj@redhat.com> - 1:3.2.0-4
baee74
- rebuild to bring ppc back
baee74
baee74
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.2.0-3.1
baee74
- rebuild
baee74
baee74
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-3
baee74
- handle [sg]et_robust_list syscall on ppc{32,64}
baee74
baee74
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-2
baee74
- fix ppc64 symlink to 32-bit valgrind libdir
baee74
- handle a few extra ppc64 syscalls
baee74
baee74
* Thu Jun 15 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-1
baee74
- update to 3.2.0
baee74
  - ppc64 support
baee74
baee74
* Fri May 26 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-3
baee74
- handle [sg]et_robust_list syscalls on i?86/x86_64
baee74
- handle *at syscalls on ppc
baee74
- ensure on x86_64 both 32-bit and 64-bit glibc{,-devel} are
baee74
  installed in the buildroot (#191820)
baee74
baee74
* Wed Apr 12 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-2
baee74
- handle many syscalls that were unhandled before, especially on ppc
baee74
baee74
* Mon Apr  3 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-1
baee74
- upgrade to 3.1.1
baee74
  - many bugfixes
baee74
baee74
* Mon Mar 13 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-2
baee74
- add support for DW_CFA_val_offset{,_sf}, DW_CFA_def_cfa_sf
baee74
  and skip over DW_CFA_val_expression quietly
baee74
- adjust libc/ld.so filenames in glibc-2.4.supp for glibc 2.4
baee74
  release
baee74
baee74
* Mon Jan  9 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-1
baee74
- upgrade to 3.1.0 (#174582)
baee74
  - many bugfixes, ppc32 support
baee74
baee74
* Thu Oct 13 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-2
baee74
- remove Obsoletes for valgrind-callgrind, as it has been
baee74
  ported to valgrind 3.0.x already
baee74
baee74
* Sun Sep 11 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-1
baee74
- upgrade to 3.0.1
baee74
  - many bugfixes
baee74
- handle xattr syscalls on x86-64 (Ulrich Drepper)
baee74
baee74
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-3
baee74
- fix amd64 handling of cwtd instruction
baee74
- fix amd64 handling of e.g. sarb $0x4,val(%%rip)
baee74
- speedup amd64 insn decoding
baee74
baee74
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-2
baee74
- lower x86_64 stage2 base from 112TB down to 450GB, so that
baee74
  valgrind works even on 2.4.x kernels.  Still way better than
baee74
  1.75GB that stock valgrind allows
baee74
baee74
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-1
baee74
- upgrade to 3.0.0
baee74
  - x86_64 support
baee74
- temporarily obsolete valgrind-callgrind, as it has not been
baee74
  ported yet
baee74
baee74
* Tue Jul 12 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-3
baee74
- build some insn tests with -mmmx, -msse or -msse2 (#161572)
baee74
- handle glibc-2.3.90 the same way as 2.3.[0-5]
baee74
baee74
* Wed Mar 30 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-2
baee74
- resurrect the non-upstreamed part of valgrind_h patch
baee74
- remove 2.1.2-4G patch, seems to be upstreamed
baee74
- resurrect passing -fno-builtin in memcheck tests
baee74
baee74
* Sun Mar 27 2005 Colin Walters <walters@redhat.com> 2.4.0-1
baee74
- New upstream version 
baee74
- Update valgrind-2.2.0-regtest.patch to 2.4.0; required minor
baee74
  massaging
baee74
- Disable valgrind-2.1.2-4G.patch for now; Not going to touch this,
baee74
  and Fedora does not ship 4G kernel by default anymore
baee74
- Remove upstreamed valgrind-2.2.0.ioctls.patch
baee74
- Remove obsolete valgrind-2.2.0-warnings.patch; Code is no longer
baee74
  present
baee74
- Remove upstreamed valgrind-2.2.0-valgrind_h.patch
baee74
- Remove obsolete valgrind-2.2.0-unnest.patch and
baee74
  valgrind-2.0.0-pthread-stacksize.patch; valgrind no longer
baee74
  includes its own pthread library
baee74
baee74
* Thu Mar 17 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-10
baee74
- rebuilt with GCC 4
baee74
baee74
* Tue Feb  8 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-8
baee74
- avoid unnecessary use of nested functions for pthread_once
baee74
  cleanup
baee74
baee74
* Mon Dec  6 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-7
baee74
- update URL (#141873)
baee74
baee74
* Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-6
baee74
- act as if NVALGRIND is defined when using <valgrind.h>
baee74
  in non-m32/i386 programs (#138923)
baee74
- remove weak from VALGRIND_PRINTF*, make it static and
baee74
  add unused attribute
baee74
baee74
* Mon Nov  8 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-4
baee74
- fix a printout and possible problem with local variable
baee74
  usage around setjmp (#138254)
baee74
baee74
* Tue Oct  5 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-3
baee74
- remove workaround for buggy old makes (#134563)
baee74
baee74
* Fri Oct  1 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-2
baee74
- handle some more ioctls (Peter Jones, #131967)
baee74
baee74
* Thu Sep  2 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-1
baee74
- update to 2.2.0
baee74
baee74
* Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-3
baee74
- fix packaging of documentation
baee74
baee74
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-2
baee74
- allow tracing of 32-bit binaries on x86-64
baee74
baee74
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-1
baee74
- update to 2.1.2
baee74
- run make regtest as part of package build
baee74
- use glibc-2.3 suppressions instead of glibc-2.2 suppressions
baee74
baee74
* Thu Apr 29 2004 Colin Walters <walters@redhat.com> 2.0.0-1
baee74
- update to 2.0.0
baee74
baee74
* Tue Feb 25 2003 Jeff Johnson <jbj@redhat.com> 1.9.4-0.20030228
baee74
- update to 1.9.4 from CVS.
baee74
- dwarf patch from Graydon Hoare.
baee74
- sysinfo patch from Graydon Hoare, take 1.
baee74
baee74
* Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-6.20030207
baee74
- add return codes to syscalls.
baee74
- fix: set errno after syscalls.
baee74
baee74
* Tue Feb 11 2003 Graydon Hoare <graydon@redhat.com> 1.9.3-5.20030207
baee74
- add handling for separate debug info (+fix).
baee74
- handle blocking readv/writev correctly.
baee74
- comment out 4 overly zealous pthread checks.
baee74
baee74
* Tue Feb 11 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-4.20030207
baee74
- move _pthread_desc to vg_include.h.
baee74
- implement pthread_mutex_timedlock().
baee74
- implement pthread_barrier_wait().
baee74
baee74
* Mon Feb 10 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-3.20030207
baee74
- import all(afaik) missing functionality from linuxthreads.
baee74
baee74
* Sun Feb  9 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-2.20030207
baee74
- import more missing functionality from linuxthreads in glibc-2.3.1.
baee74
baee74
* Sat Feb  8 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-1.20030207
baee74
- start fixing nptl test cases.
baee74
baee74
* Fri Feb  7 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-0.20030207
baee74
- build against current 1.9.3 with nptl hacks.
baee74
baee74
* Tue Oct 15 2002 Alexander Larsson <alexl@redhat.com>
baee74
- Update to 1.0.4
baee74
baee74
* Fri Aug  9 2002 Alexander Larsson <alexl@redhat.com>
baee74
- Update to 1.0.0
baee74
baee74
* Wed Jul  3 2002 Alexander Larsson <alexl@redhat.com>
baee74
- Update to pre4.
baee74
baee74
* Tue Jun 18 2002 Alexander Larsson <alla@lysator.liu.se>
baee74
- Add threadkeys and extra suppressions patches. Bump epoch.
baee74
baee74
* Mon Jun 17 2002 Alexander Larsson <alla@lysator.liu.se>
baee74
- Updated to 1.0pre1
baee74
baee74
* Tue May 28 2002 Alex Larsson <alexl@redhat.com>
baee74
- Updated to 20020524. Added GLIBC_PRIVATE patch
baee74
baee74
* Thu May  9 2002 Jonathan Blandford <jrb@redhat.com>
baee74
- add missing symbol __pthread_clock_settime
baee74
baee74
* Wed May  8 2002 Alex Larsson <alexl@redhat.com>
baee74
- Update to 20020508
baee74
baee74
* Mon May  6 2002 Alex Larsson <alexl@redhat.com>
baee74
- Update to 20020503b
baee74
baee74
* Thu May  2 2002 Alex Larsson <alexl@redhat.com>
baee74
- update to new snapshot
baee74
baee74
* Mon Apr 29 2002 Alex Larsson <alexl@redhat.com> 20020428-1
baee74
- update to new snapshot
baee74
baee74
* Fri Apr 26 2002 Jeremy Katz <katzj@redhat.com> 20020426-1
baee74
- update to new snapshot
baee74
baee74
* Thu Apr 25 2002 Alex Larsson <alexl@redhat.com> 20020424-5
baee74
- Added stack patch. Commented out other patches.
baee74
baee74
* Wed Apr 24 2002 Nalin Dahyabhai <nalin@redhat.com> 20020424-4
baee74
- filter out GLIBC_PRIVATE requires, add preload patch
baee74
baee74
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-3
baee74
- Make glibc 2.2 and XFree86 4 the default supressions
baee74
baee74
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-2
baee74
- Added patch that includes atomic.h
baee74
baee74
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-1
baee74
- Initial build