ref: 69ceed8e3a9167e5b69acb97bda7ab892b306f19
parent: 01276f4453f78f62c5126ae55e819876e9f65ea1
author: Tom Finegan <[email protected]>
date: Thu Sep 17 12:22:07 EDT 2015
iosbuild: Enable PIC for x86 targets. Change-Id: I03b1e8f983f8cd87519aefda732210359b319c81
--- a/build/make/iosbuild.sh
+++ b/build/make/iosbuild.sh
@@ -41,13 +41,22 @@
build_target() {
local target="$1"
local old_pwd="$(pwd)"
+ local target_specific_flags=""
vlog "***Building target: ${target}***"
+ case "${target}" in
+ x86-*)
+ target_specific_flags="--enable-pic"
+ vlog "Enabled PIC for ${target}"
+ ;;
+ esac
+
mkdir "${target}"
cd "${target}"
eval "${LIBVPX_SOURCE_DIR}/configure" --target="${target}" \
- ${CONFIGURE_ARGS} ${EXTRA_CONFIGURE_ARGS} ${devnull}
+ ${CONFIGURE_ARGS} ${EXTRA_CONFIGURE_ARGS} ${target_specific_flags} \
+ ${devnull}
export DIST_DIR
eval make -j ${MAKE_JOBS} dist ${devnull}
cd "${old_pwd}"