summaryrefslogtreecommitdiffstats
path: root/scripts/docker
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/docker')
-rw-r--r--scripts/docker/mxe-build-container/Dockerfile (renamed from scripts/docker/mxe-build-container/Dockerfile-stage1)28
-rw-r--r--scripts/docker/mxe-build-container/Dockerfile-stage213
-rw-r--r--scripts/docker/mxe-build-container/build-container.sh9
-rw-r--r--scripts/docker/mxe-build-container/instructions.md10
-rw-r--r--scripts/docker/mxe-build-container/settings-stage1.mk15
-rw-r--r--scripts/docker/mxe-build-container/settings.mk (renamed from scripts/docker/mxe-build-container/settings-stage2.mk)31
6 files changed, 47 insertions, 59 deletions
diff --git a/scripts/docker/mxe-build-container/Dockerfile-stage1 b/scripts/docker/mxe-build-container/Dockerfile
index 056e6fa8e..08bdd619c 100644
--- a/scripts/docker/mxe-build-container/Dockerfile-stage1
+++ b/scripts/docker/mxe-build-container/Dockerfile
@@ -3,13 +3,15 @@
#
# Start from Ubuntu
-From ubuntu:18.04
+From ubuntu:20.04
+
+# very often master is broken, so we pass in a known good SHA
ARG mxe_sha=master
ENV _ver=${mxe_sha}
# update and set up the packages we need for this cross build
RUN apt-get update && apt-get upgrade -y && \
-apt-get install -y \
+DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
autoconf \
automake \
autopoint \
@@ -47,18 +49,26 @@ apt-get install -y \
lzip \
scons
-# copy over the partial MXE settings (simply missing QtWebKit so we don't exceed the 6h limit)
+# checkout MXE at the right version
RUN mkdir -p /win
-ADD settings-stage1.mk /win/settings.mk
RUN cd /win ; git clone git://github.com/mxe/mxe ; \
cd mxe ; \
git checkout ${_ver} ;
+
# Patch the qtconnectivity build to explicilty enable native-win32-bluetooth and ensure another
# backend is not picked
-ADD qtconnectivity-1.patch /win/qtconnectivity-1.patch
-RUN mv /win/qtconnectivity-1.patch /win/mxe/src
-RUN mv /win/settings.mk /win/mxe
+ADD qtconnectivity-1.patch /win/mxe/src/qtconnectivity-1.patch
+
+# Move the settings into place to build everything that we need
+# separate download from build so that we can redo the build
+ADD settings.mk /win/mxe/settings.mk
RUN cd /win/mxe ; \
- make -j 6 2>&1 | tee build.log ;
+ make -j 6 download 2>&1 | tee mxe-build.log
RUN cd /win/mxe ; \
- make MXE_TARGETS=i686-w64-mingw32.static glib -j 6 2>&1 | tee -a build.log ;
+ make -j 6 2>&1 | tee -a mxe-build.log ;
+
+# for some reason smtk2ssrf needs a static build of mdbtools
+RUN cd /win/mxe ; \
+ make MXE_TARGETS=x86_64-w64-mingw32.static glib mdbtools -j 6 2>&1 | tee -a mxe-build.log ;
+
+RUN apt-get remove -y bison flex gperf libc6-dev-i386 libgdk-pixbuf2.0-dev libxml-parser-perl python ruby xz-utils scons && rm -rf /var/lib/apt/lists/*
diff --git a/scripts/docker/mxe-build-container/Dockerfile-stage2 b/scripts/docker/mxe-build-container/Dockerfile-stage2
deleted file mode 100644
index d8760f723..000000000
--- a/scripts/docker/mxe-build-container/Dockerfile-stage2
+++ /dev/null
@@ -1,13 +0,0 @@
-ARG VERSION
-
-# Start from the container that we created in stage 1
-From subsurface/mxe-build-container:$VERSION
-
-# this time the settings include QtWebKit - since everything else was built
-# during the first stage, QtWebKit will be the only thing that gets built
-ADD settings-stage2.mk /win/mxe/settings.mk
-RUN cd /win/mxe ; \
- make -j 2 2>&1 | tee build.log ;
-RUN cd /win/mxe ; \
- make MXE_TARGETS=i686-w64-mingw32.static glib mdbtools -j 6 2>&1 | tee -a build.log ;
-
diff --git a/scripts/docker/mxe-build-container/build-container.sh b/scripts/docker/mxe-build-container/build-container.sh
index 1f5e1eddc..c1ab1c65f 100644
--- a/scripts/docker/mxe-build-container/build-container.sh
+++ b/scripts/docker/mxe-build-container/build-container.sh
@@ -2,10 +2,13 @@
set -x
set -e
+# known good MXE sha
+MXE_SHA="8966a64"
SCRIPTPATH=$(dirname $0)
-export VERSION=1.1
+# version of the docker image
+VERSION=2.0
+
pushd $SCRIPTPATH
-docker build -t subsurface/mxe-build-container:$VERSION --build-arg=mxe_sha=1ee37f8 -f Dockerfile-stage1 .
-docker build -t subsurface/mxe-build-container:$VERSION --build-arg=VERSION=$VERSION -f Dockerfile-stage2 .
+docker build --squash -t subsurface/mxe-build-container:$VERSION --build-arg=mxe_sha=$MXE_SHA -f Dockerfile .
popd
diff --git a/scripts/docker/mxe-build-container/instructions.md b/scripts/docker/mxe-build-container/instructions.md
index 2a860ac33..c78edb790 100644
--- a/scripts/docker/mxe-build-container/instructions.md
+++ b/scripts/docker/mxe-build-container/instructions.md
@@ -2,16 +2,14 @@
This document assumes you have alreay installed docker and have checked out subsurface according to the instructions in the INSTALL document.
-If you are just wantint to build with the current mxe build container then starting from the folder above subsurface run
+If you just want to build with the current mxe build container then starting from the folder above subsurface run
```bash
-docker run -v $PWD/win32:/win/win32 -v $PWD/subsurface:/win/subsurface --name=mybuilder -w /win -d subsurface/mxe-build-container:1.x /bin/sleep 60m
+docker run -v $PWD/win32:/win/win32 -v $PWD/subsurface:/win/subsurface --name=mybuilder -w /win -d subsurface/mxe-build-container:x.y /bin/sleep 60m
```
-replacing the x in the mxe-build-container tag with the current version e.g.
-```bash
-docker run -v $PWD/win32:/win/win32 -v $PWD/subsurface:/win/subsurface --name=mybuilder -w /win -d subsurface/mxe-build-container:1.0 /bin/sleep 60m
-```
+replacing the x.y in the mxe-build-container tag with the current version e.g. 2.0
+
Next you need to prep the container by installing some prerequisites
```bash
diff --git a/scripts/docker/mxe-build-container/settings-stage1.mk b/scripts/docker/mxe-build-container/settings-stage1.mk
deleted file mode 100644
index 5563f259a..000000000
--- a/scripts/docker/mxe-build-container/settings-stage1.mk
+++ /dev/null
@@ -1,15 +0,0 @@
-# This is a template of configuration file for MXE. See
-# index.html for more extensive documentations.
-
-# This variable controls the number of compilation processes
-# within one package ("intra-package parallelism").
-JOBS := 2
-
-# This variable controls the targets that will build.
-MXE_TARGETS := i686-w64-mingw32.shared
-
-# The three lines below makes `make` build these "local packages" instead of all packages.
-LOCAL_PKG_LIST := qtbase qtconnectivity qtdeclarative qtimageformats qtlocation qtmultimedia qtquickcontrols qtquickcontrols2 qtscript qtsvg qttools qttranslations qtwebview libxml2 libxslt libusb1 libgit2 nsis curl libzip libftdi1
-.DEFAULT local-pkg-list:
-local-pkg-list: $(LOCAL_PKG_LIST)
-
diff --git a/scripts/docker/mxe-build-container/settings-stage2.mk b/scripts/docker/mxe-build-container/settings.mk
index 3d3ad3cc3..fecac6e06 100644
--- a/scripts/docker/mxe-build-container/settings-stage2.mk
+++ b/scripts/docker/mxe-build-container/settings.mk
@@ -3,23 +3,31 @@
# This variable controls the number of compilation processes
# within one package ("intra-package parallelism").
-JOBS := 2
+JOBS := 8
# This variable controls the targets that will build.
-MXE_TARGETS := i686-w64-mingw32.shared
+MXE_TARGETS := x86_64-w64-mingw32.shared
# The three lines below makes `make` build these "local packages" instead of all packages.
-LOCAL_PKG_LIST := curl \
- hidapi \
- libftdi1 \
- libgit2 \
- libusb1 \
+# The ordering of the list appears weird, but this seems to help to get the build done
+# faster on a massively parallel machine to get some of the bottleneck packages built as
+# early as possible
+LOCAL_PKG_LIST := gcc \
+ openssl \
+ libmysqlclient \
+ postgresql \
+ qtbase \
+ qtwebkit \
+ nsis \
+ curl \
libxml2 \
libxslt \
libzip \
+ libusb1 \
+ hidapi \
+ libgit2 \
+ libftdi1 \
mdbtools \
- nsis \
- qtbase \
qtconnectivity \
qtdeclarative \
qtimageformats \
@@ -27,13 +35,10 @@ LOCAL_PKG_LIST := curl \
qtmultimedia \
qtquickcontrols \
qtquickcontrols2 \
- qtscript \
+ qtcharts \
qtsvg \
qttools \
qttranslations \
- qtwebkit \
- qtwebview \
zstd
.DEFAULT local-pkg-list:
local-pkg-list: $(LOCAL_PKG_LIST)
-