2021-11-08 13:27:45 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-01-10 10:46:52 +08:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later AND MIT
|
|
|
|
# Copyright (c) 2017-2021 Maxim Biro <nurupo.contributions@gmail.com>
|
|
|
|
# Copyright (c) 2021 by The qTox Project Contributors
|
2021-11-08 13:27:45 +08:00
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
2022-03-07 17:28:13 +08:00
|
|
|
readonly SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
2021-11-08 13:27:45 +08:00
|
|
|
|
2022-03-07 17:28:13 +08:00
|
|
|
source "${SCRIPT_DIR}/build_utils.sh"
|
2021-11-08 13:27:45 +08:00
|
|
|
|
2022-03-03 18:12:40 +08:00
|
|
|
parse_arch --dep "vpx" --supported "win32 win64 macos" "$@"
|
2021-11-08 13:27:45 +08:00
|
|
|
|
2022-03-07 17:28:13 +08:00
|
|
|
if [[ "$SCRIPT_ARCH" == "win64" ]]; then
|
2022-01-10 04:55:55 +08:00
|
|
|
# There is a bug in gcc that breaks avx512 on 64-bit Windows https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54412
|
|
|
|
# VPX fails to build due to it.
|
|
|
|
# This is a workaround as suggested in https://stackoverflow.com/questions/43152633
|
2021-11-08 13:27:45 +08:00
|
|
|
ARCH_FLAGS="-fno-asynchronous-unwind-tables"
|
2022-03-03 18:12:40 +08:00
|
|
|
CROSS_ARG="${MINGW_ARCH}-w64-mingw32-"
|
|
|
|
TARGET_ARG="--target=x86_64-win64-gcc"
|
2022-03-07 17:28:13 +08:00
|
|
|
elif [[ "$SCRIPT_ARCH" == "win32" ]]; then
|
2021-11-08 13:27:45 +08:00
|
|
|
ARCH_FLAGS=""
|
2022-03-03 18:12:40 +08:00
|
|
|
CROSS_ARG="${MINGW_ARCH}-w64-mingw32-"
|
|
|
|
TARGET_ARG="--target=x86-win32-gcc"
|
|
|
|
elif [ "${SCRIPT_ARCH}" == "macos" ]; then \
|
|
|
|
ARCH_FLAGS=""
|
|
|
|
CROSS_ARG=""
|
|
|
|
TARGET_ARG=""
|
2021-11-08 13:27:45 +08:00
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-03-07 17:28:13 +08:00
|
|
|
"${SCRIPT_DIR}/download/download_vpx.sh"
|
2022-03-07 17:29:03 +08:00
|
|
|
|
2022-03-03 18:12:40 +08:00
|
|
|
if [ "${SCRIPT_ARCH}" == "macos" ]; then
|
|
|
|
patch -Np1 < "${SCRIPT_DIR}/patches/vpx-macos.patch"
|
|
|
|
else
|
|
|
|
patch -Np1 < "${SCRIPT_DIR}/patches/vpx-windows.patch"
|
|
|
|
fi
|
2021-11-08 13:27:45 +08:00
|
|
|
|
2022-03-03 18:12:40 +08:00
|
|
|
CFLAGS="${ARCH_FLAGS} ${CROSS_CFLAG}" \
|
|
|
|
CPPFLAGS="${CROSS_CPPFLAG}" \
|
|
|
|
LDFLAGS="${CROSS_LDFLAG}" \
|
|
|
|
CROSS="${CROSS_ARG}" \
|
|
|
|
./configure \
|
|
|
|
${TARGET_ARG} \
|
2022-03-07 17:28:13 +08:00
|
|
|
"--prefix=${DEP_PREFIX}" \
|
2021-11-08 13:27:45 +08:00
|
|
|
--enable-shared \
|
|
|
|
--disable-static \
|
|
|
|
--enable-runtime-cpu-detect \
|
|
|
|
--disable-examples \
|
|
|
|
--disable-tools \
|
|
|
|
--disable-docs \
|
|
|
|
--disable-unit-tests
|
|
|
|
|
2022-03-07 17:28:13 +08:00
|
|
|
make -j "${MAKE_JOBS}"
|
2021-11-08 13:27:45 +08:00
|
|
|
make install
|
2022-03-03 18:12:40 +08:00
|
|
|
|
|
|
|
if [ "${SCRIPT_ARCH}" == "macos" ]; then
|
|
|
|
install_name_tool -id '@rpath/libvpx.dylib' ${DEP_PREFIX}/lib/libvpx.dylib
|
|
|
|
fi
|