shithub: libvpx

Download patch

ref: 53a0ed84ac4e2f19da619fb6263fd3dfaefc3484
parent: 9c2601eb681bb6294e274e2a31dd379290df000d
parent: bc74a2f33b661fad04b89688af505ea391708fc0
author: Tom Finegan <tomfinegan@google.com>
date: Fri Dec 12 11:14:12 EST 2014

Merge "iosbuild.sh: Add targets argument."

--- a/build/make/iosbuild.sh
+++ b/build/make/iosbuild.sh
@@ -57,9 +57,6 @@
     arm64-*)
       echo "__aarch64__"
       ;;
-    armv6-*)
-      echo "__ARM_ARCH_6__"
-      ;;
     armv7-*)
       echo "__ARM_ARCH_7A__"
       ;;
@@ -186,9 +183,12 @@
 cat << EOF
   Usage: ${0##*/} [arguments]
     --help: Display this message and exit.
+    --extra-configure-args <args>: Extra args to pass when configuring libvpx.
     --jobs: Number of make jobs.
     --preserve-build-output: Do not delete the build directory.
     --show-build-output: Show output from each library build.
+    --targets <targets>: Override default target list. Defaults:
+         ${TARGETS}
     --verbose: Output information about the environment and each stage of the
                build.
 EOF
@@ -222,6 +222,10 @@
       ;;
     --show-build-output)
       devnull=
+      ;;
+    --targets)
+      TARGETS="$2"
+      shift
       ;;
     --verbose)
       VERBOSE=yes