This repository has been archived by the owner on May 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 185
/
build.sh
executable file
·340 lines (296 loc) · 10.5 KB
/
build.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
#!/bin/bash
#----------------------------------------
#
# Purpose: GPSTk build and install script
#
# Automate the use of CMake, SWIG, Doxygen, Sphinx, and distutils
# to build and install the GPSTK C++ Library, C++ Applications,
# Python bindings, and documentation.
#
# Help:
# $ build.sh -h
#
#----------------------------------------
#----------------------------------------
# Qué hora es? Dónde estamos? Y dónde vamos?
#----------------------------------------
source $(dirname "$BASH_SOURCE")/build_setup.sh
# or set gpstk=~/.local/gpstk
#user_install_prefix+="/gpstk"
user_install_prefix+="/gpstk"
system_install_prefix+="/gpstk"
usage()
{
cat << EOF
purpose: This script automates and documents how to build, test, and install the GPSTk.
usage: $0 [opts] [-- cmake options...]
examples:
$ build.sh # Just build software
$ sudo build.sh -s -b /tmp/qwe # Build and install core to $system_install_prefix
$ build.sh -tue # Build, test and install core, external, and python bindings to $gpstk
$ build.sh -vt -- -DCMAKE_BUILD_TYPE=debug # build for running debugger
$ build.sh -vt -- -DCMAKE_BUILD_TYPE=release # build for release
# MUST choose release to get -O3 optimization on linux
OPTIONS:
-h Display this help message.
-b <build_path> Specify the cmake build directory to use.
-i <install_prefix> Install the build to the given path.
-j <num_threads> Number of threads to have make use. Defauts to $num_threads
on this host.
-c Clean out any files in the build dir prior to running cmake.
-d Build documentation, including generate dependency graphs
using GraphViz (.DOT and .PDF files).
-e GPSTk has several parts: core, ext, and python/swig bindings.
See README.txt for details.
Default (without -e) will build only core
Optional (with -e) will build core, ext, and swig
-u Install the build to the path in the \$gpstk environment variable.
If this variable is not set, it will be installed to
$user_install_prefix.
-s Install the build into $system_install_prefix and the python
bindings to the default system location. Make sure the build path
is writable by root.
-x Disable building the python bindings. Default is to build them
if -e is specified.
-n Do not use address sanitizer for debug build (used by default)
-P <python_exe> Python executable used to help determine with python system libraries
will be used when building python extension package.
Default=$python_exe
-t Build and run tests.
-T Build and run tests but don't stop on test failures.
-g Compile code with gcov instrumenation enabled.
-p Build supported packages (source, binary, deb, ...)
-v Include debugging output.
EOF
}
while getopts "hb:cdepi:j:xnP:sutTgv" OPTION; do
case $OPTION in
h) usage
exit 0
;;
b) build_root=$(abspath ${OPTARG})
;;
c) clean=1
;;
d) build_docs=1
;;
e) build_ext=1
build_python=1
;;
p) build_packages=1
;;
i) install=1
install_prefix=$(abspath ${OPTARG})
python_install=$install_prefix
;;
j) num_threads=$OPTARG
;;
x) exclude_python=1
;;
n) no_address_sanitizer=1
;;
P) python_exe=$OPTARG
;;
u) install=1
install_prefix=${gpstk:-$user_install_prefix}
python_install=$user_python_install
user_install=1
;;
s) install=1
install_prefix=$system_install_prefix
python_install=$system_python_install
;;
t) test_switch=1
;;
T) test_switch=-1
;;
g) coverage_switch=1
;;
v) verbose+=1
;;
*) echo "Invalid option: -$OPTARG" >&2
usage
exit 2
;;
esac
done
shift $(($OPTIND - 1))
LOG="$build_root"/build.log
#----------------------------------------
# Clean build directory
#----------------------------------------
if [ ! -d "$build_root" ]; then
mkdir -p "$build_root"
fi
if [ -f "$LOG" ]; then
rm $LOG
fi
if [ $clean ]; then
rm -rf "$build_root"/*
log "Cleaned out $build_root ..."
fi
if ((verbose>0)); then
log "============================================================"
log "GPSTk build config ..."
log "repo = $repo"
log "build_root = $build_root"
log "install = $(ptof $install)"
log "install_prefix = $install_prefix"
log "build_ext = $(ptof $build_ext)"
log "exclude_python = $(ptof $exclude_python)"
log "python_install = $python_install"
log "python_exe = $python_exe"
log "no_address_sanitizer = $(ptof $no_address_sanitizer)"
log "build_docs = $(ptof $build_docs)"
log "build_packages = $(ptof $build_packages)"
log "test_switch = $(ptof $test_switch)"
log "coverage_switch = $(ptof $coverage_switch)"
log "clean = $(ptof $clean)"
log "verbose = $(ptof $verbose)"
log "num_threads = $num_threads"
log "cmake args = $@"
log "time =" `date`
log "hostname =" $hostname
log "uname =" `uname -a`
log "git id =" $(get_repo_state $repo)
log "logfile =" $LOG
log
fi
if ((verbose>2)); then
log "============================================================"
set >> $LOG
log "============================================================"
fi
if ((verbose>3)); then
exit
fi
# Doxygen should be run in the top level directory so it picks up
# formatting files
cd "$repo"
if [ $build_docs ]; then
log "Pre-build documentation processing ..."
# Dynamically configure the Doxyfile with the source and destination paths
sources="$repo/core/lib"
if [ $build_ext ]; then
sources+=" $repo/ext/lib"
fi
log "Generating Doxygen files from C/C++ source ..."
sed -e "s#^INPUT *=.*#INPUT = $sources#" -e "s#gpstk_sources#$sources#g" -e "s#gpstk_doc_dir#$build_root/doc#g" $repo/Doxyfile >$repo/doxyfoo
sed -e "s#^INPUT *=.*#INPUT = $sources#" -e "s#gpstk_sources#$sources#g" -e "s#gpstk_doc_dir#$build_root/doc#g" $repo/Doxyfile | doxygen - >"$build_root"/Doxygen.log
tar -czf gpstk_doc_cpp.tgz -C "$build_root"/doc/html .
if [[ -z $exclude_python && $build_ext ]] ; then
log "Generating swig/python doc files from Doxygen output ..."
${python_exe} $repo/swig/docstring_generator.py "$build_root"/doc "$build_root"/swig/doc >"$build_root"/swig_doc.log
fi
fi
cd "$build_root"
# setup the cmake command
args=$@
if [ $exclude_python ]; then
args+=" -DBUILD_PYTHON=OFF"
elif [ $build_ext ]; then
args+=" -DBUILD_PYTHON=ON"
args+=${python_exe:+" -DPYTHON_EXECUTABLE=$python_exe"}
args+=${python_install:+" -DPYTHON_INSTALL_PREFIX=$python_install"}
fi
args+=${install_prefix:+" -DCMAKE_INSTALL_PREFIX=$install_prefix"}
args+=${build_ext:+" -DBUILD_EXT=ON"}
args+=${verbose:+" -DDEBUG_SWITCH=ON"}
args+=${user_install:+" -DPYTHON_USER_INSTALL=ON"}
args+=${test_switch:+" -DTEST_SWITCH=ON"}
args+=${coverage_switch:+" -DCOVERAGE_SWITCH=ON"}
args+=${build_docs:+" --graphviz=$build_root/doc/graphviz/gpstk_graphviz.dot"}
if [ $no_address_sanitizer ]; then
args+=" -DADDRESS_SANITIZER=OFF"
else
args+=" -DADDRESS_SANITIZER=ON"
fi
case `uname` in
MINGW32_NT-6.1)
run cmake $args -G "Visual Studio 14 2015 Win64" $repo
run cmake --build . --config Release
;;
MINGW64_NT-6.3)
run cmake $args -G "Visual Studio 14 2015 Win64" $repo
run cmake --build . --config Release
;;
*)
echo "Run cmake $args $repo ##########################"
run cmake $args $repo
run make all -j $num_threads
#run make all -j $num_threads VERBOSE=1 # BWT make make verbose
esac
if [ $test_switch ]; then
if ((test_switch < 0)); then
ignore_failures=1
fi
case `uname` in
MINGW32_NT-6.1)
run cmake --build . --target RUN_TESTS --config Release
;;
MINGW64_NT-6.3)
run cmake --build . --target RUN_TESTS --config Release
;;
*)
run ctest -v -j $num_threads
test_status=$?
esac
unset ignore_failures
fi
if [ $install ]; then
case `uname` in
MINGW32_NT-6.1)
run cmake --build . --config Release --target install
;;
MINGW64_NT-6.3)
run cmake --build . --config Release --target install
;;
*)
run make install -j $num_threads
esac
fi
if [ $build_docs ]; then
log "Post-build documentation processing ..."
# This is commented out because the RST documentation polutes the repo at the moment
# This process needs to be re-factored to use the CMAKE_CURRENT_BINARY_DIR
# if [[ -z $exclude_python && $build_ext ]] ; then
# log "Building RST documentation with Sphinx ..."
# cd $repo/swig/sphinx
# make html
# tar -czf $build_root/gpstk_doc_python.tgz -C $repo/swig/sphinx/_build/html/ .
# fi
log "Generating GraphViz output PDF ..."
dot -Tpdf "$build_root"/doc/graphviz/gpstk_graphviz.dot -o "$build_root"/doc/graphviz/gpstk_graphviz.pdf
fi
if [ $build_packages ]; then
case `uname` in
MINGW64_NT-6.3)
run cpack -C Release
;;
MINGW32_NT-6.1)
run cpack -C Release
;;
*)
run make package
run make package_source
esac
if [[ -z $exclude_python && $build_ext ]] ; then
cd "$build_root"/swig/install_package
${python_exe} setup.py sdist --formats=zip,gztar
fi
fi
log
if [ $test_switch ]; then
if [ $test_status == 0 ]; then
log "All tests passed!"
else
log $test_status " test failures."
fi
else
log "Tests not run."
fi
log "See $build_root/Testing/Temporary/LastTest.log for detailed test log"
log "See $LOG for detailed build log"
log
log "GPSTk build done. :-)"
log `date`