Skip to content

Commit

Permalink
Merge pull request #41098 from elpaso/mxe-updates-for-3_18-3_16-backport
Browse files Browse the repository at this point in the history
MXE python bump backport
  • Loading branch information
elpaso committed Jan 20, 2021
2 parents 3cce389 + 03282c4 commit 5084507
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 24 deletions.
6 changes: 3 additions & 3 deletions ms-windows/mxe/build-mxe.sh
Expand Up @@ -35,7 +35,7 @@ PYDEPLOY=${DIR}/deploy.py
# Configuration: change this!

# Location of mxe install dir
MXE=${MXE:-/mxe/}
MXE=${MXE:-/usr/lib/mxe/}

# Directory for build
BUILD_DIR=${PWD}/build-mxe
Expand All @@ -45,10 +45,10 @@ RELEASE_DIR=${PWD}/qgis-mxe-release
# End configuration

# Windows 64 bit with posix threads
TARGET=x86_64-w64-mingw32.shared.posix
TARGET=x86_64-w64-mingw32.shared

# Set base path for all tools
export PATH=${PATH}:/mxe/usr/bin
export PATH=${PATH}:${MXE}/usr/bin

# Fix CCACHE directory
export CCACHE_DIR=${PWD}/.ccache
Expand Down
56 changes: 35 additions & 21 deletions ms-windows/mxe/mxe.Dockerfile
@@ -1,27 +1,41 @@
FROM buildpack-deps:stretch
# Build deps for QGIS Windows binaries using MXE cross compile environment
# Author: Alessandro Pasotti

FROM ubuntu:focal

RUN chown root:root /tmp && chmod ugo+rwXt /tmp
RUN apt-get update
RUN apt-get install -y --no-install-recommends autopoint bison flex gperf libtool ruby scons unzip p7zip-full intltool libtool libtool-bin nsis lzip zip

WORKDIR /mxe
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
dirmngr \
software-properties-common \
lsb-release \
gpg-agent \
python3-distutils

RUN git clone https://github.com/mxe/mxe . || git pull origin master
RUN make MXE_TARGETS=x86_64-w64-mingw32.shared.posix -j 16 \
qca \
qtlocation \
qscintilla2 \
qwt \
gdal \
qtkeychain \
qtserialport \
qtwebkit \
qtwinextras \
libzip \
gsl \
libspatialindex \
exiv2 \
protobuf
RUN apt-key adv \
--keyserver keyserver.ubuntu.com \
--recv-keys 86B72ED9 && \
add-apt-repository \
"deb [arch=amd64] https://pkg.mxe.cc/repos/apt `lsb_release -sc` main" && \
apt-get update

RUN chmod -R a+rw /mxe/usr/x86_64-w64-mingw32.shared.posix
RUN DEBIAN_FRONTEND=noninteractive apt install -y \
mxe-x86-64-w64-mingw32.shared-gdal \
mxe-x86-64-w64-mingw32.shared-qca \
mxe-x86-64-w64-mingw32.shared-qtlocation \
mxe-x86-64-w64-mingw32.shared-qscintilla2 \
mxe-x86-64-w64-mingw32.shared-qwt \
mxe-x86-64-w64-mingw32.shared-qtkeychain \
mxe-x86-64-w64-mingw32.shared-qtserialport \
mxe-x86-64-w64-mingw32.shared-qtwebkit \
mxe-x86-64-w64-mingw32.shared-qtwinextras \
mxe-x86-64-w64-mingw32.shared-exiv2 \
mxe-x86-64-w64-mingw32.shared-protobuf \
mxe-x86-64-w64-mingw32.shared-zlib \
mxe-x86-64-w64-mingw32.shared-libzip \
mxe-x86-64-w64-mingw32.shared-libspatialindex \
mxe-x86-64-w64-mingw32.shared-gsl \
mxe-x86-64-w64-mingw32.shared-zstd

# For QT SQL driver installation as an unprivileged user
RUN chmod -R 777 /usr/lib/mxe/usr/x86_64-w64-mingw32.shared/qt5/plugins/

0 comments on commit 5084507

Please sign in to comment.