88 lines
2.1 KiB
Bash
Executable File
88 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# UPDATE BUILD FLAGS
|
|
export CFLAGS="$(get_cflags "${LIB_NAME}") -I${LIB_INSTALL_BASE}/cpu-features/include/ndk_compat"
|
|
|
|
# SET BUILD OPTIONS
|
|
TARGET_CPU=""
|
|
ASM_OPTIONS=""
|
|
case ${ARCH} in
|
|
arm-v7a)
|
|
TARGET_CPU="armv7"
|
|
|
|
# NEON disabled explicitly because
|
|
# --enable-runtime-cpu-detect enables NEON for armv7 cpu
|
|
ASM_OPTIONS="--disable-neon"
|
|
unset ASFLAGS
|
|
;;
|
|
arm-v7a-neon)
|
|
# NEON IS ENABLED BY --enable-runtime-cpu-detect
|
|
TARGET_CPU="armv7"
|
|
unset ASFLAGS
|
|
;;
|
|
arm64-v8a)
|
|
# NEON IS ENABLED BY --enable-runtime-cpu-detect
|
|
TARGET_CPU="arm64"
|
|
unset ASFLAGS
|
|
;;
|
|
*)
|
|
# INTEL CPU EXTENSIONS ENABLED BY --enable-runtime-cpu-detect
|
|
TARGET_CPU="$(get_target_cpu)"
|
|
export ASFLAGS="-D__ANDROID__"
|
|
;;
|
|
esac
|
|
|
|
# ALWAYS CLEAN THE PREVIOUS BUILD
|
|
make distclean 2>/dev/null 1>/dev/null
|
|
|
|
# NOTE THAT RECONFIGURE IS NOT SUPPORTED
|
|
|
|
# WORKAROUND TO FIX BUILD OPTIONS DEFINED IN configure.sh
|
|
overwrite_file "${BASEDIR}"/tools/patch/make/libvpx/configure.sh "${BASEDIR}"/src/"${LIB_NAME}"/build/make/configure.sh || return 1
|
|
|
|
./configure \
|
|
--prefix="${LIB_INSTALL_PREFIX}" \
|
|
--target="${TARGET_CPU}-android-gcc" \
|
|
--extra-cflags="${CFLAGS}" \
|
|
--extra-cxxflags="${CXXFLAGS}" \
|
|
--as=yasm \
|
|
--log=yes \
|
|
--enable-libs \
|
|
--enable-install-libs \
|
|
--enable-pic \
|
|
--enable-optimizations \
|
|
--enable-better-hw-compatibility \
|
|
--enable-runtime-cpu-detect \
|
|
${ASM_OPTIONS} \
|
|
--enable-vp8 \
|
|
--enable-vp9 \
|
|
--enable-multithread \
|
|
--enable-spatial-resampling \
|
|
--enable-small \
|
|
--enable-static \
|
|
--disable-realtime-only \
|
|
--disable-shared \
|
|
--disable-debug \
|
|
--disable-gprof \
|
|
--disable-gcov \
|
|
--disable-ccache \
|
|
--disable-install-bins \
|
|
--disable-install-srcs \
|
|
--disable-install-docs \
|
|
--disable-docs \
|
|
--disable-tools \
|
|
--disable-examples \
|
|
--disable-unit-tests \
|
|
--disable-decode-perf-tests \
|
|
--disable-encode-perf-tests \
|
|
--disable-codec-srcs \
|
|
--disable-debug-libs \
|
|
--disable-internal-stats || return 1
|
|
|
|
make -j$(get_cpu_count) || return 1
|
|
|
|
make install || return 1
|
|
|
|
# MANUALLY COPY PKG-CONFIG FILES
|
|
cp ./*.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1
|