From 6c0256991650131e7f40c0f6e5141ccf852273f4 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 15 Jun 2020 17:09:45 -0500 Subject: [PATCH] build.sh: Recognize arm64 ipad/appletv. --- build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sh b/build.sh index 8b6bfdabe8..058bcae1a3 100755 --- a/build.sh +++ b/build.sh @@ -304,6 +304,10 @@ find_architecture() { iPhone5*[3-9]) ARCH=arm64;; iPhone[6-9]*) ARCH=arm64;; iPhone[1-9][0-9]*) ARCH=arm64;; + iPad[4-9]*) ARCH=arm64;; + iPad[1-9][0-9]*) ARCH=arm64;; + AppleTV[5-9]*) ARCH=arm64;; + AppleTV[1-9][0-9]*) ARCH=arm64;; "Power Macintosh") ARCH=ppc;; esac } -- 2.34.1