forked from libbitcoin/libbitcoin-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·722 lines (610 loc) · 22.1 KB
/
install.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
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
#!/bin/bash
###############################################################################
# Copyright (c) 2014-2019 libbitcoin-network developers (see COPYING).
#
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
#
###############################################################################
# Script to build and install libbitcoin-network.
#
# Script options:
# --build-boost Builds Boost libraries.
# --build-dir=<path> Location of downloaded and intermediate files.
# --prefix=<absolute-path> Library install location (defaults to /usr/local).
# --disable-shared Disables shared library builds.
# --disable-static Disables static library builds.
# --help Display usage, overriding script execution.
#
# Verified on Ubuntu 14.04, requires gcc-4.8 or newer.
# Verified on OSX 10.10, using MacPorts and Homebrew repositories, requires
# Apple LLVM version 6.0 (clang-600.0.54) (based on LLVM 3.5svn) or newer.
# This script does not like spaces in the --prefix or --build-dir, sorry.
# Values (e.g. yes|no) in the '--disable-<linkage>' options are not supported.
# All command line options are passed to 'configure' of each repo, with
# the exception of the --build-<item> options, which are for the script only.
# Depending on the caller's permission to the --prefix or --build-dir
# directory, the script may need to be sudo'd.
# Define constants.
#==============================================================================
# The default build directory.
#------------------------------------------------------------------------------
BUILD_DIR="build-libbitcoin-network"
# Boost archive.
#------------------------------------------------------------------------------
BOOST_URL="http://downloads.sourceforge.net/project/boost/boost/1.62.0/boost_1_62_0.tar.bz2"
BOOST_ARCHIVE="boost_1_62_0.tar.bz2"
# Define utility functions.
#==============================================================================
configure_links()
{
# Configure dynamic linker run-time bindings when installing to system.
if [[ ($OS == Linux) && ($PREFIX == "/usr/local") ]]; then
ldconfig
fi
}
configure_options()
{
display_message "configure options:"
for OPTION in "$@"; do
if [[ $OPTION ]]; then
display_message "$OPTION"
fi
done
./configure "$@"
}
create_directory()
{
local DIRECTORY="$1"
rm -rf "$DIRECTORY"
mkdir "$DIRECTORY"
}
display_heading_message()
{
printf "\n********************** %s **********************\n" "$@"
}
display_message()
{
printf "%s\n" "$@"
}
display_error()
{
>&2 printf "%s\n" "$@"
}
initialize_git()
{
display_heading_message "Initialize git"
# Initialize git repository at the root of the current directory.
git init
git config user.name anonymous
}
# make_current_directory jobs [configure_options]
make_current_directory()
{
local JOBS=$1
shift 1
./autogen.sh
configure_options "$@"
make_jobs "$JOBS"
make install
configure_links
}
# make_jobs jobs [make_options]
make_jobs()
{
local JOBS=$1
shift 1
# Avoid setting -j1 (causes problems on Travis).
if [[ $JOBS > $SEQUENTIAL ]]; then
make -j"$JOBS" "$@"
else
make "$@"
fi
}
# make_tests jobs
make_tests()
{
local JOBS=$1
# Disable exit on error.
set +e
# Build and run unit tests relative to the primary directory.
# VERBOSE=1 ensures test runner output sent to console (gcc).
make_jobs "$JOBS" check "VERBOSE=1"
local RESULT=$?
# Test runners emit to the test.log file.
if [[ -e "test.log" ]]; then
cat "test.log"
fi
if [[ $RESULT -ne 0 ]]; then
exit $RESULT
fi
# Reenable exit on error.
set -e
}
pop_directory()
{
popd >/dev/null
}
push_directory()
{
local DIRECTORY="$1"
pushd "$DIRECTORY" >/dev/null
}
display_help()
{
display_message "Usage: ./install.sh [OPTION]..."
display_message "Manage the installation of libbitcoin-network."
display_message "Script options:"
display_message " --build-boost Builds Boost libraries."
display_message " --build-dir=<path> Location of downloaded and intermediate files."
display_message " --prefix=<absolute-path> Library install location (defaults to /usr/local)."
display_message " --disable-shared Disables shared library builds."
display_message " --disable-static Disables static library builds."
display_message " --help Display usage, overriding script execution."
display_message ""
display_message "All unrecognized options provided shall be passed as configuration options for "
display_message "all dependencies."
}
# Initialize the build environment.
#==============================================================================
# Exit this script on the first build error.
#------------------------------------------------------------------------------
set -e
# Parse command line options that are handled by this script.
#------------------------------------------------------------------------------
for OPTION in "$@"; do
case $OPTION in
# Standard script options.
(--help) DISPLAY_HELP="yes";;
# Standard build options.
(--prefix=*) PREFIX="${OPTION#*=}";;
(--disable-shared) DISABLE_SHARED="yes";;
(--disable-static) DISABLE_STATIC="yes";;
# Common project options.
# Custom build options (in the form of --build-<option>).
(--build-boost) BUILD_BOOST="yes";;
# Unique script options.
(--build-dir=*) BUILD_DIR="${OPTION#*=}";;
esac
done
# Configure build parallelism.
#------------------------------------------------------------------------------
SEQUENTIAL=1
OS=$(uname -s)
if [[ $PARALLEL ]]; then
display_message "Using shell-defined PARALLEL value."
elif [[ $OS == Linux ]]; then
PARALLEL=$(nproc)
elif [[ ($OS == Darwin) || ($OS == OpenBSD) ]]; then
PARALLEL=$(sysctl -n hw.ncpu)
else
display_error "Unsupported system: $OS"
display_error " Explicit shell-definition of PARALLEL will avoid system detection."
display_error ""
display_help
exit 1
fi
# Define operating system specific settings.
#------------------------------------------------------------------------------
if [[ $OS == Darwin ]]; then
export CC="clang"
export CXX="clang++"
STDLIB="c++"
elif [[ $OS == OpenBSD ]]; then
make() { gmake "$@"; }
export CC="egcc"
export CXX="eg++"
STDLIB="estdc++"
else # Linux
STDLIB="stdc++"
fi
# Link to appropriate standard library in non-default scnearios.
#------------------------------------------------------------------------------
if [[ ($OS == Linux && $CC == "clang") || ($OS == OpenBSD) ]]; then
export LDLIBS="-l$STDLIB $LDLIBS"
export CXXFLAGS="-stdlib=lib$STDLIB $CXXFLAGS"
fi
# Normalize of static and shared options.
#------------------------------------------------------------------------------
if [[ $DISABLE_SHARED ]]; then
CONFIGURE_OPTIONS=("$@" "--enable-static")
elif [[ $DISABLE_STATIC ]]; then
CONFIGURE_OPTIONS=("$@" "--enable-shared")
else
CONFIGURE_OPTIONS=("$@" "--enable-shared")
CONFIGURE_OPTIONS=("$@" "--enable-static")
fi
# Purge custom build options so they don't break configure.
#------------------------------------------------------------------------------
CONFIGURE_OPTIONS=("${CONFIGURE_OPTIONS[@]/--build-*/}")
# Always set a prefix (required on OSX and for lib detection).
#------------------------------------------------------------------------------
if [[ ! ($PREFIX) ]]; then
PREFIX="/usr/local"
CONFIGURE_OPTIONS=( "${CONFIGURE_OPTIONS[@]}" "--prefix=$PREFIX")
else
# Incorporate the custom libdir into each object, for runtime resolution.
export LD_RUN_PATH="$PREFIX/lib"
fi
# Incorporate the prefix.
#------------------------------------------------------------------------------
# Set the prefix-based package config directory.
PREFIX_PKG_CONFIG_DIR="$PREFIX/lib/pkgconfig"
# Prioritize prefix package config in PKG_CONFIG_PATH search path.
export PKG_CONFIG_PATH="$PREFIX_PKG_CONFIG_DIR:$PKG_CONFIG_PATH"
# Set a package config save path that can be passed via our builds.
with_pkgconfigdir="--with-pkgconfigdir=$PREFIX_PKG_CONFIG_DIR"
if [[ $BUILD_BOOST ]]; then
# Boost has no pkg-config, m4 searches in the following order:
# --with-boost=<path>, /usr, /usr/local, /opt, /opt/local, $BOOST_ROOT.
# We use --with-boost to prioritize the --prefix path when we build it.
# Otherwise standard paths suffice for Linux, Homebrew and MacPorts.
# ax_boost_base.m4 appends /include and adds to BOOST_CPPFLAGS
# ax_boost_base.m4 searches for /lib /lib64 and adds to BOOST_LDFLAGS
with_boost="--with-boost=$PREFIX"
fi
display_configuration()
{
display_message "libbitcoin-network installer configuration."
display_message "--------------------------------------------------------------------"
display_message "OS : $OS"
display_message "PARALLEL : $PARALLEL"
display_message "CC : $CC"
display_message "CXX : $CXX"
display_message "CPPFLAGS : $CPPFLAGS"
display_message "CFLAGS : $CFLAGS"
display_message "CXXFLAGS : $CXXFLAGS"
display_message "LDFLAGS : $LDFLAGS"
display_message "LDLIBS : $LDLIBS"
display_message "BUILD_BOOST : $BUILD_BOOST"
display_message "BUILD_DIR : $BUILD_DIR"
display_message "PREFIX : $PREFIX"
display_message "DISABLE_SHARED : $DISABLE_SHARED"
display_message "DISABLE_STATIC : $DISABLE_STATIC"
display_message "with_boost : ${with_boost}"
display_message "with_pkgconfigdir : ${with_pkgconfigdir}"
display_message "--------------------------------------------------------------------"
}
# Define build options.
#==============================================================================
# Define boost options.
#------------------------------------------------------------------------------
BOOST_OPTIONS=(
"--with-atomic" \
"--with-chrono" \
"--with-date_time" \
"--with-filesystem" \
"--with-iostreams" \
"--with-locale" \
"--with-log" \
"--with-program_options" \
"--with-regex" \
"--with-system" \
"--with-thread" \
"--with-test")
# Define secp256k1 options.
#------------------------------------------------------------------------------
SECP256K1_OPTIONS=(
"--disable-tests" \
"--enable-module-recovery" \
"--enable-endomorphism")
# Define bitcoin-system options.
#------------------------------------------------------------------------------
BITCOIN_SYSTEM_OPTIONS=(
"--without-tests" \
"--without-examples" \
"${with_boost}" \
"${with_pkgconfigdir}")
# Define bitcoin-network options.
#------------------------------------------------------------------------------
BITCOIN_NETWORK_OPTIONS=(
"${with_boost}" \
"${with_pkgconfigdir}")
# Define build functions.
#==============================================================================
# Because PKG_CONFIG_PATH doesn't get updated by Homebrew or MacPorts.
initialize_icu_packages()
{
if [[ ($OS == Darwin) ]]; then
# Update PKG_CONFIG_PATH for ICU package installations on OSX.
# OSX provides libicucore.dylib with no pkgconfig and doesn't support
# renaming or important features, so we can't use that.
local HOMEBREW_ICU_PKG_CONFIG="/usr/local/opt/icu4c/lib/pkgconfig"
local MACPORTS_ICU_PKG_CONFIG="/opt/local/lib/pkgconfig"
if [[ -d "$HOMEBREW_ICU_PKG_CONFIG" ]]; then
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$HOMEBREW_ICU_PKG_CONFIG"
elif [[ -d "$MACPORTS_ICU_PKG_CONFIG" ]]; then
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$MACPORTS_ICU_PKG_CONFIG"
fi
fi
}
# Because ZLIB doesn't actually parse its --disable-shared option.
# Because ZLIB doesn't follow GNU recommentation for unknown arguments.
patch_zlib_configuration()
{
sed -i.tmp "s/leave 1/shift/" configure
sed -i.tmp "s/--static/--static | --disable-shared/" configure
sed -i.tmp "/unknown option/d" configure
sed -i.tmp "/help for help/d" configure
# display_message "Hack: ZLIB configuration options modified."
}
# Because ZLIB can't build shared only.
clean_zlib_build()
{
if [[ $DISABLE_STATIC ]]; then
rm --force "$PREFIX/lib/libz.a"
fi
}
# Standard build from tarball.
build_from_tarball()
{
local URL=$1
local ARCHIVE=$2
local COMPRESSION=$3
local PUSH_DIR=$4
local JOBS=$5
local BUILD=$6
local OPTIONS=$7
shift 7
# For some platforms we need to set ICU pkg-config path.
if [[ ! ($BUILD) ]]; then
if [[ $ARCHIVE == "$ICU_ARCHIVE" ]]; then
initialize_icu_packages
fi
return
fi
# Because libpng doesn't actually use pkg-config to locate zlib.
# Because ICU tools don't know how to locate internal dependencies.
if [[ ($ARCHIVE == "$ICU_ARCHIVE") || ($ARCHIVE == "$PNG_ARCHIVE") ]]; then
local SAVE_LDFLAGS="$LDFLAGS"
export LDFLAGS="-L$PREFIX/lib $LDFLAGS"
fi
# Because libpng doesn't actually use pkg-config to locate zlib.h.
if [[ ($ARCHIVE == "$PNG_ARCHIVE") ]]; then
local SAVE_CPPFLAGS="$CPPFLAGS"
export CPPFLAGS="-I$PREFIX/include $CPPFLAGS"
fi
display_heading_message "Download $ARCHIVE"
# Use the suffixed archive name as the extraction directory.
local EXTRACT="build-$ARCHIVE"
push_directory "$BUILD_DIR"
create_directory "$EXTRACT"
push_directory "$EXTRACT"
# Extract the source locally.
wget --output-document "$ARCHIVE" "$URL"
tar --extract --file "$ARCHIVE" "--$COMPRESSION" --strip-components=1
push_directory "$PUSH_DIR"
# Enable static only zlib build.
if [[ $ARCHIVE == "$ZLIB_ARCHIVE" ]]; then
patch_zlib_configuration
fi
# Join generated and command line options.
local CONFIGURATION=("${OPTIONS[@]}" "$@")
if [[ $ARCHIVE == "$MBEDTLS_ARCHIVE" ]]; then
make -j "$JOBS" lib
make DESTDIR=$PREFIX install
else
configure_options "${CONFIGURATION[@]}"
make_jobs "$JOBS" --silent
make install
fi
configure_links
# Enable shared only zlib build.
if [[ $ARCHIVE == "$ZLIB_ARCHIVE" ]]; then
clean_zlib_build
fi
pop_directory
pop_directory
# Restore flags to prevent side effects.
export LDFLAGS=$SAVE_LDFLAGS
export CPPFLAGS=$SAVE_CPPFLAGS
pop_directory
}
# Because boost ICU detection assumes in incorrect ICU path.
circumvent_boost_icu_detection()
{
# Boost expects a directory structure for ICU which is incorrect.
# Boost ICU discovery fails when using prefix, can't fix with -sICU_LINK,
# so we rewrite the two 'has_icu_test.cpp' files to always return success.
local SUCCESS="int main() { return 0; }"
local REGEX_TEST="libs/regex/build/has_icu_test.cpp"
local LOCALE_TEST="libs/locale/build/has_icu_test.cpp"
printf "%s" "$SUCCESS" > $REGEX_TEST
printf "%s" "$SUCCESS" > $LOCALE_TEST
# display_message "Hack: ICU detection modified, will always indicate found."
}
# Because boost doesn't support autoconfig and doesn't like empty settings.
initialize_boost_configuration()
{
if [[ $DISABLE_STATIC ]]; then
BOOST_LINK="shared"
elif [[ $DISABLE_SHARED ]]; then
BOOST_LINK="static"
else
BOOST_LINK="static,shared"
fi
if [[ $CC ]]; then
BOOST_TOOLSET="toolset=$CC"
fi
if [[ ($OS == Linux && $CC == "clang") || ($OS == OpenBSD) ]]; then
STDLIB_FLAG="-stdlib=lib$STDLIB"
BOOST_CXXFLAGS="cxxflags=$STDLIB_FLAG"
BOOST_LINKFLAGS="linkflags=$STDLIB_FLAG"
fi
}
# Because boost doesn't use pkg-config.
initialize_boost_icu_configuration()
{
BOOST_ICU_ICONV="on"
BOOST_ICU_POSIX="on"
if [[ $WITH_ICU ]]; then
circumvent_boost_icu_detection
# Restrict other locale options when compiling boost with icu.
BOOST_ICU_ICONV="off"
BOOST_ICU_POSIX="off"
# Extract ICU libs from package config variables and augment with -ldl.
ICU_LIBS="$(pkg-config icu-i18n --libs) -ldl"
# This is a hack for boost m4 scripts that fail with ICU dependency.
# See custom edits in ax-boost-locale.m4 and ax_boost_regex.m4.
export BOOST_ICU_LIBS=("${ICU_LIBS[@]}")
# Extract ICU prefix directory from package config variable.
ICU_PREFIX=$(pkg-config icu-i18n --variable=prefix)
fi
}
# Because boost doesn't use autoconfig.
build_from_tarball_boost()
{
local SAVE_IFS="$IFS"
IFS=' '
local URL=$1
local ARCHIVE=$2
local COMPRESSION=$3
local PUSH_DIR=$4
local JOBS=$5
local BUILD=$6
shift 6
if [[ ! ($BUILD) ]]; then
return
fi
display_heading_message "Download $ARCHIVE"
# Use the suffixed archive name as the extraction directory.
local EXTRACT="build-$ARCHIVE"
push_directory "$BUILD_DIR"
create_directory "$EXTRACT"
push_directory "$EXTRACT"
# Extract the source locally.
wget --output-document "$ARCHIVE" "$URL"
tar --extract --file "$ARCHIVE" "--$COMPRESSION" --strip-components=1
initialize_boost_configuration
initialize_boost_icu_configuration
display_message "Libbitcoin boost configuration."
display_message "--------------------------------------------------------------------"
display_message "variant : release"
display_message "threading : multi"
display_message "toolset : $CC"
display_message "cxxflags : $STDLIB_FLAG"
display_message "linkflags : $STDLIB_FLAG"
display_message "link : $BOOST_LINK"
display_message "boost.locale.iconv : $BOOST_ICU_ICONV"
display_message "boost.locale.posix : $BOOST_ICU_POSIX"
display_message "-sNO_BZIP2 : 1"
display_message "-sICU_PATH : $ICU_PREFIX"
display_message "-sICU_LINK : " "${ICU_LIBS[*]}"
display_message "-sZLIB_LIBPATH : $PREFIX/lib"
display_message "-sZLIB_INCLUDE : $PREFIX/include"
display_message "-j : $JOBS"
display_message "-d0 : [supress informational messages]"
display_message "-q : [stop at the first error]"
display_message "--reconfigure : [ignore cached configuration]"
display_message "--prefix : $PREFIX"
display_message "BOOST_OPTIONS : $*"
display_message "--------------------------------------------------------------------"
# boost_iostreams
# The zlib options prevent boost linkage to system libs in the case where
# we have built zlib in a prefix dir. Disabling zlib in boost is broken in
# all versions (through 1.60). https://svn.boost.org/trac/boost/ticket/9156
# The bzip2 auto-detection is not implemented, but disabling it works.
./bootstrap.sh \
"--prefix=$PREFIX" \
"--with-icu=$ICU_PREFIX"
./b2 install \
"variant=release" \
"threading=multi" \
"$BOOST_TOOLSET" \
"$BOOST_CXXFLAGS" \
"$BOOST_LINKFLAGS" \
"link=$BOOST_LINK" \
"boost.locale.iconv=$BOOST_ICU_ICONV" \
"boost.locale.posix=$BOOST_ICU_POSIX" \
"-sNO_BZIP2=1" \
"-sICU_PATH=$ICU_PREFIX" \
"-sICU_LINK=${ICU_LIBS[*]}" \
"-sZLIB_LIBPATH=$PREFIX/lib" \
"-sZLIB_INCLUDE=$PREFIX/include" \
"-j $JOBS" \
"-d0" \
"-q" \
"--reconfigure" \
"--prefix=$PREFIX" \
"$@"
pop_directory
pop_directory
IFS="$SAVE_IFS"
}
# Standard build from github.
build_from_github()
{
push_directory "$BUILD_DIR"
local ACCOUNT=$1
local REPO=$2
local BRANCH=$3
local JOBS=$4
local OPTIONS=$5
shift 5
FORK="$ACCOUNT/$REPO"
display_heading_message "Download $FORK/$BRANCH"
# Clone the repository locally.
git clone --depth 1 --branch "$BRANCH" --single-branch "https://github.com/$FORK"
# Join generated and command line options.
local CONFIGURATION=("${OPTIONS[@]}" "$@")
# Build the local repository clone.
push_directory "$REPO"
make_current_directory "$JOBS" "${CONFIGURATION[@]}"
pop_directory
pop_directory
}
# Standard build of current directory.
build_from_local()
{
local MESSAGE="$1"
local JOBS=$2
local OPTIONS=$3
shift 3
display_heading_message "$MESSAGE"
# Join generated and command line options.
local CONFIGURATION=("${OPTIONS[@]}" "$@")
# Build the current directory.
make_current_directory "$JOBS" "${CONFIGURATION[@]}"
}
# Because Travis alread has downloaded the primary repo.
build_from_travis()
{
local ACCOUNT=$1
local REPO=$2
local BRANCH=$3
local JOBS=$4
local OPTIONS=$5
shift 5
# The primary build is not downloaded if we are running in Travis.
if [[ $TRAVIS == true ]]; then
build_from_local "Local $TRAVIS_REPO_SLUG" "$JOBS" "${OPTIONS[@]}" "$@"
make_tests "$JOBS"
else
build_from_github "$ACCOUNT" "$REPO" "$BRANCH" "$JOBS" "${OPTIONS[@]}" "$@"
push_directory "$BUILD_DIR"
push_directory "$REPO"
make_tests "$JOBS"
pop_directory
pop_directory
fi
}
# The master build function.
#==============================================================================
build_all()
{
build_from_tarball_boost "$BOOST_URL" "$BOOST_ARCHIVE" bzip2 . "$PARALLEL" "$BUILD_BOOST" "${BOOST_OPTIONS[@]}"
build_from_github libbitcoin secp256k1 version6 "$PARALLEL" "${SECP256K1_OPTIONS[@]}" "$@"
build_from_github libbitcoin libbitcoin-system master "$PARALLEL" "${BITCOIN_SYSTEM_OPTIONS[@]}" "$@"
build_from_travis libbitcoin libbitcoin-network master "$PARALLEL" "${BITCOIN_NETWORK_OPTIONS[@]}" "$@"
}
# Build the primary library and all dependencies.
#==============================================================================
if [[ $DISPLAY_HELP ]]; then
display_help
else
display_configuration
create_directory "$BUILD_DIR"
push_directory "$BUILD_DIR"
initialize_git
pop_directory
time build_all "${CONFIGURE_OPTIONS[@]}"
fi