77 lines
1.5 KiB
Bash
Executable File
77 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -z ${ARCH} ]]; then
|
|
echo -e "(*) ARCH not defined\n"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z ${IOS_MIN_VERSION} ]]; then
|
|
echo -e "(*) IOS_MIN_VERSION not defined\n"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z ${TARGET_SDK} ]]; then
|
|
echo -e "(*) TARGET_SDK not defined\n"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z ${SDK_PATH} ]]; then
|
|
echo -e "(*) SDK_PATH not defined\n"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z ${BASEDIR} ]]; then
|
|
echo -e "(*) BASEDIR not defined\n"
|
|
exit 1
|
|
fi
|
|
|
|
if ! [ -x "$(command -v tar)" ]; then
|
|
echo -e "(*) tar command not found\n"
|
|
exit 1
|
|
fi
|
|
|
|
# ENABLE COMMON FUNCTIONS
|
|
. ${BASEDIR}/build/ios-common.sh
|
|
|
|
# PREPARING PATHS & DEFINING ${INSTALL_PKG_CONFIG_DIR}
|
|
LIB_NAME="x264"
|
|
set_toolchain_clang_paths ${LIB_NAME}
|
|
|
|
# PREPARING FLAGS
|
|
TARGET_HOST=$(get_target_host)
|
|
export CFLAGS=$(get_cflags ${LIB_NAME})
|
|
export CXXFLAGS=$(get_cxxflags ${LIB_NAME})
|
|
export LDFLAGS=$(get_ldflags ${LIB_NAME})
|
|
|
|
cd ${BASEDIR}/src/${LIB_NAME} || exit 1
|
|
|
|
make distclean 2>/dev/null 1>/dev/null
|
|
|
|
ASM_FLAGS=""
|
|
case ${ARCH} in
|
|
i386 |x86-64)
|
|
if ! [ -x "$(command -v nasm)" ]; then
|
|
echo -e "(*) nasm command not found\n"
|
|
exit 1
|
|
fi
|
|
|
|
export AS="$(command -v nasm)"
|
|
;;
|
|
esac
|
|
|
|
./configure \
|
|
--prefix=${BASEDIR}/prebuilt/ios-$(get_target_host)/${LIB_NAME} \
|
|
--enable-pic \
|
|
--sysroot=${SDK_PATH} \
|
|
--enable-static \
|
|
--disable-cli \
|
|
${ASM_FLAGS} \
|
|
--host=${TARGET_HOST} || exit 1
|
|
|
|
make -j$(get_cpu_count) || exit 1
|
|
|
|
# MANUALLY COPY PKG-CONFIG FILES
|
|
cp x264.pc ${INSTALL_PKG_CONFIG_DIR}
|
|
|
|
make install || exit 1
|