Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
382 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
|
||
Scripts to cross build a windows QGIS binary from Linux using MXE: | ||
(M cross environment) http://mxe.cc/ | ||
|
||
For now, Python bindings cannot be built with mxe. | ||
|
||
Follow the instructions on the website to prepare the mxe environment, you | ||
will need to build all required dependencies for QGIS. | ||
|
||
Note that someof the packages listed below are dependencies of other | ||
packages, you will probably not need to build them all explicitely. | ||
|
||
|
||
armadillo | ||
bfd | ||
bzip2 | ||
cairo | ||
cmake | ||
curl | ||
dbus | ||
dlfcn-win32 | ||
expat | ||
fontconfig | ||
freetds | ||
freetype | ||
freexl | ||
gcc | ||
gdal | ||
gendef | ||
geos | ||
gettext | ||
giflib | ||
glib | ||
gmp | ||
gnutls | ||
gsl | ||
gta | ||
harfbuzz | ||
hdf4 | ||
hdf5 | ||
icu4c | ||
isl | ||
jasper | ||
jpeg | ||
json-c | ||
lcms | ||
libffi | ||
libgcrypt | ||
libgeotiff | ||
libgnurx | ||
libgpg_error | ||
libiconv | ||
libidn2 | ||
libmng | ||
libmysqlclient | ||
libpng | ||
libspatialindex | ||
libssh2 | ||
libunistring | ||
libwebp | ||
libxml2 | ||
libzip | ||
lzo | ||
mpc | ||
mpfr | ||
netcdf | ||
nettle | ||
openblas | ||
openjpeg | ||
openssl | ||
pcre | ||
pcre2 | ||
pixman | ||
pkgconf | ||
portablexdr | ||
postgresql | ||
proj | ||
qca | ||
qscintilla2 | ||
qt3d | ||
qtactiveqt | ||
qtbase | ||
qtcanvas3d | ||
qtcharts | ||
qtconnectivity | ||
qtdatavis3d | ||
qtdeclarative | ||
qtgamepad | ||
qtgraphicaleffects | ||
qtimageformats | ||
qtkeychain | ||
qtlocation | ||
qtmultimedia | ||
qtpurchasing | ||
qtquickcontrols | ||
qtquickcontrols2 | ||
qtscript | ||
qtscxml | ||
qtsensors | ||
qtserialbus | ||
qtserialport | ||
qtspeech | ||
qtsvg | ||
qttools | ||
qttranslations | ||
qtvirtualkeyboard | ||
qtwebchannel | ||
qtwebkit | ||
qtwebsockets | ||
qtwebview | ||
qtwinextras | ||
qtxmlpatterns | ||
qwt | ||
spatialite | ||
sqlite | ||
tiff | ||
xz | ||
zlib | ||
|
||
When done, you can edit the build-mxe.sh script to set the path to your mxe installation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
#!/bin/bash | ||
########################################################################### | ||
# build-mxe.sh | ||
# --------------------- | ||
# Date : February 2018 | ||
# Copyright : (C) 2018 by Alessandro Pasotti | ||
# Email : elpaso at itopen dot it | ||
########################################################################### | ||
# # | ||
# This program is free software; you can redistribute it and/or modify # | ||
# it under the terms of the GNU General Public License as published by # | ||
# the Free Software Foundation; either version 2 of the License, or # | ||
# (at your option) any later version. # | ||
# # | ||
########################################################################### | ||
|
||
|
||
set -e | ||
|
||
# Usage: you can pass an optional "package" command to skip the build | ||
# and directly go to the packaging | ||
# This script needs to be called from the main QGIS directory, the | ||
# one which contains CMakeLists.txt | ||
|
||
COMMAND=$1 | ||
|
||
# Location of current script | ||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
PYDEPLOY=${DIR}/deploy.py | ||
|
||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
# Configuration: change this! | ||
|
||
# Location of mxe install dir | ||
MXE=${HOME}/dev/mxe/ | ||
|
||
# Where the artifact will be saved | ||
|
||
BUILD_DIR=`pwd`/build-mxe | ||
RELEASE_DIR=`pwd`/release-mxe | ||
|
||
# End configuration | ||
|
||
|
||
|
||
|
||
if [[ "$COMMAND" != *"package"* ]]; then | ||
[ -d $BUILD_DIR ] && rm -rf $BUILD_DIR | ||
[ -d $RELEASE_DIR ] && rm -rf $RELEASE_DIR | ||
# Make sure dirs exist | ||
|
||
[ -d $BUILD_DIR ] || mkdir $BUILD_DIR | ||
[ -d $RELEASE_DIR ] || mkdir $RELEASE_DIR | ||
|
||
fi | ||
|
||
pushd . | ||
|
||
cd $BUILD_DIR | ||
|
||
# Build | ||
|
||
if [[ "$COMMAND" != *"package"* ]]; then | ||
|
||
$MXE/usr/bin/i686-w64-mingw32.shared-cmake .. \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX=$RELEASE_DIR \ | ||
-DENABLE_TESTS=OFF \ | ||
-DWITH_QSPATIALITE=ON \ | ||
-DWITH_APIDOC=OFF \ | ||
-DWITH_QWTPOLAR=ON \ | ||
-DWITH_ASTYLE=OFF \ | ||
-DWITH_SERVER=OFF \ | ||
-DWITH_BINDINGS=FALSE \ | ||
-DQT_LRELEASE_EXECUTABLE=$MXE/usr/i686-w64-mingw32.shared/qt5/bin/lrelease \ | ||
$ARGS | ||
|
||
|
||
make -j16 install | ||
|
||
fi | ||
|
||
# Collect deps | ||
|
||
$PYDEPLOY --build=$RELEASE_DIR --objdump=$MXE/usr/bin/i686-w64-mingw32.shared-objdump ${RELEASE_DIR}/qgis.exe | ||
for dll in $(ls ${RELEASE_DIR}/*.dll); do \ | ||
$PYDEPLOY --build=$RELEASE_DIR --objdump=$MXE/usr/bin/i686-w64-mingw32.shared-objdump $dll; \ | ||
done | ||
|
||
cp -r $MXE/usr/i686-w64-mingw32.shared/qt5/plugins $RELEASE_DIR/qt5 | ||
|
||
cat <<__TXT__ > ${RELEASE_DIR}/qt.conf | ||
[Paths] | ||
Plugins = ./qt5/plugins | ||
__TXT__ | ||
|
||
|
||
popd | ||
|
||
ZIP_NAME=release-`date +%Y-%m-%d-%H-%I-%S`.zip | ||
|
||
zip -r $ZIP_NAME $RELEASE_DIR | ||
|
||
echo "Release in $ZIP_NAME ready." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
#! /usr/bin/env python3 | ||
"""pyWindeployqt | ||
This is a wrapper for mingw32 objdump replacing windeployqt which is missing from MXE | ||
I don't know why they disabled it, but here it is. | ||
Example: | ||
./deploy.py --build=~/ClionProjects/project/build/ \ | ||
--objdump=/home/user/mxe/usr/bin/i686-w64-mingw32.shared-objdump \ | ||
~/ClionProjects/project/build/project.exe; | ||
""" | ||
|
||
__author__ = 'Alexey Elymanov (strangeqargo@gmail.com)' | ||
|
||
import subprocess | ||
import os | ||
import sys | ||
import re | ||
import os.path | ||
|
||
import argparse | ||
parser = argparse.ArgumentParser() | ||
|
||
parser.add_argument("--build", help="where to place libraries, optional, files will go to target location by default") | ||
parser.add_argument("--objdump", help="objdump executable (/home/user/mxe/usr/bin/i686-w64-mingw32.shared-objdump)") | ||
parser.add_argument("--libs", help="where to search for libraries (optional) infers from objdump") | ||
parser.add_argument("target") | ||
|
||
args = parser.parse_args() | ||
if len(sys.argv) == 1 or not (args.libs or args.objdump): | ||
parser.print_help() | ||
sys.exit(1) | ||
|
||
target = os.path.expanduser(args.target) | ||
objdump_path = os.path.expanduser(args.objdump) | ||
|
||
if not args.build: | ||
build_path = os.path.expanduser(os.path.dirname(args.target)) + "/" | ||
else: | ||
build_path = os.path.expanduser(args.build) | ||
|
||
libs = args.libs | ||
if not args.libs: | ||
libs = objdump_path.replace('/bin', '').replace('-objdump','') | ||
|
||
|
||
# build_path = "/home/user/ClionProjects/project/build/" | ||
# libs = "/home/user/mxe/usr/i686-w64-mingw32.shared" | ||
# objdump_path = "/home/user/mxe/usr/bin/i686-w64-mingw32.shared-objdump" | ||
# target = "project.exe" | ||
|
||
|
||
def run_check(): | ||
return subprocess.getoutput("wine project.exe") | ||
|
||
|
||
def find_dll(dll): | ||
out = subprocess.getoutput("find " + libs + " | grep -i '" + dll+"$'") | ||
return out.strip('\n') | ||
|
||
|
||
def library_install_exe(out=''): | ||
out = run_check().splitlines() | ||
for line in out: | ||
# err = re.search('(err:module:import_dll (Library |Loading library)) (.*?\.dll) ', line) | ||
err = re.search('([^ ]+\.dll) \(which', line) | ||
if err is not None: | ||
|
||
dll = err.group(1) | ||
dll = find_dll(dll) | ||
if dll is not None: | ||
copy_command = "cp " + dll + " " + build_path | ||
print("copy: ", copy_command) | ||
subprocess.getoutput(copy_command) | ||
library_install_exe(out) | ||
|
||
|
||
def library_install_objdump(path, level): | ||
if path in skip_libs or path in done: | ||
return | ||
|
||
if level > 0: | ||
lib = find_dll(path) | ||
if lib == "": # not found | ||
skip_libs.append(path) | ||
print("Not found: " + path) | ||
return | ||
print(lib) | ||
subprocess.getoutput("cp " + lib + " " + build_path) | ||
|
||
else: | ||
print("Processing target " + path) | ||
lib = path | ||
|
||
done.append(path) | ||
|
||
command = objdump_path + " -p " + lib + " | grep -o ': .*\.dll$'" | ||
res = subprocess.getstatusoutput(command) | ||
if (res[0] > 0): | ||
print("Error: objdump failed with " + lib) | ||
else: | ||
dlls = subprocess.getoutput(command).split("\n") | ||
for line in dlls: | ||
dll = (line.split(": "))[1] | ||
if dll not in done and dll not in skip_libs: | ||
level += 1 | ||
library_install_objdump(dll, level) | ||
|
||
skip_libs = list() | ||
done = list() | ||
|
||
|
||
def main(): | ||
|
||
os.chdir(build_path) | ||
|
||
#library_install_exe(target) | ||
library_install_objdump(target, 0) | ||
|
||
pass | ||
|
||
main() |