diff options
author | Mike Williams <mike@mikebwilliams.com> | 2014-10-01 11:15:49 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-01 19:21:24 +0200 |
commit | 29c3c7ebe4a3f2f3f23a86bc83666d1aed5759ae (patch) | |
tree | 9320b8966f007e6890469568917ade24e120aa13 /package/valgrind | |
parent | c9e0aa3c647996552cbf72553a57746acad7e0ba (diff) |
valgrind: allow building on more ARM systems
Signed-off-by: Mike Williams <mike@mikebwilliams.com>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/valgrind')
-rw-r--r-- | package/valgrind/Config.in | 7 | ||||
-rw-r--r-- | package/valgrind/valgrind.mk | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/package/valgrind/Config.in b/package/valgrind/Config.in index fd5649b45..253555ba4 100644 --- a/package/valgrind/Config.in +++ b/package/valgrind/Config.in @@ -1,8 +1,9 @@ config BR2_PACKAGE_VALGRIND bool "valgrind" - depends on BR2_i386 || BR2_x86_64 || BR2_cortex_a8 || \ - BR2_cortex_a9 || BR2_powerpc || BR2_mips || \ - BR2_mipsel || BR2_mips64 || BR2_mips64el + depends on BR2_i386 || BR2_x86_64 || BR2_cortex_a5 || \ + BR2_cortex_a7 || BR2_cortex_a8 || BR2_cortex_a9 || \ + BR2_cortex_a12 || BR2_cortex_a15 || BR2_powerpc || \ + BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el help Tool for debugging and profiling Linux programs. diff --git a/package/valgrind/valgrind.mk b/package/valgrind/valgrind.mk index 24d02900a..8bea03110 100644 --- a/package/valgrind/valgrind.mk +++ b/package/valgrind/valgrind.mk @@ -17,7 +17,7 @@ VALGRIND_AUTORECONF = YES # not. Therefore, we adjust the host tuple to specify we're on # ARMv7. The valgrind package is guaranteed, through Config.in, to # only be selected on Cortex A8 and Cortex A9 platforms. -ifeq ($(BR2_cortex_a8)$(BR2_cortex_a9),y) +ifeq ($(BR2_cortex_a5)$(BR2_cortex_a7)$(BR2_cortex_a8)$(BR2_cortex_a9)$(BR2_cortex_a12)$(BR2_cortex_a15),y) VALGRIND_CONF_OPT += \ --host=$(patsubst arm-%,armv7-%,$(GNU_TARGET_NAME)) endif |