forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrosscompile.sh
executable file
·364 lines (324 loc) · 8.27 KB
/
crosscompile.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
#!/bin/sh
#
################################################################################
#
# MODULE: crosscompile.sh
# AUTHOR(S): Huidae Cho <grass4u gmail.com>
# PURPOSE: Builds a cross-compiled portable package of GRASS GIS
# COPYRIGHT: (C) 2019, 2020 by Huidae Cho and the GRASS Development Team
#
# This program is free software under the GNU General Public
# License (>=v2). Read the file COPYING that comes with GRASS
# for details.
#
################################################################################
#
# This script requires MXE <https://mxe.cc/> for cross-compilation and was
# tested on Slackware 14.2 x86_64 with up-to-date packages from slackpkg and
# sbopkg.
#
# Basic steps:
#
# mkdir -p ~/usr/src
# cd ~/usr/src
# git clone https://github.com/mxe/mxe.git
# cd mxe
# echo MXE_TARGETS=x86_64-w64-mingw32.shared > settings.mk
# make cc blas bzip2 cairo fftw freetype gdal geos lapack netcdf libpng \
# pthreads readline libgnurx sqlite tiff zstd proj
#
# cd ~/usr/src
# git clone https://github.com/OSGeo/grass.git
# cd grass
# mswindows/crosscompile.sh --mxe-path=$HOME/usr/src/mxe --update --package \
# > crosscompile.log 2>&1
#
# stop on errors
set -e
# default paths, but can be overriden from the command line
mxe_path=${MXE_PATH-$HOME/usr/local/src/mxe}
freetype_include=${FREETYPE_INCLUDE-/usr/include/freetype2}
# process options
update=0
package=0
for opt; do
case "$opt" in
-h|--help)
cat<<'EOT'
Usage: crosscompile.sh [OPTIONS]
-h, --help display this help message
--mxe-path=PATH MXE path (default: $HOME/usr/local/src/mxe)
--freetype-include=PATH FreeType include path
(default: /usr/include/freetype2)
--update update the current branch
--package package the cross-compiled build as
grass80-x86_64-w64-mingw32-YYYYMMDD.zip
EOT
exit
;;
--mxe-path=*)
mxe_path=`echo $opt | sed 's/^[^=]*=//'`
;;
--freetype-include=*)
freetype_include=`echo $opt | sed 's/^[^=]*=//'`
;;
--update)
update=1
;;
--package)
package=1
;;
*)
echo "$opt: unknown option"
exit 1
;;
esac
done
# see if we're inside the root of the GRASS source code
if [ ! -f grass.pc.in ]; then
echo "Please run this script from the root of the GRASS source code"
exit 1
fi
# check paths
errors=0
if [ ! -d $mxe_path ]; then
echo "$mxe_path: not found"
errors=1
fi
if [ ! -d $freetype_include ]; then
echo "$freetype_include: not found"
errors=1
fi
if [ $update -eq 1 -a ! -d .git ]; then
echo "not a git repository"
errors=1
fi
if [ $errors -eq 1 ]; then
exit 1
fi
################################################################################
# Start
echo "Started cross-compilation: `date`"
echo
# update the current branch if requested
if [ $update -eq 1 -a -d .git ]; then
git pull
fi
################################################################################
# Compile the native architecture for generating document files
CFLAGS="-g -O2 -Wall" \
CXXFLAGS="-g -O2 -Wall" \
LDFLAGS="-lcurses" \
./configure \
--with-nls \
--with-readline \
--with-wxwidgets \
--with-freetype-includes=$freetype_include \
--with-bzlib \
--with-postgres \
--with-pthread \
--with-openmp \
--with-blas \
--with-lapack \
--with-geos \
--with-netcdf \
>> /dev/stdout
make clean default
build_arch=`sed -n '/^ARCH[ \t]*=/{s/^.*=[ \t]*//; p}' include/Make/Platform.make`
for i in \
config.log \
include/Make/Platform.make \
include/Make/Doxyfile_arch_html \
include/Make/Doxyfile_arch_latex \
error.log \
; do
cp -a $i $i.$build_arch
done
################################################################################
# Cross-compile the target architecture
arch=x86_64-w64-mingw32
shared=$arch.shared
mxe_bin=$mxe_path/usr/bin/$shared
mxe_shared=$mxe_path/usr/$shared
CC=$mxe_bin-gcc \
CXX=$mxe_bin-g++ \
CFLAGS="-g -O2 -Wall" \
CXXFLAGS="-g -O2 -Wall" \
AR=$mxe_bin-ar \
RANLIB=$mxe_bin-ranlib \
WINDRES=$mxe_bin-windres \
PKG_CONFIG=$mxe_bin-pkg-config \
./configure \
--build=$build_arch \
--host=$arch \
--with-nls \
--with-readline \
--with-wxwidgets \
--with-freetype-includes=$mxe_shared/include/freetype2 \
--with-bzlib \
--with-postgres \
--with-pthread \
--with-openmp \
--with-blas \
--with-lapack \
--with-geos=$mxe_shared/bin/geos-config \
--with-netcdf=$mxe_shared/bin/nc-config \
--with-gdal=$mxe_shared/bin/gdal-config \
--with-opengl=windows \
>> /dev/stdout
make clean default
arch=`sed -n '/^ARCH[ \t]*=/{s/^.*=[ \t]*//; p}' include/Make/Platform.make`
for i in \
config.log \
include/Make/Platform.make \
include/Make/Doxyfile_arch_html \
include/Make/Doxyfile_arch_latex \
error.log \
; do
cp -a $i $i.$arch
done
################################################################################
# Copy document files from the native build
build_dist=dist.$build_arch
dist=dist.$arch
for i in \
docs \
gui/wxpython/xml \
; do
rm -rf $dist/$i
cp -a $build_dist/$i $dist/$i
done
################################################################################
# Copy MXE files
for i in \
libblas.dll \
libbz2.dll \
libcairo-2.dll \
libcrypto-3-x64.dll \
libcurl-4.dll \
libdf-0.dll \
libexpat-1.dll \
libfftw3-3.dll \
libfontconfig-1.dll \
libfreetype-6.dll \
libfreexl-1.dll \
libgcc_s_seh-1.dll \
libgcrypt-20.dll \
libgdal-20.dll \
libgeos-3-6-2.dll \
libgeos_c-1.dll \
libgeotiff-2.dll \
libgfortran-3.dll \
libgif-7.dll \
libglib-2.0-0.dll \
libgnurx-0.dll \
libgomp-1.dll \
libgpg-error-0.dll \
libgta-0.dll \
libharfbuzz-0.dll \
libhdf5-8.dll \
libhdf5_hl-8.dll \
libiconv-2.dll \
libidn2-0.dll \
libintl-8.dll \
libjpeg-9.dll \
libjson-c-4.dll \
liblapack.dll \
liblzma-5.dll \
libmfhdf-0.dll \
libmysqlclient.dll \
libnetcdf.dll \
libopenjp2.dll \
libpcre-1.dll \
libpixman-1-0.dll \
libpng16-16.dll \
libportablexdr-0.dll \
libpq.dll \
libproj-13.dll \
libquadmath-0.dll \
libreadline8.dll \
libspatialite-7.dll \
libsqlite3-0.dll \
libssh2-1.dll \
libssl-3-x64.dll \
libstdc++-6.dll \
libtermcap.dll \
libtiff-5.dll \
libunistring-2.dll \
libwebp-7.dll \
libwinpthread-1.dll \
libxml2-2.dll \
libzstd.dll \
zlib1.dll \
; do
cp -a $mxe_shared/bin/$i $dist/lib
done
for i in \
proj \
gdal \
; do
rm -rf $dist/share/$i
cp -a $mxe_shared/share/$i $dist/share/$i
done
################################################################################
# Post-compile process
version=`sed -n '/^INST_DIR[ \t]*=/{s/^.*grass//; p}' include/Make/Platform.make`
rm -f $dist/grass.tmp
cp -a bin.$arch/grass.py $dist/etc/grass$version.py
cat<<'EOT' | sed "s/\$version/$version/g" > $dist/grass.bat
@echo off
setlocal EnableDelayedExpansion
rem Change this variable to override auto-detection of python.exe in PATH
set GRASS_PYTHON=C:\Python39\python.exe
rem For portable installation, use %~d0 for the changing drive letter
rem set GRASS_PYTHON=%~d0\Python39\python.exe
set GISBASE=%~dp0
set GISBASE=%GISBASE:~0,-1%
rem If %GRASS_SH% is externally defined, that shell will be used; Otherwise,
rem %GISBASE%\etc\sh.exe will be used if it exists; If not, cmd.exe will be
rem used; This check is mainly for supporting BusyBox for Windows
rem (https://frippery.org/busybox/)
if not defined GRASS_SH set GRASS_SH=%GISBASE%\etc\sh.exe
if not exist "%GRASS_SH%" set GRASS_SH=
set GRASS_PROJSHARE=%GISBASE%\share\proj
set PROJ_LIB=%GISBASE%\share\proj
set GDAL_DATA=%GISBASE%\share\gdal
rem XXX: Do we need these variables?
rem set GEOTIFF_CSV=%GISBASE%\share\epsg_csv
rem set FONTCONFIG_FILE=%GISBASE%\etc\fonts.conf
if not exist "%GISBASE%\etc\fontcap" (
pushd .
set GISRC=dummy
cd %GISBASE%\lib
%GISBASE%\bin\g.mkfontcap.exe
popd
)
if not exist "%GRASS_PYTHON%" (
set GRASS_PYTHON=
for /f usebackq %%i in (`where python.exe`) do if "!GRASS_PYTHON!"=="" set GRASS_PYTHON=%%i
)
if not defined GRASS_PYTHON (
echo.
echo python.exe not found in PATH
echo Please set GRASS_PYTHON in %~f0
echo.
pause
goto:eof
)
rem XXX: Do we need PYTHONHOME?
rem for %%i in (%GRASS_PYTHON%) do set PYTHONHOME=%%~dpi
"%GRASS_PYTHON%" "%GISBASE%\etc\grass$version.py" %*
if %ERRORLEVEL% geq 1 pause
EOT
unix2dos $dist/grass.bat
# package if requested
if [ $package -eq 1 ]; then
date=`date +%Y%m%d`
rm -f grass
ln -s $dist grass
rm -f grass*-$arch-*.zip
zip -r grass$version-$arch-$date.zip grass
rm -f grass
fi
echo
echo "Completed cross-compilation: `date`"