3.13.0-1
- valgrind 3.13.0 final. - Drop all upstreamed patches.
This commit is contained in:
parent
e1e5e5d093
commit
6ef8926e54
1
.gitignore
vendored
1
.gitignore
vendored
@ -27,3 +27,4 @@
|
|||||||
/valgrind-3.12.0.RC2.tar.bz2
|
/valgrind-3.12.0.RC2.tar.bz2
|
||||||
/valgrind-3.12.0.tar.bz2
|
/valgrind-3.12.0.tar.bz2
|
||||||
/valgrind-3.13.0.RC1.tar.bz2
|
/valgrind-3.13.0.RC1.tar.bz2
|
||||||
|
/valgrind-3.13.0.tar.bz2
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (valgrind-3.13.0.RC1.tar.bz2) = c23b761f295dd05373e755ef86e0c82d677ea932b588098aedd74c5782c673219f1a7fef8bb8fa676dee9d9963cc28082375f5af8f6e329bd5e86b042f922ec8
|
SHA512 (valgrind-3.13.0.tar.bz2) = 34e1013cd3815d30a459b86220e871bb0a6209cc9e87af968f347083693779f022e986f211bdf1a5184ad7370cde12ff2cfca8099967ff94732970bd04a97009
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
diff --git a/coregrind/m_libcproc.c b/coregrind/m_libcproc.c
|
|
||||||
index 18bef06..afcc117 100644
|
|
||||||
--- a/coregrind/m_libcproc.c
|
|
||||||
+++ b/coregrind/m_libcproc.c
|
|
||||||
@@ -1208,7 +1208,7 @@ void VG_(flush_dcache) ( void *ptr, SizeT nbytes )
|
|
||||||
cls = 4 * (1ULL << (0xF & (ctr_el0 >> 16)));
|
|
||||||
|
|
||||||
/* Stay sane .. */
|
|
||||||
- vg_assert(cls == 64);
|
|
||||||
+ vg_assert(cls == 64 || cls == 128);
|
|
||||||
|
|
||||||
startaddr &= ~(cls - 1);
|
|
||||||
for (addr = startaddr; addr < endaddr; addr += cls) {
|
|
@ -1,30 +0,0 @@
|
|||||||
commit 0d4a917777828f652fcc8e41c6051100052c9d14
|
|
||||||
Author: mjw <mjw@a5019735-40e9-0310-863c-91ae7b9d1cf9>
|
|
||||||
Date: Tue Jun 6 09:03:03 2017 +0000
|
|
||||||
|
|
||||||
Fix pub_tool_basics.h build issue with g++ 4.4.7.
|
|
||||||
|
|
||||||
g++ 4.4.7 doesn't accept union field initializers:
|
|
||||||
In file included from ../../include/pub_tool_vki.h:50,
|
|
||||||
from valgrind_cpp_test.cpp:13:
|
|
||||||
../../include/vki/vki-linux.h: In function ‘vki_cmsghdr* __vki_cmsg_nxthdr(void*, __vki_kernel_size_t, vki_cmsghdr*)’:
|
|
||||||
../../include/vki/vki-linux.h:673: error: expected primary-expression before ‘.’ token
|
|
||||||
|
|
||||||
Assign value after declaration which works for any g++ version.
|
|
||||||
|
|
||||||
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16437 a5019735-40e9-0310-863c-91ae7b9d1cf9
|
|
||||||
|
|
||||||
diff --git a/include/pub_tool_basics.h b/include/pub_tool_basics.h
|
|
||||||
index 64e1929..e3af283 100644
|
|
||||||
--- a/include/pub_tool_basics.h
|
|
||||||
+++ b/include/pub_tool_basics.h
|
|
||||||
@@ -480,7 +480,8 @@ static inline Bool sr_EQ ( UInt sysno, SysRes sr1, SysRes sr2 ) {
|
|
||||||
union { \
|
|
||||||
void *in; \
|
|
||||||
D out; \
|
|
||||||
- } var = {.in = (void *) (x)}; var.out; \
|
|
||||||
+ } var; \
|
|
||||||
+ var.in = (void *) (x); var.out; \
|
|
||||||
})
|
|
||||||
|
|
||||||
// Poor man's static assert
|
|
@ -1,13 +0,0 @@
|
|||||||
diff --git a/shared/vg_replace_strmem.c b/shared/vg_replace_strmem.c
|
|
||||||
index 74afa4b..f2875fc 100644
|
|
||||||
--- a/shared/vg_replace_strmem.c
|
|
||||||
+++ b/shared/vg_replace_strmem.c
|
|
||||||
@@ -1721,6 +1721,7 @@ static inline void my_exit ( int x )
|
|
||||||
|
|
||||||
#if defined(VGO_linux)
|
|
||||||
STRCSPN(VG_Z_LIBC_SONAME, strcspn)
|
|
||||||
+ STRCSPN(VG_Z_LIBC_SONAME, __GI_strcspn)
|
|
||||||
|
|
||||||
#elif defined(VGO_darwin)
|
|
||||||
|
|
||||||
|
|
@ -1,84 +0,0 @@
|
|||||||
commit 7474e777839a0bbfcbfdae18864e5654a163d240
|
|
||||||
Author: philippe <philippe@a5019735-40e9-0310-863c-91ae7b9d1cf9>
|
|
||||||
Date: Fri Jun 2 21:15:04 2017 +0000
|
|
||||||
|
|
||||||
Fix 380200 - xtree generated callgrind files refer to files without directory name
|
|
||||||
|
|
||||||
Patch from Matthias Schwarzott, slightly modified
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16435 a5019735-40e9-0310-863c-91ae7b9d1cf9
|
|
||||||
|
|
||||||
diff --git a/coregrind/m_xtree.c b/coregrind/m_xtree.c
|
|
||||||
index 379a638..98d36bb 100644
|
|
||||||
--- a/coregrind/m_xtree.c
|
|
||||||
+++ b/coregrind/m_xtree.c
|
|
||||||
@@ -433,6 +433,10 @@ void VG_(XT_callgrind_print)
|
|
||||||
VgFile* fp = xt_open(outfilename);
|
|
||||||
DedupPoolAlloc* fnname_ddpa;
|
|
||||||
DedupPoolAlloc* filename_ddpa;
|
|
||||||
+ HChar* filename_buf = NULL;
|
|
||||||
+ UInt filename_buf_size = 0;
|
|
||||||
+ const HChar* filename_dir;
|
|
||||||
+ const HChar* filename_name;
|
|
||||||
|
|
||||||
if (fp == NULL)
|
|
||||||
return;
|
|
||||||
@@ -489,23 +493,43 @@ void VG_(XT_callgrind_print)
|
|
||||||
|
|
||||||
const HChar* img = img_value(VG_(indexXA)(xt->data, xecu));
|
|
||||||
|
|
||||||
- // CALLED_FLF gets the Filename/Line number/Function name for ips[n]
|
|
||||||
+ // CALLED_FLF gets the Dir+Filename/Line number/Function name for ips[n]
|
|
||||||
+ // in the variables called_filename/called_linenum/called_fnname.
|
|
||||||
+ // The booleans called_filename_new/called_fnname_new are set to True
|
|
||||||
+ // the first time the called_filename/called_fnname are encountered.
|
|
||||||
+ // The called_filename_nr/called_fnname_nr are numbers identifying
|
|
||||||
+ // the strings called_filename/called_fnname.
|
|
||||||
#define CALLED_FLF(n) \
|
|
||||||
if ((n) < 0 \
|
|
||||||
|| !VG_(get_filename_linenum)(ips[(n)], \
|
|
||||||
- &called_filename, \
|
|
||||||
- NULL, \
|
|
||||||
+ &filename_name, \
|
|
||||||
+ &filename_dir, \
|
|
||||||
&called_linenum)) { \
|
|
||||||
- called_filename = "UnknownFile???"; \
|
|
||||||
+ filename_name = "UnknownFile???"; \
|
|
||||||
called_linenum = 0; \
|
|
||||||
} \
|
|
||||||
if ((n) < 0 \
|
|
||||||
|| !VG_(get_fnname)(ips[(n)], &called_fnname)) { \
|
|
||||||
called_fnname = "UnknownFn???"; \
|
|
||||||
} \
|
|
||||||
+ { \
|
|
||||||
+ UInt needed_size = VG_(strlen)(filename_dir) + 1 \
|
|
||||||
+ + VG_(strlen)(filename_name) + 1; \
|
|
||||||
+ if (filename_buf_size < needed_size) { \
|
|
||||||
+ filename_buf_size = needed_size; \
|
|
||||||
+ filename_buf = VG_(realloc)(xt->cc, filename_buf, \
|
|
||||||
+ filename_buf_size); \
|
|
||||||
+ } \
|
|
||||||
+ } \
|
|
||||||
+ VG_(strcpy)(filename_buf, filename_dir); \
|
|
||||||
+ if (filename_buf[0] != '\0') { \
|
|
||||||
+ VG_(strcat)(filename_buf, "/"); \
|
|
||||||
+ } \
|
|
||||||
+ VG_(strcat)(filename_buf, filename_name); \
|
|
||||||
called_filename_nr = VG_(allocStrDedupPA)(filename_ddpa, \
|
|
||||||
- called_filename, \
|
|
||||||
+ filename_buf, \
|
|
||||||
&called_filename_new); \
|
|
||||||
+ called_filename = filename_buf; \
|
|
||||||
called_fnname_nr = VG_(allocStrDedupPA)(fnname_ddpa, \
|
|
||||||
called_fnname, \
|
|
||||||
&called_fnname_new);
|
|
||||||
@@ -579,6 +603,7 @@ void VG_(XT_callgrind_print)
|
|
||||||
VG_(fclose)(fp);
|
|
||||||
VG_(deleteDedupPA)(fnname_ddpa);
|
|
||||||
VG_(deleteDedupPA)(filename_ddpa);
|
|
||||||
+ VG_(free)(filename_buf);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
|||||||
Summary: Tool for finding memory management bugs in programs
|
Summary: Tool for finding memory management bugs in programs
|
||||||
Name: %{?scl_prefix}valgrind
|
Name: %{?scl_prefix}valgrind
|
||||||
Version: 3.13.0
|
Version: 3.13.0
|
||||||
Release: 0.2.RC1%{?dist}
|
Release: 1%{?dist}
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: http://www.valgrind.org/
|
URL: http://www.valgrind.org/
|
||||||
@ -58,7 +58,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|||||||
# So those will already have their full symbol table.
|
# So those will already have their full symbol table.
|
||||||
%undefine _include_minidebuginfo
|
%undefine _include_minidebuginfo
|
||||||
|
|
||||||
Source0: ftp://sourceware.org/pub/valgrind/valgrind-%{version}.RC1.tar.bz2
|
Source0: ftp://sourceware.org/pub/valgrind/valgrind-%{version}.tar.bz2
|
||||||
|
|
||||||
# Needs investigation and pushing upstream
|
# Needs investigation and pushing upstream
|
||||||
Patch1: valgrind-3.9.0-cachegrind-improvements.patch
|
Patch1: valgrind-3.9.0-cachegrind-improvements.patch
|
||||||
@ -69,18 +69,6 @@ Patch2: valgrind-3.9.0-helgrind-race-supp.patch
|
|||||||
# Make ld.so supressions slightly less specific.
|
# Make ld.so supressions slightly less specific.
|
||||||
Patch3: valgrind-3.9.0-ldso-supp.patch
|
Patch3: valgrind-3.9.0-ldso-supp.patch
|
||||||
|
|
||||||
# KDE#380397 s390x: __GI_strcspn() replacemenet needed
|
|
||||||
Patch4: valgrind-3.13.0-s390x-GI-strcspn.patch
|
|
||||||
|
|
||||||
# valgrind svn 16437 Fix pub_tool_basics.h build issue with g++ 4.4.7.
|
|
||||||
Patch5: valgrind-3.13.0-g++-4.4.patch
|
|
||||||
|
|
||||||
# KDE#380200 xtree generated callgrind files refer to files without directory
|
|
||||||
Patch6: valgrind-3.13.0-xtree-callgrind.patch
|
|
||||||
|
|
||||||
# KDE#380202 Assertion failure for cache line size on aarch64
|
|
||||||
Patch7: valgrind-3.13.0-arm-dcache.patch
|
|
||||||
|
|
||||||
%if %{build_multilib}
|
%if %{build_multilib}
|
||||||
# Ensure glibc{,-devel} is installed for both multilib arches
|
# Ensure glibc{,-devel} is installed for both multilib arches
|
||||||
BuildRequires: /lib/libc.so.6 /usr/lib/libc.so /lib64/libc.so.6 /usr/lib64/libc.so
|
BuildRequires: /lib/libc.so.6 /usr/lib/libc.so /lib64/libc.so.6 /usr/lib64/libc.so
|
||||||
@ -191,15 +179,11 @@ Valgrind User Manual for details.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{?scl:%{pkg_name}}%{!?scl:%{name}}-%{version}.RC1
|
%setup -q -n %{?scl:%{pkg_name}}%{!?scl:%{name}}-%{version}
|
||||||
|
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
%patch3 -p1
|
%patch3 -p1
|
||||||
%patch4 -p1
|
|
||||||
%patch5 -p1
|
|
||||||
%patch6 -p1
|
|
||||||
%patch7 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# We need to use the software collection compiler and binutils if available.
|
# We need to use the software collection compiler and binutils if available.
|
||||||
@ -397,6 +381,10 @@ echo ===============END TESTING===============
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 15 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-1
|
||||||
|
- valgrind 3.13.0 final.
|
||||||
|
- Drop all upstreamed patches.
|
||||||
|
|
||||||
* Tue Jun 6 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-0.2.RC1
|
* Tue Jun 6 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-0.2.RC1
|
||||||
- Add valgrind-3.13.0-arm-dcache.patch
|
- Add valgrind-3.13.0-arm-dcache.patch
|
||||||
- Add valgrind-3.13.0-g++-4.4.patch
|
- Add valgrind-3.13.0-g++-4.4.patch
|
||||||
|
Loading…
Reference in New Issue
Block a user