2019-06-17 17:49:41 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
if which dpkg-query >/dev/null; then
|
|
|
|
if dpkg-query -W g++-mingw-w64-x86-64 mingw-w64-x86-64-dev \
|
|
|
|
build-essential libtool autotools-dev automake pkg-config \
|
|
|
|
bsdmainutils curl ca-certificates; then
|
|
|
|
echo "All dependencies satisfied."
|
|
|
|
else
|
|
|
|
echo "Missing dependencies detected. Exiting..."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
#sudo update-alternatives --config x86_64-w64-mingw32-g++ # you have to select posix
|
|
|
|
fi
|
|
|
|
|
|
|
|
if which ccache >/dev/null; then
|
|
|
|
echo "ccache config:"
|
|
|
|
ccache -ps
|
|
|
|
fi
|
|
|
|
|
|
|
|
pushd depends
|
2019-10-25 07:00:50 +02:00
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) HOST=x86_64-w64-mingw32 NO_QT=1 V=1
|
2019-06-17 17:49:41 +02:00
|
|
|
popd
|
|
|
|
|
|
|
|
./autogen.sh
|
2019-10-25 07:00:50 +02:00
|
|
|
DEPS_DIR=$(pwd)/depends/x86_64-w64-mingw32
|
2019-06-17 17:49:41 +02:00
|
|
|
CONFIG_SITE=${DEPS_DIR}/share/config.site ./configure --prefix=/ --without-gui --with-icu="$DEPS_DIR" --enable-static --disable-shared
|
2019-10-25 07:00:50 +02:00
|
|
|
make -j$(getconf _NPROCESSORS_ONLN)
|
2019-06-17 17:49:41 +02:00
|
|
|
x86_64-w64-mingw32-strip src/lbrycrdd.exe src/lbrycrd-cli.exe src/lbrycrd-tx.exe
|
|
|
|
|
|
|
|
if which ccache >/dev/null; then
|
|
|
|
echo "ccache stats:"
|
|
|
|
ccache -s
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Windows 64bit build is complete"
|