From c47e420d1a433990ee45de220de45c4a41ff4342 Mon Sep 17 00:00:00 2001
From: Tom Finegan <tomfinegan@google.com>
Date: Fri, 19 Sep 2014 10:45:15 -0700
Subject: [PATCH] build/make/rtcd.pl: Add missing arm64 support.

Treats arm64 the same as armv8.

Change-Id: Ia5029f7bbff251d5aa0836bcccdf20fa0a693891
---
 build/make/rtcd.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/make/rtcd.pl b/build/make/rtcd.pl
index 40bcb33d00..a0e8e46aec 100755
--- a/build/make/rtcd.pl
+++ b/build/make/rtcd.pl
@@ -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 {
-- 
GitLab