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