]> granicus.if.org Git - libvpx/commitdiff
build/make/rtcd.pl: Add missing arm64 support.
authorTom Finegan <tomfinegan@google.com>
Fri, 19 Sep 2014 17:45:15 +0000 (10:45 -0700)
committerTom Finegan <tomfinegan@google.com>
Fri, 19 Sep 2014 17:45:15 +0000 (10:45 -0700)
Treats arm64 the same as armv8.

Change-Id: Ia5029f7bbff251d5aa0836bcccdf20fa0a693891

build/make/rtcd.pl

index 40bcb33d007207c7b66976df9ce77634b3277384..a0e8e46aec1411edaad5d5a1ccb48ddc42d7f131 100755 (executable)
@@ -388,7 +388,7 @@ if ($opts{arch} eq 'x86') {
   @REQUIRES = filter(keys %required ? keys %required : qw/media/);
   &require(@REQUIRES);
   arm;
-} elsif ($opts{arch} eq 'armv8') {
+} elsif ($opts{arch} eq 'armv8' || $opts{arch} eq 'arm64' ) {
   @ALL_ARCHS = filter(qw/neon/);
   arm;
 } else {