Skip to content

Commit c961f94

Browse files
committed
[VALGRIND] Allow the ARMv8 to work with VALGRIND as well :-)
1 parent a7fe634 commit c961f94

4 files changed

Lines changed: 5 additions & 54 deletions

File tree

package/valgrind/0003-mips-fix-mips32r6-and-mips64r6-compilation-issue.patch

Lines changed: 0 additions & 51 deletions
This file was deleted.

package/valgrind/Config.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
config BR2_PACKAGE_VALGRIND_ARCH_SUPPORTS
22
bool
3-
default y if BR2_arm
43
default y if BR2_aarch64
54
default y if BR2_ARM_CPU_ARMV7A
5+
default y if BR2_ARM_CPU_ARMV8A
66
default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
77
default y if BR2_i386 || BR2_x86_64
88
default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le

package/valgrind/valgrind.hash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# From http://valgrind.org/downloads/current.html
22
md5 46e5fbdcbc3502a5976a317a0860a975 valgrind-3.15.0.tar.bz2
3+
sha1 294c341b421b4d9534e42e8125f509c148f48c17 valgrind-3.19.0.tar.bz2
34

45
# License files
56
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
67
sha256 56976e64523fa1e68db4e6f464f5b2cb89d7d08f54b1d012e317b8db286b3faf COPYING.DOCS
8+

package/valgrind/valgrind.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
################################################################################
66

7-
VALGRIND_VERSION = 3.15.0
7+
VALGRIND_VERSION = 3.19.0
88
VALGRIND_SITE = ftp://sourceware.org/pub/valgrind
99
VALGRIND_SOURCE = valgrind-$(VALGRIND_VERSION).tar.bz2
1010
VALGRIND_LICENSE = GPL-2.0, GFDL-1.2
@@ -44,7 +44,7 @@ VALGRIND_CONF_ENV += ac_cv_prog_cc_c99='-std=gnu99'
4444
# not. Therefore, we adjust the host tuple to specify we're on
4545
# ARMv7. The valgrind package is guaranteed, through Config.in, to
4646
# only be selected on ARMv7-A platforms.
47-
ifeq ($(BR2_ARM_CPU_ARMV7A),y)
47+
ifeq ($(BR2_ARM_CPU_ARMV7A)$(BR2_ARM_CPU_ARMV8A),y)
4848
VALGRIND_CONF_OPTS += \
4949
--host=$(patsubst arm-%,armv7-%,$(GNU_TARGET_NAME))
5050
endif

0 commit comments

Comments
 (0)