shithub: libvpx

Download patch

ref: 9cd90d465ab029186beb1f8bdf3fda461016b03d
parent: 1fba21a2b19ba2b847f4598b910b10280a949710
parent: 9a5e9e73a785610071761833d1ae6e524f99e35c
author: James Zern <jzern@google.com>
date: Fri Jun 27 12:20:38 EDT 2014

Merge "iosbuild.sh Add arm64 support to VPX.framework."

--- a/build/make/iosbuild.sh
+++ b/build/make/iosbuild.sh
@@ -25,7 +25,8 @@
 LIBVPX_SOURCE_DIR=$(dirname "$0" | sed -e s,/build/make,,)
 LIPO=$(xcrun -sdk iphoneos${SDK} -find lipo)
 ORIG_PWD="$(pwd)"
-TARGETS="armv6-darwin-gcc
+TARGETS="arm64-darwin-gcc
+         armv6-darwin-gcc
          armv7-darwin-gcc
          armv7s-darwin-gcc
          x86-iphonesimulator-gcc
@@ -54,6 +55,9 @@
 target_to_preproc_symbol() {
   target="$1"
   case "${target}" in
+    arm64-*)
+      echo "__aarch64__"
+      ;;
     armv6-*)
       echo "__ARM_ARCH_6__"
       ;;