2022-01-16 20:43:39 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-03-28 15:01:37 +08:00
|
|
|
set -euxo pipefail
|
|
|
|
|
2024-03-29 09:03:34 +08:00
|
|
|
function fn_print_help() {
|
|
|
|
echo " Usage:
|
|
|
|
packages/msys/build-mingw.sh [-m|--msystem <MSYSTEM>] [-c|--clean] [-nd|--no-deps] [-t|--target-dir <dir>]
|
|
|
|
Options:
|
|
|
|
-h, --help Display this information.
|
|
|
|
-m, --msystem <MSYSTEM> Switch to other MSYS2 environment.
|
|
|
|
(MINGW32, MINGW64, UCRT64, CLANG32, CLANG64, CLANGARM64)
|
|
|
|
MUST be used before other options.
|
|
|
|
-c, --clean Clean build and package directories.
|
2024-03-29 12:50:25 +08:00
|
|
|
--mingw Alias for --mingw32 (x86 app) or --mingw64 (x64 app).
|
|
|
|
--mingw32 Build mingw32 integrated compiler.
|
|
|
|
--mingw64 Build mingw64 integrated compiler.
|
2024-03-29 09:03:34 +08:00
|
|
|
-nd, --no-deps Skip dependency check.
|
|
|
|
-t, --target-dir <dir> Set target directory for the packages."
|
|
|
|
}
|
2024-03-28 17:46:39 +08:00
|
|
|
source version.inc
|
|
|
|
[[ -n "${APP_VERSION_SUFFIX}" ]] && APP_VERSION="${APP_VERSION}${APP_VERSION_SUFFIX}"
|
|
|
|
|
|
|
|
if [[ ! -v MSYSTEM ]]; then
|
|
|
|
echo "This script must be run in MSYS2 shell"
|
2024-03-28 15:01:37 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-03-28 21:58:08 +08:00
|
|
|
if [[ $# -gt 1 && ($1 == "-m" || $1 == "--msystem") ]]; then
|
|
|
|
msystem=$2
|
|
|
|
shift 2
|
|
|
|
case "${msystem}" in
|
2024-03-29 08:22:02 +08:00
|
|
|
MINGW32|MINGW64|UCRT64|CLANG32|CLANG64|CLANGARM64)
|
2024-03-28 21:58:08 +08:00
|
|
|
export MSYSTEM="${msystem}"
|
|
|
|
exec /bin/bash --login "$0" "$@"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Invalid MSYSTEM: ${msystem}"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2024-03-28 17:46:39 +08:00
|
|
|
case "${MSYSTEM}" in
|
|
|
|
MINGW32|CLANG32) # there is no UCRT32
|
|
|
|
NSIS_ARCH=x86
|
2024-03-29 08:22:02 +08:00
|
|
|
PACKAGE_BASENAME="RedPanda.C++.${APP_VERSION}.win32"
|
2024-03-28 17:46:39 +08:00
|
|
|
;;
|
|
|
|
MINGW64|UCRT64|CLANG64)
|
|
|
|
NSIS_ARCH=x64
|
2024-03-29 08:22:02 +08:00
|
|
|
PACKAGE_BASENAME="RedPanda.C++.${APP_VERSION}.win64"
|
|
|
|
;;
|
|
|
|
CLANGARM64)
|
|
|
|
NSIS_ARCH=arm64
|
|
|
|
PACKAGE_BASENAME="RedPanda.C++.${APP_VERSION}.arm64"
|
2024-03-28 17:46:39 +08:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "This script must be run in one of the following MSYS2 shells:"
|
|
|
|
echo " - MINGW32 / CLANG32"
|
|
|
|
echo " - MINGW64 / UCRT64 / CLANG64"
|
2024-03-29 08:22:02 +08:00
|
|
|
echo " - CLANGARM64"
|
2024-03-28 17:46:39 +08:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2024-03-28 15:01:37 +08:00
|
|
|
CLEAN=0
|
|
|
|
CHECK_DEPS=1
|
2024-03-29 08:22:02 +08:00
|
|
|
compilers=()
|
|
|
|
COMPILER_MINGW32=0
|
|
|
|
COMPILER_MINGW64=0
|
2024-03-28 15:01:37 +08:00
|
|
|
TARGET_DIR="$(pwd)/dist"
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
|
|
case $1 in
|
2024-03-29 09:03:34 +08:00
|
|
|
-h|--help)
|
|
|
|
fn_print_help
|
|
|
|
exit 0
|
|
|
|
;;
|
2024-03-28 15:01:37 +08:00
|
|
|
-c|--clean)
|
|
|
|
CLEAN=1
|
|
|
|
shift
|
|
|
|
;;
|
2024-03-29 09:03:34 +08:00
|
|
|
--mingw)
|
2024-03-29 12:50:25 +08:00
|
|
|
case "${NSIS_ARCH}" in
|
|
|
|
x86)
|
|
|
|
compilers+=("mingw32")
|
|
|
|
COMPILER_MINGW32=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
x64)
|
2024-03-29 09:03:34 +08:00
|
|
|
compilers+=("mingw64")
|
|
|
|
COMPILER_MINGW64=1
|
2024-03-29 12:50:25 +08:00
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "ambiguous --mingw, please specify --mingw32 or --mingw64"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
--mingw32)
|
|
|
|
compilers+=("mingw32")
|
|
|
|
COMPILER_MINGW32=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--mingw64)
|
|
|
|
compilers+=("mingw64")
|
|
|
|
COMPILER_MINGW64=1
|
2024-03-29 08:22:02 +08:00
|
|
|
shift
|
|
|
|
;;
|
2024-03-28 15:01:37 +08:00
|
|
|
-nd|--no-deps)
|
|
|
|
CHECK_DEPS=0
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-t|--target-dir)
|
|
|
|
TARGET_DIR="$2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unknown argument: $1"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2024-04-25 16:29:27 +08:00
|
|
|
ASTYLE_BUILD_DIR="${TEMP}/astyle-build"
|
|
|
|
ASTYLE_VERSION_TAG="3.4.14"
|
2024-03-28 15:01:37 +08:00
|
|
|
BUILD_DIR="${TEMP}/redpanda-mingw-${MSYSTEM}-build"
|
|
|
|
PACKAGE_DIR="${TEMP}/redpanda-mingw-${MSYSTEM}-pkg"
|
|
|
|
QMAKE="${MINGW_PREFIX}/qt5-static/bin/qmake"
|
|
|
|
NSIS="/mingw32/bin/makensis"
|
|
|
|
SOURCE_DIR="$(pwd)"
|
2024-03-29 08:22:02 +08:00
|
|
|
|
|
|
|
MINGW32_ARCHIVE="mingw32.7z"
|
|
|
|
MINGW32_COMPILER_NAME="MinGW-w64 i686 GCC 8.1"
|
|
|
|
MINGW32_PACKAGE_SUFFIX="MinGW32_8.1"
|
|
|
|
|
|
|
|
MINGW64_ARCHIVE="mingw64.7z"
|
|
|
|
MINGW64_COMPILER_NAME="MinGW-w64 X86_64 GCC 11.4"
|
|
|
|
MINGW64_PACKAGE_SUFFIX="MinGW64_11.4"
|
|
|
|
|
|
|
|
if [[ ${#compilers[@]} -eq 0 ]]; then
|
|
|
|
PACKAGE_BASENAME="${PACKAGE_BASENAME}.NoCompiler"
|
|
|
|
else
|
|
|
|
[[ ${COMPILER_MINGW32} -eq 1 ]] && PACKAGE_BASENAME="${PACKAGE_BASENAME}.${MINGW32_PACKAGE_SUFFIX}"
|
|
|
|
[[ ${COMPILER_MINGW64} -eq 1 ]] && PACKAGE_BASENAME="${PACKAGE_BASENAME}.${MINGW64_PACKAGE_SUFFIX}"
|
|
|
|
fi
|
2024-03-28 15:01:37 +08:00
|
|
|
|
|
|
|
function fn_print_progress() {
|
|
|
|
echo -e "\e[1;32;44m$1\e[0m"
|
|
|
|
}
|
|
|
|
|
|
|
|
## check deps
|
|
|
|
|
|
|
|
if [[ ${CHECK_DEPS} -eq 1 ]]; then
|
2024-03-28 17:46:39 +08:00
|
|
|
case "${MSYSTEM}" in
|
|
|
|
MINGW32|MINGW64|UCRT64)
|
|
|
|
compiler=gcc
|
|
|
|
;;
|
2024-03-29 08:22:02 +08:00
|
|
|
CLANG32|CLANG64|CLANGARM64)
|
2024-03-28 17:46:39 +08:00
|
|
|
compiler=clang
|
|
|
|
;;
|
|
|
|
esac
|
2024-03-28 15:01:37 +08:00
|
|
|
deps=(
|
2024-04-25 16:29:27 +08:00
|
|
|
${MINGW_PACKAGE_PREFIX}-{$compiler,make,qt5-static,7zip,cmake}
|
2024-03-28 15:01:37 +08:00
|
|
|
mingw-w64-i686-nsis
|
|
|
|
git
|
|
|
|
)
|
|
|
|
for dep in ${deps[@]}; do
|
|
|
|
pacman -Q ${dep} &>/dev/null || {
|
|
|
|
echo "Missing dependency: ${dep}"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2024-03-29 08:22:02 +08:00
|
|
|
if [[ ${COMPILER_MINGW32} -eq 1 && ! -f "${SOURCE_DIR}/assets/${MINGW32_ARCHIVE}" ]]; then
|
|
|
|
echo "Missing MinGW archive: assets/${MINGW32_ARCHIVE}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [[ ${COMPILER_MINGW64} -eq 1 && ! -f "${SOURCE_DIR}/assets/${MINGW64_ARCHIVE}" ]]; then
|
|
|
|
echo "Missing MinGW archive: assets/${MINGW64_ARCHIVE}"
|
2024-03-28 15:01:37 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
## prepare dirs
|
|
|
|
|
|
|
|
if [[ ${CLEAN} -eq 1 ]]; then
|
|
|
|
rm -rf "${BUILD_DIR}"
|
|
|
|
rm -rf "${PACKAGE_DIR}"
|
2024-04-25 16:29:27 +08:00
|
|
|
rm -rf "${ASTYLE_BUILD_DIR}"
|
2024-03-28 15:01:37 +08:00
|
|
|
fi
|
2024-04-25 16:29:27 +08:00
|
|
|
mkdir -p "${BUILD_DIR}" "${PACKAGE_DIR}" "${TARGET_DIR}" "${ASTYLE_BUILD_DIR}"
|
2024-03-28 15:01:37 +08:00
|
|
|
|
|
|
|
## build
|
2024-04-25 16:29:27 +08:00
|
|
|
fn_print_progress "Building astyle..."
|
|
|
|
pushd .
|
|
|
|
cd "${ASTYLE_BUILD_DIR}"
|
|
|
|
[[ -d "astyle" ]] || git clone --depth 1 --branch "${ASTYLE_VERSION_TAG}" "https://gitlab.com/saalen/astyle"
|
|
|
|
cd astyle
|
|
|
|
[[ ! -d "build" ]] || rm -rf "build"
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake .. -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS="-static"
|
|
|
|
mingw32-make -j$(nproc)
|
|
|
|
cp AStyle/AStyle.exe "${PACKAGE_DIR}/astyle.exe"
|
|
|
|
popd
|
2024-03-28 15:01:37 +08:00
|
|
|
|
|
|
|
fn_print_progress "Building..."
|
2022-01-16 20:43:39 +08:00
|
|
|
pushd .
|
|
|
|
cd "${BUILD_DIR}"
|
2024-03-28 17:46:39 +08:00
|
|
|
qmake_flags=()
|
2024-03-29 08:22:02 +08:00
|
|
|
[[ ${NSIS_ARCH} == x64 ]] && qmake_flags+=("X86_64=ON")
|
2024-03-28 17:46:39 +08:00
|
|
|
"$QMAKE" PREFIX="${PACKAGE_DIR}" ${qmake_flags[@]} -o Makefile "${SOURCE_DIR}/Red_Panda_Cpp.pro" -r
|
2024-03-28 15:01:37 +08:00
|
|
|
mingw32-make -j$(nproc)
|
|
|
|
mingw32-make install
|
2022-01-16 20:43:39 +08:00
|
|
|
popd
|
|
|
|
|
2024-03-28 15:01:37 +08:00
|
|
|
## prepare packaging resources
|
|
|
|
|
2022-01-16 20:43:39 +08:00
|
|
|
pushd .
|
|
|
|
cd "${PACKAGE_DIR}"
|
|
|
|
|
2023-11-19 16:41:36 +08:00
|
|
|
cp "${SOURCE_DIR}/platform/windows/qt.conf" .
|
|
|
|
|
2022-09-27 23:44:26 +08:00
|
|
|
cp "${SOURCE_DIR}/platform/windows/installer-scripts/lang.nsh" .
|
2024-03-29 12:50:45 +08:00
|
|
|
cp "${SOURCE_DIR}/platform/windows/installer-scripts/utils.nsh" .
|
2024-03-28 17:46:39 +08:00
|
|
|
cp "${SOURCE_DIR}/platform/windows/installer-scripts/redpanda.nsi" .
|
2022-01-16 20:43:39 +08:00
|
|
|
popd
|
|
|
|
|
2024-03-29 08:22:02 +08:00
|
|
|
## make package
|
2022-01-16 20:43:39 +08:00
|
|
|
|
|
|
|
pushd .
|
|
|
|
cd "${PACKAGE_DIR}"
|
2024-03-29 08:22:02 +08:00
|
|
|
SETUP_NAME="${PACKAGE_BASENAME}.Setup.exe"
|
|
|
|
PORTABLE_NAME="${PACKAGE_BASENAME}.Portable.7z"
|
2022-07-07 19:33:25 +08:00
|
|
|
|
2024-03-28 17:46:39 +08:00
|
|
|
fn_print_progress "Making installer..."
|
2024-03-29 08:22:02 +08:00
|
|
|
|
|
|
|
nsis_flags=(
|
|
|
|
-DAPP_VERSION="${APP_VERSION}"
|
|
|
|
-DARCH="${NSIS_ARCH}"
|
|
|
|
-DFINALNAME="${SETUP_NAME}"
|
|
|
|
-DMINGW32_COMPILER_NAME="${MINGW32_COMPILER_NAME}"
|
|
|
|
-DMINGW64_COMPILER_NAME="${MINGW64_COMPILER_NAME}"
|
2024-03-29 12:50:45 +08:00
|
|
|
-DREQUIRED_WINDOWS_BUILD=7600
|
|
|
|
-DREQUIRED_WINDOWS_NAME="Windows 7"
|
2024-03-29 08:22:02 +08:00
|
|
|
)
|
|
|
|
if [[ ${COMPILER_MINGW32} -eq 1 ]]; then
|
|
|
|
nsis_flags+=(-DHAVE_MINGW32)
|
|
|
|
[[ -d "mingw32" ]] || 7z x "${SOURCE_DIR}/assets/${MINGW32_ARCHIVE}" -o"${PACKAGE_DIR}"
|
|
|
|
fi
|
|
|
|
if [[ ${COMPILER_MINGW64} -eq 1 ]]; then
|
|
|
|
nsis_flags+=(-DHAVE_MINGW64)
|
|
|
|
[[ -d "mingw64" ]] || 7z x "${SOURCE_DIR}/assets/${MINGW64_ARCHIVE}" -o"${PACKAGE_DIR}"
|
|
|
|
fi
|
|
|
|
"${NSIS}" "${nsis_flags[@]}" redpanda.nsi
|
2022-01-16 20:43:39 +08:00
|
|
|
|
2024-03-28 15:01:37 +08:00
|
|
|
fn_print_progress "Making Portable Package..."
|
|
|
|
7z x "${SETUP_NAME}" -o"RedPanda-CPP" -xr'!$PLUGINSDIR' -x"!uninstall.exe"
|
|
|
|
7z a -mmt -mx9 -ms=on -mqs=on -mf=BCJ2 "${PORTABLE_NAME}" "RedPanda-CPP"
|
|
|
|
rm -rf "RedPanda-CPP"
|
2022-07-07 19:33:25 +08:00
|
|
|
|
2024-03-28 15:01:37 +08:00
|
|
|
mv "${SETUP_NAME}" "${TARGET_DIR}"
|
|
|
|
mv "${PORTABLE_NAME}" "${TARGET_DIR}"
|
|
|
|
popd
|