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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
|
#!/bin/sh
echo " "
echo "###########################################################"
echo "# Script to simplify the compilation of Widelands #"
echo "###########################################################"
echo " "
echo " Because of the many different systems Widelands"
echo " might be compiled on, we unfortunally can not"
echo " provide a simple way to prepare your system for"
echo " compilation. To ensure your system is ready, best"
echo " check https://www.widelands.org/wiki/BuildingWidelands"
echo " "
echo " You will often find helpful hands at our"
echo " * IRC Chat: https://www.widelands.org/webchat/"
echo " * Forums: https://www.widelands.org/forum/"
echo " * Mailinglist: https://www.widelands.org/wiki/MailLists/"
echo " "
echo " Please post your bug reports and feature requests at:"
echo " https://github.com/widelands/widelands/issues"
echo " "
echo "###########################################################"
echo " "
print_help () {
# Print help for our options
echo "Per default, this script will create a full debug build."
echo "Unless explicitly switched off, AddressSanitizer will"
echo "be used as well with debug builds."
echo " "
echo "The following options are available:"
echo " "
echo "-h or --help Print this help."
echo " "
echo " "
echo "Omission options:"
echo " "
echo "-w or --no-website Omit building of website binaries."
echo " "
echo "-t or --no-translations"
echo " Omit building translations."
echo " "
echo "-s or --skip-tests"
echo " Skip linking and executing the tests."
echo " "
echo "-a or --no-asan If in debug mode, switch off the AddressSanitizer."
echo " Release builds are created without AddressSanitizer"
echo " by default."
echo " "
echo "--without-xdg Disable support for the XDG Base Directory Specification."
echo " "
echo "Compiler options:"
echo " "
echo "-j <number> or --cores <number>"
echo " Set the number of processor cores to use for"
echo " compiling and linking. Default is to leave 1 core"
echo " free."
echo " "
echo "-r or --release Create a release build. If this is not set,"
echo " a debug build will be created."
echo " "
if which g++ >/dev/null; then # gcc specific
echo "-c or --no-cross-opt Do not use cross compile unit optimization,"
echo " even if available."
echo " "
fi
echo "--gcc Try to build with GCC rather than the system default."
echo " If you built with Clang before, you will have to clean"
echo " your build directory before switching compilers."
echo " Expects that the compiler is in '/usr/bin/'."
echo " "
echo "--clang Try to build with Clang rather than the system default."
echo " If you built with GCC before, you will have to clean"
echo " your build directory before switching compilers."
echo " Expects that the compiler is in '/usr/bin/'."
echo " "
echo "For the AddressSanitizer output to be useful, some systems (e.g. Ubuntu Linux)"
echo "require that you set a symlink to the symbolizer. For example:"
echo " "
echo " sudo ln -s /usr/bin/llvm-symbolizer-3.8 /usr/bin/llvm-symbolizer"
echo " "
echo "More info about AddressSanitizer at:"
echo " "
echo " https://clang.llvm.org/docs/AddressSanitizer.html"
echo " "
return
}
## Get command and options to use in update.sh
COMMANDLINE="$0 $@"
## Options to control the build.
BUILD_WEBSITE="ON"
BUILD_TRANSLATIONS="ON"
BUILD_TESTS="ON"
BUILD_TYPE="Debug"
USE_FLTO="yes"
USE_ASAN="ON"
COMPILER="default"
USE_XDG="ON"
if [ "$(uname)" = "Darwin" ]; then
CORES="$(expr $(sysctl -n hw.ncpu) - 1)"
else
CORES="$(nproc --ignore=1)"
fi
for opt in "$@"
do
case $opt in
-a|--no-asan)
USE_ASAN="OFF"
shift
;;
-h|--help)
print_help
exit 0
shift
;;
-j|--cores)
MAXCORES=$((CORES + 1))
if [ "$2" ]; then
if [ "$MAXCORES" -ge "$2" ]; then
CORES="$2"
else
echo "Maximum number of supported cores is $MAXCORES."
CORES="$MAXCORES"
fi
else
echo "Call -j/--cores with a number, e.g. '-j $MAXCORES'"
exit 1
fi
shift # past argument
shift # past value
;;
-r|--release)
BUILD_TYPE="Release"
USE_ASAN="OFF"
shift
;;
-t|--no-translations)
BUILD_TRANSLATIONS="OFF"
shift
;;
-c|--no-cross-opt)
USE_FLTO="no"
shift
;;
-s|--skip-tests)
BUILD_TESTS="OFF"
shift
;;
-w|--no-website)
BUILD_WEBSITE="OFF"
shift
;;
--gcc)
if [ -f /usr/bin/gcc -a /usr/bin/g++ ]; then
export CC=/usr/bin/gcc
export CXX=/usr/bin/g++
fi
shift
;;
--clang)
if [ -f /usr/bin/clang -a /usr/bin/clang++ ]; then
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
fi
shift
;;
--without-xdg)
USE_XDG="OFF"
shift
;;
*)
# unknown option
;;
esac
done
echo "Using ${CORES} core(s)."
echo ""
if [ $BUILD_WEBSITE = "ON" ]; then
echo "A complete build will be created."
echo "You can use -w or --no-website to omit building and"
echo "linking website-related executables."
else
echo "Any website-related code will be OMITTED in the build."
echo "Make sure that you have created and tested a full"
echo "build before submitting code to the repository!"
fi
echo " "
if [ $BUILD_TRANSLATIONS = "ON" ]; then
echo "Translations will be built."
echo "You can use -t or --no-translations to omit building them."
else
echo "Translations will not be built."
fi
echo " "
if [ $BUILD_TESTS = "ON" ]; then
echo "Tests will be built."
echo "You can use -s or --skip-tests to omit building them."
else
echo "Tests will not be built."
fi
echo " "
echo "###########################################################"
echo " "
if [ $BUILD_TYPE = "Release" ]; then
echo "Creating a Release build."
else
echo "Creating a Debug build. Use -r to create a Release build."
fi
echo " "
if [ $USE_ASAN = "ON" ]; then
echo "Will build with AddressSanitizer."
echo "https://clang.llvm.org/docs/AddressSanitizer.html"
echo "You can use -a or --no-asan to switch it off."
else
echo "Will build without AddressSanitizer."
fi
if [ $USE_XDG = "ON" ]; then
echo " "
echo "Basic XDG Base Directory Specification will be used on Linux"
echo "if no existing \$HOME/.widelands folder is found."
echo "The widelands user data can be found in \$XDG_DATA_HOME/widelands"
echo "and defaults to \$HOME/.local/share/widelands."
echo "The widelands user configuration can be found in \$XDG_CONFIG_HOME/widelands"
echo "and defaults to \$HOME/.config/widelands."
echo "See https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
echo "for more information."
echo " "
fi
echo " "
echo "###########################################################"
echo " "
echo "Call 'compile.sh -h' or 'compile.sh --help' for help."
echo ""
echo "For instructions on how to adjust options and build with"
echo "CMake, please take a look at"
echo "https://www.widelands.org/wiki/BuildingWidelands/."
echo " "
echo "###########################################################"
echo " "
######################################
# Definition of some local variables #
######################################
buildtool="" #Use ninja by default, fall back to make if that is not available.
######################################
######################################
# Definition of some functions #
######################################
# Check basic stuff
basic_check () {
# Check whether the script is run in a widelands main directory
if ! [ -f src/wlapplication.cc ] ; then
echo " This script must be run from the main directory of the widelands"
echo " source code."
exit 1
fi
return 0
}
set_buildtool () {
#Defaults to ninja, but if that is not found, we use make instead
if [ `command -v ninja` ] ; then
buildtool="ninja"
#On some systems (most notably Fedora), the binary is called ninja-build
elif [ `command -v ninja-build` ] ; then
buildtool="ninja-build"
#... and some systems refer to GNU make as gmake
elif [ `command -v gmake` ] ; then
buildtool="gmake"
else
buildtool="make"
fi
}
# Check if directories / links already exists and create / update them if needed.
prepare_directories_and_links () {
test -d build/locale || mkdir -p build/locale
test -e data/locale || ln -s ../build/locale data/locale
return 0
}
# Compile Widelands
compile_widelands () {
if [ $buildtool = "ninja" ] || [ $buildtool = "ninja-build" ] ; then
cmake -G Ninja .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DOPTION_BUILD_WEBSITE_TOOLS=$BUILD_WEBSITE -DOPTION_BUILD_TRANSLATIONS=$BUILD_TRANSLATIONS -DOPTION_BUILD_TESTS=$BUILD_TESTS -DOPTION_ASAN=$USE_ASAN -DUSE_XDG=$USE_XDG -DUSE_FLTO_IF_AVAILABLE=${USE_FLTO}
else
cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DOPTION_BUILD_WEBSITE_TOOLS=$BUILD_WEBSITE -DOPTION_BUILD_TRANSLATIONS=$BUILD_TRANSLATIONS -DOPTION_BUILD_TESTS=$BUILD_TESTS -DOPTION_ASAN=$USE_ASAN -DUSE_XDG=$USE_XDG -DUSE_FLTO_IF_AVAILABLE=${USE_FLTO}
fi
$buildtool -j $CORES
return 0
}
# Remove old and move newly compiled files
move_built_files () {
rm -f ../VERSION || true
rm -f ../widelands || true
rm -f ../wl_map_object_info || true
rm -f ../wl_map_info || true
cp VERSION ../VERSION
mv src/widelands ../widelands
if [ $BUILD_WEBSITE = "ON" ]; then
mv ../build/src/website/wl_create_spritesheet ../wl_create_spritesheet
mv ../build/src/website/wl_map_object_info ../wl_map_object_info
mv ../build/src/website/wl_map_info ../wl_map_info
fi
return 0
}
create_update_script () {
# First check if this is an git checkout at all - only in that case,
# creation of a script makes any sense.
if [ -n "$(git status -s)" ]; then
echo "You don't appear to be using Git, or your working tree is not clean. An update script will not be created"
git status
return 0
fi
rm -f update.sh || true
cat > update.sh << END_SCRIPT
#!/bin/sh
echo "################################################"
echo "# Widelands update script. #"
echo "################################################"
echo " "
set -e
if ! [ -f src/wlapplication.cc ] ; then
echo " This script must be run from the main directory of the widelands"
echo " source code."
exit 1
fi
# Checkout current branch and pull latest master
git checkout
git pull https://github.com/widelands/widelands.git master
$COMMANDLINE
echo " "
echo "################################################"
echo "# Widelands was updated successfully. #"
echo "# You should be able to run it via ./widelands #"
echo "################################################"
END_SCRIPT
chmod +x ./update.sh
echo " -> The update script has successfully been created."
}
######################################
######################################
# Here is the "main" function #
######################################
set -e
basic_check
set_buildtool
prepare_directories_and_links
# Dependency check doesn't work with ninja, so we do it manually here
if [ $BUILD_TYPE = "Debug" -a \( $buildtool = "ninja" -o $buildtool = "ninja-build" \) ]; then
utils/build_deps.py
fi
mkdir -p build
cd build
compile_widelands
move_built_files
cd ..
create_update_script
echo " "
echo "###########################################################"
echo "# Congratulations! Widelands has been built successfully #"
echo "# with the following settings: #"
echo "# #"
if [ $BUILD_TYPE = "Release" ]; then
echo "# - Release build #"
else
echo "# - Debug build #"
fi
if [ $BUILD_TRANSLATIONS = "ON" ]; then
echo "# - Translations #"
else
echo "# - No translations #"
fi
if [ $BUILD_TESTS = "ON" ]; then
echo "# - Tests #"
else
echo "# - No tests #"
fi
if [ $USE_XDG = "ON" ]; then
echo "# - With support for the XDG Base Directory Specification #"
else
echo "# - Without support for the XDG Base Directory #"
echo "# Specification #"
fi
if [ $BUILD_WEBSITE = "ON" ]; then
echo "# - Website-related executables #"
else
echo "# - No website-related executables #"
fi
echo "# #"
echo "# You should now be able to run Widelands via #"
echo "# typing ./widelands + ENTER in your terminal #"
echo "# #"
echo "# You can update Widelands via running ./update.sh #"
echo "# in the same directory that you ran this script in. #"
echo "###########################################################"
######################################
|