diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-27 19:19:37 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-27 19:19:37 +0200 |
commit | 128fe32f2b7abddd13c92ef347dad7377b53ca26 (patch) | |
tree | 701351e15f04c2300d41a302d7ac7eaae96b81bd /package/valgrind | |
parent | eef36bed111c9a10ab0620066189b39fae77137b (diff) |
valgrind: update to 3.12.0
Diffstat (limited to 'package/valgrind')
-rw-r--r-- | package/valgrind/Makefile | 6 | ||||
-rw-r--r-- | package/valgrind/patches/patch-coregrind_link_tool_exe_linux_in | 28 |
2 files changed, 3 insertions, 31 deletions
diff --git a/package/valgrind/Makefile b/package/valgrind/Makefile index 6df8c788b..22074fe76 100644 --- a/package/valgrind/Makefile +++ b/package/valgrind/Makefile @@ -4,9 +4,9 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= valgrind -PKG_VERSION:= 3.11.0 -PKG_RELEASE:= 2 -PKG_HASH:= 6c396271a8c1ddd5a6fb9abe714ea1e8a86fce85b30ab26b4266aeb4c2413b42 +PKG_VERSION:= 3.12.0 +PKG_RELEASE:= 1 +PKG_HASH:= 67ca4395b2527247780f36148b084f5743a68ab0c850cb43e4a5b4b012cf76a1 PKG_DESCR:= memory management debugging tool PKG_SECTION:= app/debug PKG_URL:= http://valgrind.org/ diff --git a/package/valgrind/patches/patch-coregrind_link_tool_exe_linux_in b/package/valgrind/patches/patch-coregrind_link_tool_exe_linux_in deleted file mode 100644 index 9d3e85dc0..000000000 --- a/package/valgrind/patches/patch-coregrind_link_tool_exe_linux_in +++ /dev/null @@ -1,28 +0,0 @@ ---- valgrind-3.11.0.orig/coregrind/link_tool_exe_linux.in 2015-09-08 15:23:27.000000000 +0200 -+++ valgrind-3.11.0/coregrind/link_tool_exe_linux.in 2016-03-15 15:35:20.000000000 +0100 -@@ -69,24 +69,7 @@ shift; # Remove $ala from @ARGV - die "Bogus alt-load address" - if (length($ala) < 3 || index($ala, "0x") != 0); - --# For mips32 or mips64 we need to use "--section-start=.reginfo=$ala" or --# "--section-start=.MIPS.options=$ala" respectively, because "-Ttext=$ala" will --# not put all the sections to the specificed address ($ala). --my $x = `cat ../config.log 2>&1 | grep host_cpu= | sed "s/host_cpu='//g"`; --my $arch = substr($x, 0, index($x, "'")); -- --my $extra_args; --if (($arch eq 'mips') || ($arch eq 'mipsel') -- || ($arch eq 'mipsisa32r2el')) { -- $extra_args = "-static -Wl,--section-start=.reginfo=$ala"; --} elsif (($arch eq 'mips64') || ($arch eq 'mips64el') || -- ($arch eq 'mipsisa64el')) { -- $extra_args = "-static -Wl,--section-start=.MIPS.options=$ala"; --} else { -- $extra_args = "-static -Wl,@FLAG_T_TEXT@=$ala"; --} -- --my $cmd = join(" ", @ARGV, $extra_args); -+my $cmd = join(" ", @ARGV, "-static -Wl,@FLAG_T_TEXT@=$ala"); - - #print "link_tool_exe_linux: $cmd\n"; - |