Blame SPECS/valgrind.spec

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