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
|
|
|
|
2022-03-07 16:51:13 +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 "gmp" --supported "win32 win64" "$@"
|
2021-11-08 13:27:45 +08:00
|
|
|
|
2022-03-07 17:28:13 +08:00
|
|
|
"${SCRIPT_DIR}/download/download_gmp.sh"
|
2021-11-08 13:27:45 +08:00
|
|
|
|
|
|
|
# https://gmplib.org/list-archives/gmp-discuss/2020-July/006519.html
|
2022-03-07 17:28:13 +08:00
|
|
|
CC_FOR_BUILD=gcc CFLAGS="-O2 -g0" ./configure "${HOST_OPTION}" \
|
|
|
|
--prefix="${DEP_PREFIX}" \
|
2021-11-08 13:27:45 +08:00
|
|
|
--enable-static \
|
|
|
|
--disable-shared
|
2022-03-07 17:28:13 +08:00
|
|
|
make -j "${MAKE_JOBS}"
|
2021-11-08 13:27:45 +08:00
|
|
|
make install
|