Merge "iosbuild: Add --test-link argument."

This commit is contained in:
Tom Finegan 2015-09-18 19:38:45 +00:00 коммит произвёл Gerrit Code Review
Родитель e00470aef8 01276f4453
Коммит 9a8fe58caf
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -199,6 +199,8 @@ cat << EOF
--show-build-output: Show output from each library build. --show-build-output: Show output from each library build.
--targets <targets>: Override default target list. Defaults: --targets <targets>: Override default target list. Defaults:
${TARGETS} ${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 --verbose: Output information about the environment and each stage of the
build. build.
EOF EOF
@ -237,6 +239,9 @@ while [ -n "$1" ]; do
--show-build-output) --show-build-output)
devnull= devnull=
;; ;;
--test-link)
EXTRA_CONFIGURE_ARGS="${EXTRA_CONFIGURE_ARGS} --enable-examples"
;;
--targets) --targets)
TARGETS="$2" TARGETS="$2"
shift shift