a08967a572
This contains significant rebase / merge / testing work by Naut <lbrynaut@protonmail.com>, Anthony Fieroni <bvbfan@abv.bg> and Brannon King <countprimes@gmail.com>.
64 lines
2.4 KiB
Bash
Executable file
64 lines
2.4 KiB
Bash
Executable file
#! /bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install -y --no-install-recommends \
|
|
g++-mingw-w64-i686 mingw-w64-i686-dev g++-mingw-w64-x86-64 \
|
|
mingw-w64-x86-64-dev build-essential libtool autotools-dev automake pkg-config \
|
|
libssl-dev libevent-dev bsdmainutils curl ca-certificates
|
|
|
|
echo "1" | sudo update-alternatives --config x86_64-w64-mingw32-g++
|
|
echo "1" | sudo update-alternatives --config x86_64-w64-mingw32-gcc
|
|
|
|
|
|
#################################################################
|
|
# Build ICU for Linux first so that we can cross compile it below
|
|
# It's a strange ICU thing in that it requries a working
|
|
# Linux build of itself to be used as part of the cross-compile
|
|
#################################################################
|
|
icu_version=63.1
|
|
icu_release=icu4c-63_1-src.tgz
|
|
staging_dir=/tmp/icu_staging
|
|
icu_linux_dir=$staging_dir/build_icu_linux
|
|
mkdir -p $staging_dir
|
|
pushd $staging_dir
|
|
wget -c http://download.icu-project.org/files/icu4c/$icu_version/$icu_release
|
|
tar -xzf $icu_release
|
|
pushd icu/source
|
|
CC="gcc" CXX="g++" ./runConfigureICU Linux --prefix=$icu_linux_dir --enable-extras=no --enable-strict=no --enable-static --enable-shared=no --enable-tests=no --enable-samples=no --enable-dyload=no
|
|
make -j4
|
|
make install
|
|
popd
|
|
popd
|
|
|
|
export CXXFLAGS="-std=c++11"
|
|
|
|
pushd depends
|
|
# Remove the dir saying that dependencies are built (although ccache
|
|
# is still enabled).
|
|
rm -rf built
|
|
mkdir -p sources
|
|
cp "$staging_dir/$icu_release" sources/
|
|
|
|
# Build and install the cross compiled ICU package.
|
|
make -j4 HOST=x86_64-w64-mingw32 NO_QT=1 ICU_ONLY=1
|
|
|
|
# Then build the rest of the dependencies (now that it exists and we
|
|
# can determine the location for it).
|
|
icu_mingw_dir=$(find /tmp/icu_install -name x86_64-w64-mingw32 -type d)
|
|
|
|
make -j4 HOST=x86_64-w64-mingw32 NO_QT=1 ICU_DIR=$icu_mingw_dir V=1
|
|
popd
|
|
|
|
./autogen.sh
|
|
echo "Using --with-icu=$icu_mingw_dir"
|
|
PREFIX=`pwd`/depends/x86_64-w64-mingw32
|
|
CC="x86_64-w64-mingw32-gcc" CXX="x86_64-w64-mingw32-g++" ./configure --prefix=$PREFIX --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --without-gui --with-icu=$icu_mingw_dir --enable-static --disable-shared
|
|
./configure --prefix=$PREFIX --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --without-gui --with-icu=$icu_mingw_dir --enable-static --disable-shared
|
|
make -j4
|
|
|
|
rm -rf $staging_dir
|
|
# Remove hardcoded cross compiled ICU package path.
|
|
rm -rf /tmp/icu_install
|
|
echo "Windows build is complete"
|