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-07 17:28:13 +08:00
|
|
|
parse_arch --dep "vpx" --supported "win32 win64" "$@"
|
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"
|
|
|
|
VPX_ARCH="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=""
|
|
|
|
VPX_ARCH="x86-win32-gcc"
|
|
|
|
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 16:09:55 +08:00
|
|
|
patch -Np1 < "${SCRIPT_DIR}/patches/vpx-windows.patch"
|
2021-11-08 13:27:45 +08:00
|
|
|
|
2022-03-07 17:28:13 +08:00
|
|
|
CFLAGS=${ARCH_FLAGS} CROSS="${MINGW_ARCH}-w64-mingw32-" \
|
2021-11-08 13:27:45 +08:00
|
|
|
./configure --target="${VPX_ARCH}" \
|
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
|