ref: 9a8fe58cafe9cc21680be2dec28c2351aeab4a8b
parent: e00470aef85f150cb93bda287ff03ad033c127a1
parent: 01276f4453f78f62c5126ae55e819876e9f65ea1
author: Tom Finegan <[email protected]>
date: Fri Sep 18 15:38:45 EDT 2015
Merge "iosbuild: Add --test-link argument."
--- a/build/make/iosbuild.sh
+++ b/build/make/iosbuild.sh
@@ -199,6 +199,8 @@
--show-build-output: Show output from each library build.
--targets <targets>: Override default target list. Defaults:
${TARGETS}
+ --test-link: Confirms all targets can be linked. Functionally identical to
+ passing --enable-examples via --extra-configure-args.
--verbose: Output information about the environment and each stage of the
build.
EOF
@@ -236,6 +238,9 @@
;;
--show-build-output)
devnull=
+ ;;
+ --test-link)
+ EXTRA_CONFIGURE_ARGS="${EXTRA_CONFIGURE_ARGS} --enable-examples"
;;
--targets)
TARGETS="$2"