ref: c19046a79516d8404ca8673f1cbedf2049346c84
parent: 73e4e8b2bfea5d3799f44d86801accb75163e52d
parent: 66bacc025af1cf3dcd06f2d584e90dd20d38c420
author: Tom Finegan <[email protected]>
date: Tue Jun 17 06:34:36 EDT 2014
Merge "iosbuild.sh: Add missing function comments."
--- a/build/make/iosbuild.sh
+++ b/build/make/iosbuild.sh
@@ -31,6 +31,8 @@
x86-iphonesimulator-gcc
x86_64-iphonesimulator-gcc"
+# Configures for the target specified by $1, and invokes make with the dist
+# target using $DIST_DIR as the distribution output directory.
build_target() {
local target="$1"
local old_pwd="$(pwd)"
@@ -48,6 +50,8 @@
vlog "***Done building target: ${target}***"
}
+# Configures and builds each target specified by $1, and then builds
+# VPX.framework.
build_targets() {
local lib_list=""
local targets="$1"
@@ -89,6 +93,8 @@
# VPX.framework/VPX via lipo -info.
}
+# Trap function. Cleans up the subtree used to build all targets contained in
+# $TARGETS.
cleanup() {
cd "${ORIG_PWD}"