-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheosio_build_centos.sh
773 lines (744 loc) · 24.3 KB
/
eosio_build_centos.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
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
OS_VER=$( grep VERSION_ID /etc/os-release | cut -d'=' -f2 | sed 's/[^0-9\.]//gI' \
| cut -d'.' -f1 )
MEM_MEG=$( free -m | sed -n 2p | tr -s ' ' | cut -d\ -f2 )
CPU_SPEED=$( lscpu | grep "MHz" | tr -s ' ' | cut -d\ -f3 | cut -d'.' -f1 )
CPU_CORE=$( lscpu -pCPU | grep -v "#" | wc -l )
MEM_GIG=$(( ((MEM_MEG / 1000) / 2) ))
JOBS=$(( MEM_GIG > CPU_CORE ? CPU_CORE : MEM_GIG ))
DISK_INSTALL=$( df -h . | tail -1 | tr -s ' ' | cut -d\ -f1 )
DISK_TOTAL_KB=$( df . | tail -1 | awk '{print $2}' )
DISK_AVAIL_KB=$( df . | tail -1 | awk '{print $4}' )
DISK_TOTAL=$(( DISK_TOTAL_KB / 1048576 ))
DISK_AVAIL=$(( DISK_AVAIL_KB / 1048576 ))
printf "\\n\\tOS name: %s\\n" "${OS_NAME}"
printf "\\tOS Version: %s\\n" "${OS_VER}"
printf "\\tCPU speed: %sMhz\\n" "${CPU_SPEED}"
printf "\\tCPU cores: %s\\n" "${CPU_CORE}"
printf "\\tPhysical Memory: %s Mgb\\n" "${MEM_MEG}"
printf "\\tDisk install: %s\\n" "${DISK_INSTALL}"
printf "\\tDisk space total: %sG\\n" "${DISK_TOTAL%.*}"
printf "\\tDisk space available: %sG\\n" "${DISK_AVAIL%.*}"
if [ "${MEM_MEG}" -lt 7000 ]; then
printf "\\n\\tYour system must have 7 or more Gigabytes of physical memory installed.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if [ "${OS_VER}" -lt 7 ]; then
printf "\\n\\tYou must be running Centos 7 or higher to install EOSIO.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if [ "${DISK_AVAIL%.*}" -lt "${DISK_MIN}" ]; then
printf "\\n\\tYou must have at least %sGB of available storage to install EOSIO.\\n" "${DISK_MIN}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\n\\tChecking Yum installation\\n"
if ! YUM=$( command -v yum 2>/dev/null )
then
printf "\\n\\tYum must be installed to compile EOS.IO.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\tYum installation found at %s.\\n" "${YUM}"
printf "\\n\\tChecking installation of Centos Software Collections Repository.\\n"
SCL=$( command -v scl 2>/dev/null )
if [ -z "${SCL}" ]; then
printf "\\n\\tThe Centos Software Collections Repository, devtoolset-7 and Python3 are required to install EOSIO.\\n"
printf "\\tDo you wish to install and enable this repository, devtoolset-7 and Python3 packages?\\n"
select yn in "Yes" "No"; do
case $yn in
[Yy]* )
printf "\\n\\n\\tInstalling SCL.\\n\\n"
if ! sudo "${YUM}" -y --enablerepo=extras install centos-release-scl 2>/dev/null
then
printf "\\n\\tCentos Software Collections Repository installation failed.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
else
printf "\\n\\tCentos Software Collections Repository installed successfully.\\n"
fi
printf "\\n\\n\\tInstalling devtoolset-7.\\n\\n"
if ! sudo "${YUM}" install -y devtoolset-7 2>/dev/null
then
printf "\\n\\tCentos devtoolset-7 installation failed.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
else
printf "\\n\\tCentos devtoolset installed successfully.\\n"
fi
printf "\\n\\n\\tInstalling Python3.\\n\\n"
if ! sudo "${YUM}" install -y python33.x86_64 2>/dev/null
then
printf "\\n\\tCentos Python3 installation failed.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
else
printf "\\n\\tCentos Python3 installed successfully.\\n"
fi
break;;
[Nn]* ) echo "User aborting installation of required Centos Software Collections Repository, Exiting now."; exit;;
* ) echo "Please type 1 for yes or 2 for no.";;
esac
done
else
printf "\\tCentos Software Collections Repository found.\\n\\n"
fi
printf "\\n\\tEnabling Centos devtoolset-7.\\n"
# shellcheck disable=SC1091
if ! source "/opt/rh/devtoolset-7/enable" 2>/dev/null
then
printf "\\n\\tUnable to enable Centos devtoolset-7 at this time.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\tCentos devtoolset-7 successfully enabled.\\n\\n"
# printf "\\n\\tEnabling Centos python3 installation.\\n"
# shellcheck disable=SC1091
# if ! source /opt/rh/python33/enable
# then
# printf "\\n\\tUnable to enable Centos python3 at this time.\\n"
# printf "\\n\\tExiting now.\\n\\n"
# exit 1;
# fi
# printf "\\tCentos python3 successfully enabled.\\n"
printf "\\n\\tUpdating YUM repository.\\n\\n"
if ! sudo "${YUM}" -y update 2>/dev/null
then
printf "\\n\\tYUM update failed.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\n\\tYUM repository successfully updated.\\n\\n"
DEP_ARRAY=( git autoconf automake bzip2 libtool ocaml.x86_64 doxygen graphviz-devel.x86_64 \
libicu-devel.x86_64 bzip2.x86_64 bzip2-devel.x86_64 openssl-devel.x86_64 gmp-devel.x86_64 \
python-devel.x86_64 gettext-devel.x86_64)
COUNT=1
DISPLAY=""
DEP=""
printf "\\n\\tChecking YUM for installed dependencies.\\n\\n"
for (( i=0; i<${#DEP_ARRAY[@]}; i++ ));
do
pkg=$( sudo "${YUM}" info "${DEP_ARRAY[$i]}" 2>/dev/null | grep Repo | tr -s ' ' | cut -d: -f2 | sed 's/ //g' )
if [ "$pkg" != "installed" ]; then
DEP=$DEP" ${DEP_ARRAY[$i]} "
DISPLAY="${DISPLAY}${COUNT}. ${DEP_ARRAY[$i]}\\n\\t"
printf "\\tPackage %s ${bldred} NOT ${txtrst} found.\\n" "${DEP_ARRAY[$i]}"
(( COUNT++ ))
else
printf "\\tPackage %s found.\\n" "${DEP_ARRAY[$i]}"
continue
fi
done
if [ "${COUNT}" -gt 1 ]; then
printf "\\n\\tThe following dependencies are required to install EOSIO.\\n"
printf "\\n\\t${DISPLAY}\\n\\n"
printf "\\tDo you wish to install these dependencies?\\n"
select yn in "Yes" "No"; do
case $yn in
[Yy]* )
printf "\\n\\n\\tInstalling dependencies\\n\\n"
if ! sudo "${YUM}" -y install ${DEP}
then
printf "\\n\\tYUM dependency installation failed.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
else
printf "\\n\\tYUM dependencies installed successfully.\\n"
fi
break;;
[Nn]* ) echo "User aborting installation of required dependencies, Exiting now."; exit;;
* ) echo "Please type 1 for yes or 2 for no.";;
esac
done
else
printf "\\n\\tNo required YUM dependencies to install.\\n"
fi
if [ "${ENABLE_COVERAGE_TESTING}" = true ]; then
printf "\\n\\tChecking perl installation.\\n"
perl_bin=$( command -v perl 2>/dev/null )
if [ -z "${perl_bin}" ]; then
printf "\\n\\tInstalling perl.\\n"
if ! sudo "${YUM}" -y install perl
then
printf "\\n\\tUnable to install perl at this time.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
else
printf "\\tPerl installation found at %s.\\n" "${perl_bin}"
fi
printf "\\n\\tChecking LCOV installation.\\n"
lcov=$( command -v lcov 2>/dev/null )
if [ -z "${lcov}" ]; then
printf "\\n\\tLCOV installation not found.\\n"
printf "\\tInstalling LCOV.\\n"
if ! cd "${TEMP_DIR}"
then
printf "\\tUnable to enter directory %s.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! git clone https://github.com/linux-test-project/lcov.git
then
printf "\\tUnable to clone LCOV at this time.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}/lcov"
then
printf "\\tUnable to enter directory %s/lcov.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! sudo make install
then
printf "\\tUnable to install LCOV at this time.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${CWD}"
then
printf "\\tUnable to enter directory %s.\\n" "${CWD}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! rm -rf "${TEMP_DIR}/lcov"
then
printf "\\tUnable to remove directory %s/lcov.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\n\\tSuccessfully installed LCOV.\\n"
else
printf "\\tLCOV installation found @ %s.\\n" "${lcov}"
fi
fi
printf "\\n\\tChecking CMAKE installation.\\n"
if [ ! -e "${CMAKE}" ]; then
printf "\\tInstalling CMAKE\\n"
if [ ! -d "${HOME}/opt" ]; then
if ! mkdir "${HOME}/opt"
then
printf "\\tUnable to create directory %s/opt.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
fi
if ! cd "${HOME}/opt"
then
printf "\\tUnable to enter directory %s/opt.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
STATUS=$(curl -LO -w '%{http_code}' --connect-timeout 30 https://cmake.org/files/v3.10/cmake-3.10.2.tar.gz)
if [ "${STATUS}" -ne 200 ]; then
printf "\\tUnable to download CMAKE at this time.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! tar xf "${HOME}/opt/cmake-3.10.2.tar.gz"
then
printf "\\tUnable to unarchive %s/opt/cmake-3.10.2.tar.gz.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! rm -f "${HOME}/opt/cmake-3.10.2.tar.gz"
then
printf "\\tUnable to remove %s/opt/cmake-3.10.2.tar.gz.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! ln -s "${HOME}/opt/cmake-3.10.2/" "${HOME}/opt/cmake"
then
printf "\\tUnable to symlink %s/opt/cmake-3.10.2 to %s/opt/cmake-3.10.2/cmake.\\n" "${HOME}" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${HOME}/opt/cmake"
then
printf "\\tUnable to enter directory %s/opt/cmake.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! ./bootstrap
then
printf "\\tError running bootstrap for CMAKE.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! make -j"${JOBS}"
then
printf "\\tCompiling CMAKE has exited with the above error.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\tCMAKE successfully installed @ %s.\\n\\n" "${CMAKE}"
else
printf "\\tCMAKE found @ %s.\\n" "${CMAKE}"
fi
if [ -d "${HOME}/opt/boost_1_67_0" ]; then
if ! mv "${HOME}/opt/boost_1_67_0" "${BOOST_ROOT}"
then
printf "\\n\\tUnable to move directory %s/opt/boost_1_67_0 to %s.\\n" "${HOME}" "${BOOST_ROOT}"
printf "\\n\\tExiting now.\\n"
exit 1
fi
if [ -d "$BUILD_DIR" ]; then
if ! rm -rf "$BUILD_DIR"
then
printf "\\tUnable to remove directory %s. Please remove this directory and run this script %s again. 0\\n" "$BUILD_DIR" "${BASH_SOURCE[0]}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
fi
fi
printf "\\n\\tChecking boost library installation.\\n"
BVERSION=$( grep "#define BOOST_VERSION" "${BOOST_ROOT}/include/boost/version.hpp" 2>/dev/null \
| tail -1 | tr -s ' ' | cut -d\ -f3)
if [ "${BVERSION}" != "106700" ]; then
printf "\\tRemoving existing boost libraries in %s/opt/boost* .\\n" "${HOME}"
if ! rm -rf "${HOME}"/opt/boost*
then
printf "\\n\\tUnable to remove deprecated boost libraries at %s/opt/boost*.\\n" "${HOME}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\tInstalling boost libraries.\\n"
if ! cd "${TEMP_DIR}"
then
printf "\\n\\tUnable to enter directory %s.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
STATUS=$(curl -LO -w '%{http_code}' --connect-timeout 30 https://dl.bintray.com/boostorg/release/1.67.0/source/boost_1_67_0.tar.bz2)
if [ "${STATUS}" -ne 200 ]; then
printf "\\tUnable to download Boost libraries at this time.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! tar xf "${TEMP_DIR}/boost_1_67_0.tar.bz2"
then
printf "\\n\\tUnable to unarchive file %s/boost_1_67_0.tar.bz2.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! rm -f "${TEMP_DIR}/boost_1_67_0.tar.bz2"
then
printf "\\n\\tUnable to remove file %s/boost_1_67_0.tar.bz2.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}/boost_1_67_0/"
then
printf "\\n\\tUnable to enter directory %s/boost_1_67_0.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! ./bootstrap.sh "--prefix=$BOOST_ROOT"
then
printf "\\n\\tInstallation of boost libraries failed with the above error. 0\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! "${TEMP_DIR}"/boost_1_67_0/b2 -j"${CPU_CORE}" install
then
printf "\\n\\tInstallation of boost libraries failed with the above error. 1\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! rm -rf "${TEMP_DIR}/boost_1_67_0/"
then
printf "\\n\\tUnable to remove directory %s/boost_1_67_0.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if [ -d "$BUILD_DIR" ]; then
if ! rm -rf "$BUILD_DIR"
then
printf "\\tUnable to remove directory %s. Please remove this directory and run this script %s again. 0\\n" "$BUILD_DIR" "${BASH_SOURCE[0]}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
fi
printf "\\tBoost successfully installed @ %s.\\n" "${BOOST_ROOT}"
else
printf "\\tBoost 1.67.0 found at %s.\\n\\n" "${BOOST_ROOT}"
fi
printf "\\n\\tChecking MongoDB installation.\\n"
if [ ! -e "${MONGOD_CONF}" ]; then
printf "\\n\\tInstalling MongoDB 3.6.3.\\n\\n"
if [ ! -d "${HOME}/opt" ]; then
if ! mkdir "${HOME}/opt"
then
printf "\\tUnable to create directory %s/opt.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
fi
if ! cd "${HOME}/opt"
then
printf "\\tUnable to enter directory %s/opt.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
STATUS=$(curl -LO -w '%{http_code}' --connect-timeout 30 https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.3.tgz)
if [ "${STATUS}" -ne 200 ]; then
printf "\\tUnable to download MongoDB at this time.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! tar xf "${HOME}/opt/mongodb-linux-x86_64-3.6.3.tgz"
then
printf "\\tUnable to unarchive file %s/opt/mongodb-linux-x86_64-3.6.3.tgz.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! rm -f "${HOME}/opt/mongodb-linux-x86_64-3.6.3.tgz"
then
printf "\\tUnable to remove file %s/opt/mongodb-linux-x86_64-3.6.3.tgz.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! ln -s "${HOME}/opt/mongodb-linux-x86_64-3.6.3/" "${HOME}/opt/mongodb"
then
printf "\\tUnable to symlink file %s/opt/mongodb-linux-x86_64-3.6.3 to %s/opt/mongodb.\\n" "${HOME}" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! mkdir "${HOME}/opt/mongodb/data"
then
printf "\\tUnable to create directory %s/opt/mongodb/data.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! mkdir "${HOME}/opt/mongodb/log"
then
printf "\\tUnable to create directory %s/opt/mongodb/log.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! touch "${HOME}/opt/mongodb/log/mongodb.log"
then
printf "\\tUnable to create file %s/opt/mongodb/log/mongodb.log.\\n" "${HOME}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! tee > /dev/null "${MONGOD_CONF}" <<mongodconf
systemLog:
destination: file
path: ${HOME}/opt/mongodb/log/mongodb.log
logAppend: true
logRotate: reopen
net:
bindIp: 127.0.0.1,::1
ipv6: true
storage:
dbPath: ${HOME}/opt/mongodb/data
mongodconf
then
printf "\\tUnable to write to file %s.\\n" "${MONGOD_CONF}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\n\\tMongoDB successfully installed @ %s/opt/mongodb.\\n\\n" "${HOME}"
else
printf "\\tMongoDB config found at %s.\\n\\n" "${MONGOD_CONF}"
fi
printf "\\n\\tChecking MongoDB C++ driver installation.\\n"
MONGO_INSTALL=true
if [ -e "/usr/local/lib64/libmongocxx-static.a" ]; then
MONGO_INSTALL=false
if [ ! -f /usr/local/lib64/pkgconfig/libmongocxx-static.pc ]; then
MONGO_INSTALL=true
else
if ! version=$( grep "Version:" /usr/local/lib64/pkgconfig/libmongocxx-static.pc | tr -s ' ' | awk '{print $2}' )
then
printf "\\tUnable to determine mongodb-cxx-driver version.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
maj=$( echo "${version}" | cut -d'.' -f1 )
min=$( echo "${version}" | cut -d'.' -f2 )
if [ "${maj}" -gt 3 ]; then
MONGO_INSTALL=true
elif [ "${maj}" -eq 3 ] && [ "${min}" -lt 3 ]; then
MONGO_INSTALL=true
fi
fi
fi
if [ $MONGO_INSTALL == "true" ]; then
if ! cd "${TEMP_DIR}"
then
printf "\\tUnable to enter directory %s.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
STATUS=$( curl -LO -w '%{http_code}' --connect-timeout 30 https://github.com/mongodb/mongo-c-driver/releases/download/1.10.2/mongo-c-driver-1.10.2.tar.gz )
if [ "${STATUS}" -ne 200 ]; then
if ! rm -f "${TEMP_DIR}/mongo-c-driver-1.10.2.tar.gz"
then
printf "\\tUnable to remove file %s/mongo-c-driver-1.10.2.tar.gz.\\n" "${TEMP_DIR}"
fi
printf "\\tUnable to download MongoDB C driver at this time.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! tar xf mongo-c-driver-1.10.2.tar.gz
then
printf "\\tUnable to unarchive file %s/mongo-c-driver-1.10.2.tar.gz.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! rm -f "${TEMP_DIR}/mongo-c-driver-1.10.2.tar.gz"
then
printf "\\tUnable to remove file mongo-c-driver-1.10.2.tar.gz.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}"/mongo-c-driver-1.10.2
then
printf "\\tUnable to cd into directory %s/mongo-c-driver-1.10.2.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! mkdir cmake-build
then
printf "\\tUnable to create directory %s/mongo-c-driver-1.10.2/cmake-build.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd cmake-build
then
printf "\\tUnable to enter directory %s/mongo-c-driver-1.10.2/cmake-build.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! "${CMAKE}" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DENABLE_BSON=ON \
-DENABLE_SSL=OPENSSL -DENABLE_AUTOMATIC_INIT_AND_CLEANUP=OFF -DENABLE_STATIC=ON ..
then
printf "\\tConfiguring MongoDB C driver has encountered the errors above.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! make -j"${CPU_CORE}"
then
printf "\\tError compiling MongoDB C driver.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! sudo make install
then
printf "\\tError installing MongoDB C driver.\\nMake sure you have sudo privileges.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}"
then
printf "\\tUnable to enter directory %s.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! rm -rf "${TEMP_DIR}/mongo-c-driver-1.10.2"
then
printf "\\tUnable to remove directory %s/mongo-c-driver-1.10.2.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! git clone https://github.com/mongodb/mongo-cxx-driver.git --branch releases/v3.3 --depth 1
then
printf "\\tUnable to clone MongoDB C++ driver at this time.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}/mongo-cxx-driver/build"
then
printf "\\tUnable to enter directory %s/mongo-cxx-driver/build.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! "${CMAKE}" -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
then
printf "\\tCmake has encountered the above errors building the MongoDB C++ driver.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! sudo make -j"${CPU_CORE}"
then
printf "\\tError compiling MongoDB C++ driver.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! sudo make install
then
printf "\\tError installing MongoDB C++ driver.\\nMake sure you have sudo privileges.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}"
then
printf "\\tUnable to enter directory %s.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! sudo rm -rf "${TEMP_DIR}/mongo-cxx-driver"
then
printf "\\tUnable to remove directory %s/mongo-cxx-driver.\\n" "${TEMP_DIR}" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\tMongo C++ driver installed at /usr/local/lib64/libmongocxx-static.a.\\n"
else
printf "\\tMongo C++ driver found at /usr/local/lib64/libmongocxx-static.a.\\n"
fi
printf "\\n\\tChecking secp256k1-zkp installation.\\n"
# install secp256k1-zkp (Cryptonomex branch)
if [ ! -e "/usr/local/lib/libsecp256k1.a" ]; then
printf "\\tInstalling secp256k1-zkp (Cryptonomex branch).\\n"
if ! cd "${TEMP_DIR}"
then
printf "\\n\\tUnable to enter directory %s.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n"
exit 1;
fi
if ! git clone https://github.com/cryptonomex/secp256k1-zkp.git
then
printf "\\tUnable to clone repo secp256k1-zkp @ https://github.com/cryptonomex/secp256k1-zkp.git.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}/secp256k1-zkp"
then
printf "\\n\\tUnable to cd into directory %s/secp256k1-zkp.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n"
exit 1;
fi
if ! ./autogen.sh
then
printf "\\tError running autogen for secp256k1-zkp.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! ./configure
then
printf "\\tError running configure for secp256k1-zkp.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! make -j"${JOBS}"
then
printf "\\tError compiling secp256k1-zkp.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! sudo make install
then
printf "\\tError installing secp256k1-zkp.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if ! rm -rf "${TEMP_DIR}/secp256k1-zkp"
then
printf "\\tError removing directory %s/secp256k1-zkp.\\n" "${TEMP_DIR}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\n\\tsecp256k1 successfully installed @ /usr/local/lib.\\n\\n"
else
printf "\\tsecp256k1 found @ /usr/local/lib.\\n"
fi
printf "\\n\\tChecking LLVM with WASM support installation.\\n"
if [ ! -d "${HOME}/opt/wasm/bin" ]; then
printf "\\n\\tInstalling LLVM with WASM\\n"
if ! cd "${TEMP_DIR}"
then
printf "\\n\\tUnable to enter directory %s.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! mkdir "${TEMP_DIR}/llvm-compiler" 2>/dev/null
then
printf "\\n\\tUnable to create directory %s/llvm-compiler.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}/llvm-compiler"
then
printf "\\n\\tUnable to enter directory %s/llvm-compiler.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! git clone --depth 1 --single-branch --branch release_40 https://github.com/llvm-mirror/llvm.git
then
printf "\\tUnable to clone llvm repo @ https://github.com/llvm-mirror/llvm.git.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}/llvm-compiler/llvm/tools"
then
printf "\\n\\tUnable to enter directory %s/llvm-compiler/llvm/tools.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! git clone --depth 1 --single-branch --branch release_40 https://github.com/llvm-mirror/clang.git
then
printf "\\tUnable to clone clang repo @ https://github.com/llvm-mirror/clang.git.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}/llvm-compiler/llvm"
then
printf "\\n\\tUnable to enter directory %s/llvm-compiler/llvm.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! mkdir "${TEMP_DIR}/llvm-compiler/llvm/build" 2>/dev/null
then
printf "\\n\\tUnable to create directory %s/llvm-compiler/llvm/build.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! cd "${TEMP_DIR}/llvm-compiler/llvm/build"
then
printf "\\n\\tUnable to enter directory %s/llvm-compiler/llvm/build.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! "${CMAKE}" -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="${HOME}/opt/wasm" \
-DLLVM_TARGETS_TO_BUILD="host" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="WebAssembly" \
-DLLVM_ENABLE_RTTI=1 -DCMAKE_BUILD_TYPE="Release" ..
then
printf "\\tCMake has exited with the above error.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! make -j"${JOBS}"
then
printf "\\n\\tCompiling LLVM with EXPERIMENTAL WASM support has exited with the above errors.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! make install
then
printf "\\n\\tInstalling LLVM with EXPERIMENTAL WASM support has exited with the above errors.\\n"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
if ! rm -rf "${TEMP_DIR}/llvm-compiler" 2>/dev/null
then
printf "\\n\\tUnable to remove directory %s/llvm-compiler.\\n" "${TEMP_DIR}"
printf "\\n\\tExiting now.\\n\\n"
exit 1;
fi
printf "\\n\\tWASM compiler successfully installed at %s/opt/wasm\\n" "${HOME}"
else
printf "\\n\\tWASM found at %s/opt/wasm\\n" "${HOME}"
fi
function print_instructions()
{
printf "\\n\\t%s -f %s &\\n" "$( command -v mongod )" "${MONGOD_CONF}"
printf "\\tsource /opt/rh/python33/enable\\n"
printf '\texport PATH=${HOME}/opt/mongodb/bin:$PATH\n'
printf "\\tcd %s; make test\\n\\n" "${BUILD_DIR}"
return 0
}