summaryrefslogtreecommitdiff
path: root/build/make/rtcd.pl
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-12-15 18:39:51 -0800
committerJames Zern <jzern@google.com>2014-12-15 18:39:51 -0800
commit6ea881cc121c84c439185ed50412e0837e885dca (patch)
treeb9773472c4ceda5179d60448fe61e3cffc200d4d /build/make/rtcd.pl
parent8d558f2ca5867828cbf07ef1dce9ad457be7e818 (diff)
downloadlibvpx-6ea881cc121c84c439185ed50412e0837e885dca.tar
libvpx-6ea881cc121c84c439185ed50412e0837e885dca.tar.gz
libvpx-6ea881cc121c84c439185ed50412e0837e885dca.tar.bz2
libvpx-6ea881cc121c84c439185ed50412e0837e885dca.zip
rtcd: handle armv7s architecture
quiets build warnings about implicit (armv6) function declarations Change-Id: I896a5ef3e367e5bb92777a60d34003eb3a040997
Diffstat (limited to 'build/make/rtcd.pl')
-rwxr-xr-xbuild/make/rtcd.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/rtcd.pl b/build/make/rtcd.pl
index bfc91a585..da44c6164 100755
--- a/build/make/rtcd.pl
+++ b/build/make/rtcd.pl
@@ -382,7 +382,7 @@ if ($opts{arch} eq 'x86') {
} elsif ($opts{arch} eq 'armv6') {
@ALL_ARCHS = filter(qw/media/);
arm;
-} elsif ($opts{arch} eq 'armv7') {
+} elsif ($opts{arch} =~ /armv7\w?/) {
@ALL_ARCHS = filter(qw/media neon_asm neon/);
@REQUIRES = filter(keys %required ? keys %required : qw/media/);
&require(@REQUIRES);