mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-28 21:02:25 +01:00
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 :-)
12 lines
182 B
Diff
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"
|
|
;;
|