aports/main/valgrind/arm.patch
Marian Buschsieweke 6ca1c411b3 main/valgrind: Patched to compile on armhf
The configure script only detects armv7, not armv6. The included patch changes
the configure script to detect all arm versions, as valgrind supports
"up to and including ARMv7" (http://www.valgrind.org/info/platforms.html).
I've tested valgrind's memcheck, which just seem to work :-)
2016-05-02 17:30:27 +00:00

12 lines
182 B
Diff

--- a/configure.ac
+++ b/configure.ac
@@ -234,7 +234,7 @@
ARCH_MAX="s390x"
;;
- armv7*)
+ arm*)
AC_MSG_RESULT([ok (${host_cpu})])
ARCH_MAX="arm"
;;