forked from rethinkdb/rethinkdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure
executable file
·1338 lines (1222 loc) · 36 KB
/
configure
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
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env bash
# Copyright 2010-2015 RethinkDB, all rights reserved.
# This script detects the build settings local to the local build
# environment and saves them in the config.mk file.
#
# See ./configure --help for more information.
set -u
# Lists of dependencies and versions
init () {
min_gcc_version=$(read_version 4.7.4)
min_clang_version=0
min_icc_version=0
min_lessc_version=1.3.1
max_lessc_version=99.99.99
min_coffee_version=1.7.0
max_coffee_version=99.99.99
min_browserify_version=13.0.0
max_browserify_version=13.1.0
min_python_version=2.6.0
osx_min_version=10.9
min_msbuild_version=14.0
min_nmake_version=14.0
min_cl_version=19.0
must_fetch_list='v8'
please_fetch_list="handlebars gtest re2 $must_fetch_list"
optional_libs="gtest termcap boost_system"
required_libs="protobuf v8 re2 z crypto ssl curl"
other_libs="tcmalloc jemalloc"
all_libs="$required_libs $optional_libs $other_libs"
default_static="tcmalloc jemalloc"
web_assets_deps="npm coffee browserify"
required_bin_deps="protoc python"
optional_bin_deps="wget curl"
bin_deps="cxx $required_bin_deps $optional_bin_deps"
all_deps="$bin_deps $all_libs boost"
default_allocator_linux=jemalloc
default_allocator_osx=system
allowed_arg_vars="CXXFLAGS LDFLAGS PLATFORM MSBUILD VCVARSALL NMAKE"
}
# The main configuration steps
configure () {
require "Bash"
show "$BASH_VERSION"
var FETCH_LIST ""
var FETCH_VERSIONS ""
for var in $allowed_arg_vars; do
local val
if lookup "$arg_vars" $var val; then
require $var
var $var "$val"
fi
done
check_windows
if $windows; then
configure_windows
else
configure_unixlike
fi
require Installation prefix
var PREFIX ${arg_prefix:-/usr/local}
require Configuration prefix
var SYSCONFDIR ${arg_sysconfdir:-$PREFIX/etc}
require Runtime data prefix
var LOCALSTATEDIR ${arg_localstatedir:-$PREFIX/var}
}
configure_unixlike () {
var LIB_SEARCH_PATHS $(for path in $lib_paths; do echo " -L$path"; done)
require "Use ccache"
boolvar USE_CCACHE $use_ccache
check_cxx
require "Host System"
var MACHINE $($CXX -dumpmachine)
require "Build System"
show "`uname -msr`"
check_cross_compiling
require "Host Operating System"
case "${MACHINE#*-}" in
*apple-darwin*)
var OS "Darwin"
default_allocator=$default_allocator_osx
var PTHREAD_LIBS "" ;
var RT_LIBS "" ;;
*linux*)
var OS "Linux"
default_allocator=$default_allocator_linux
var PTHREAD_LIBS -pthread ;
var RT_LIBS -lrt ;;
*) error "unsupported operating system: $MACHINE" ;;
esac
case "${MACHINE%%-*}" in
x86_64|i?86)
true ;;
arm*|arm64*|aarch64*)
var_append LDFLAGS -ldl
final_warning="ARM support is still experimental" ;;
s390x)
final_warning="s390x support is still experimental" ;;
ppc64le|powerpc64le|powerpc64el)
final_warning="PowerPC support is still experimental" ;;
*)
error "unsupported architecture: $MACHINE"
esac
var M_LIBS -lm
require "Build Architecture"
var GCC_ARCH $(uname -m | grep '^[A-Za-z0-9_]*$' | head -n 1)
var GCC_ARCH_REDUCED $(echo "$GCC_ARCH" | sed -e 's/^i[56]86$$/i486/g')
if [ "$COMPILER" = CLANG ]; then
require stdlib
case "$OS" in
Darwin) var_append LDFLAGS -stdlib=libc++ -lc++
var_append LDFLAGS -mmacosx-version-min="$osx_min_version"
var_append CFLAGS -mmacosx-version-min="$osx_min_version"
var_append CXXFLAGS -stdlib=libc++
var_append CXXFLAGS -mmacosx-version-min="$osx_min_version" ;;
*) var_append LDFLAGS -lstdc++ ;;
esac
check_clang_bug_5424
fi
check_cxx11
for bin in $required_bin_deps; do
require_dep $bin
check_bin $bin
done
for bin in $web_assets_deps; do
require_dep $bin
check_bin $bin
done
check_admin_deps
for bin in $optional_bin_deps; do
optional_dep $bin
check_bin $bin
done
build_try_lib_paths
for lib in $optional_libs; do
check_lib $lib optional
done
for lib in $required_libs; do
check_lib $lib require
done
check_v8_pre_3_19
require malloc
var ALLOCATOR "${custom_allocator:-$default_allocator}"
var DEFAULT_ALLOCATOR "$default_allocator"
if [[ "$ALLOCATOR" = system ]]; then
var MALLOC_LIBS ""
var MALLOC_LIBS_DEP ""
boolvar STATIC_MALLOC false
else
check_lib "$ALLOCATOR" require
boolvar STATIC_MALLOC contains "$static_libs" "$ALLOCATOR"
macro MALLOC_LIBS "\$($(uc $ALLOCATOR)_LIBS)"
macro MALLOC_LIBS_DEP "\$($(uc $ALLOCATOR)_LIBS_DEP)"
fi
test_protobuf
check_boost
boolvar STATIC_V8 contains "$static_libs" v8
boolvar ALLOW_FETCH $allow_fetch
for pkg in $must_fetch_list; do
if ! contains "$FETCH_LIST" $pkg; then
require_dep $pkg
fetch_pkg $pkg
fi
done
if [ -n "${final_warning:-}" ]; then
echo "* Warning: $final_warning"
fi
}
configure_windows () {
for tool in msbuild vcvarsall cmake; do
require $tool
check_vs_bin $tool
done
require Platform
check_windows_platform
var COMPILER MSC
var DEFAULT_ALLOCATOR system
var ALLOCATOR system
var PTHREAD_LIBS
var CROSS_COMPILING 0
var CXX false
for pkg in protobuf curl v8 zlib re2 openssl gtest boost; do
require_dep $pkg
fetch_lib $pkg
done
fetch_bin protoc
require_dep npm
check_bin npm
require_dep coffee
fetch_bin coffee
require_dep browserify
fetch_bin browserify
check_admin_deps
optional Python
check_bin python
}
# Entry point
main () {
init
if test -e configure.default; then
echo "* Reading arguments from 'configure.default'"
default_args=$(cat configure.default)
echo "* Prepending the following arguments:" $default_args
fi
read_args ${default_args:-} "$@"
echo "* Detecting system configuration"
trap "show error; echo '* Aborting configure'" EXIT
write "# Automatically generated by $0" 3> "$config"
write "# Command line: $@" 3>> "$config"
write "CONFIGURE_STATUS := started" 3>> "$config"
write "CONFIGURE_ERROR := " 3>> "$config"
write "CONFIGURE_COMMAND_LINE := $(echo ${default_args:-}) $@" 3>> "$config"
write "CONFIGURE_MAGIC_NUMBER := 2" 3>> "$config"
configure 3>> "$config"
trap - EXIT
if ! $failed; then
write "CONFIGURE_STATUS := success" 3>> "$config"
echo "* Wrote configuration to $config"
else
write "CONFIGURE_STATUS := failed" 3>> "$config"
echo "* Aborting configure"
exit 1
fi
}
# Parse the command line arguments
read_args () {
local no_arg
local has_arg
local arg
local option
local dep
exit_on_error=true
config=config.mk
failed=false
allow_fetch=false
force_paths='=|'
can_show=false
required=false
arg_vars=$'\1\2'
lib_paths=
static_libs=$default_static
arg_prefix=
arg_sysconfdir=
arg_localstatedir=
custom_allocator=
use_ccache=false
while [[ $# -ne 0 ]]; do
arg=${1#*=}
if [[ "$arg" = "$1" ]]; then
no_arg=shift
if [[ $# -eq 1 ]]; then
has_arg="error_missing_arg $(quote "$1")"
else
arg=$2
has_arg='shift 2'
fi
else
no_arg="error_no_arg $(quote "$1")"
has_arg=shift
fi
option="${1%%=*}"
case "$option" in
--debug-configure) $no_arg; set -x ;;
--config) $has_arg; config=$arg ;;
--continue) $no_arg; exit_on_error=false ;;
--allow-fetch) $no_arg; allow_fetch=true ;;
--fetch) $has_arg
if [[ "$arg" = "all" ]]; then
please_fetch_list="$(all_fetch_deps)"
elif can_fetch $(guess_pkg_name "$arg"); then
please_fetch_list="$please_fetch_list $(guess_pkg_name "$arg")"
else
die "Don't know how to fetch '$arg'"
fi ;;
--static) $has_arg
if [[ "$arg" = none ]]; then
static_libs=
elif [[ "$arg" = all ]]; then
static_libs=$all_libs
elif contains "$all_libs" "$arg"; then
static_libs="$static_libs $arg"
else
die "Unknown library: $arg"
fi ;;
--dynamic) $has_arg
if [[ "$arg" = none ]]; then
static_libs=$all_libs
elif [[ "$arg" = all ]]; then
static_libs=
elif contains "$all_libs" "$arg"; then
static_libs=$(remove "$static_libs" "$arg")
please_fetch_list=$(remove "$please_fetch_list" $(guess_pkg_name "$arg"))
else
die "Unknown library: $arg"
fi ;;
--lib-path) $has_arg; lib_paths="$lib_paths $arg" ;;
--with-tcmalloc) $no_arg; set_custom_allocator tcmalloc ;;
--with-jemalloc) $no_arg; set_custom_allocator jemalloc ;;
--with-system-malloc) $no_arg; set_custom_allocator system ;;
--ccache) $no_arg; use_ccache=true ;;
--prefix) $has_arg; arg_prefix=$arg ;;
--sysconfdir) $has_arg; arg_sysconfdir=$arg ;;
--localstatedir) $has_arg; arg_localstatedir=$arg ;;
--windows-platform) $has_arg; requested_platform=$arg ;;
--help) show_help; exit ;;
-*) die "Unknown option '$option'" ;;
*) if contains "$all_deps" "$(lc $option)"; then
$has_arg
force_paths="$force_paths|$(lc $option)=$arg|"
elif contains "$allowed_arg_vars" "$option"; then
$has_arg
arg_vars="$arg_vars"$'\2'"$option"$'\1'"$arg"
else
die "Unknown variable argument: $option"
fi ;;
esac
done
}
set_custom_allocator () {
if [[ -n "$custom_allocator" ]]; then
die "incompatible options: --with-$custom_allocator and --with-$1"
fi
custom_allocator=$1
}
# Description of some of the dependencies
dep_descrs=':
cxx:C++ Compiler
protoc:Protobuf compiler
npm:Node.js package manager
v8:v8 javascript engine
protobuf:Protobuf library
browserify:Browserify
v8:V8 JavaScript Engine
re2:RE2
z:zlib
gtest:Google Test'
# Output of --help
show_help () {
cat <<EOF
Configure a RethinkDB build from source
Usage: $0 [arguments]
--help Display this help
--config <file> Output file (default config.mk)
--continue Do not stop after encountering an error
--allow-fetch Allow fetching missing dependencies
--lib-path <dir> Add dir to the library search path
<var>=<val> Set the value of a variable
CXXFLAGS C++ compiler arguments
LDFLAGS C++ linker arguments
--fetch <dep> Force fetching <dep>.
<dep>=<path> Library or executable path. <dep> can be
EOF
for dep in $all_deps; do
local padded="$dep "
local descr
lookup "$dep_descrs" $dep descr || descr=
echo " ${padded:0:24} $descr"
done
cat <<EOF
--static <lib> Statically link some libraries. <lib> is a library name, 'all' or 'none'
--dynamic <lib> Dynamically link some libraries. <lib> is a library name, 'all' or 'none'
--prefix <dir> Installation prefix. Defaults to /usr/local
--sysconfdir <dir> Configuration prefix. Defaults to /usr/local/etc
--localstatedir <dir> Runtime data prefix. Defaults to /usr/local/var
--with-tcmalloc Use TCMalloc
--with-jemalloc Use jemalloc (default on Linux)
--with-system-malloc Use the system malloc (default on OS X)
--ccache Speed up the build using ccache
--windows-platform Windows platform: Win32 (32 bit, default) or x64 (64 bit)
EOF
}
# Quote for re-use in the shell
# quote 'a b' -> 'a\ b'
quote () {
printf %q "$1"
}
# Some error messages
error_no_arg () { die "option ${1%%=*} does not take any arguments"; }
error_missing_arg () { die "option ${1%%=*} takes an argument"; }
# error <message>
# Try to generate an error
# If $delayed_errors, then save the error for later
# If not $required, turn it into a warning
error () {
local req=$required
if ${delay_errors:-false}; then
delayed_error="$*"
return
fi
local type
if $req; then
show "error"
type=Error
else
show "no"
type=Warning
fi
if $req || ! ${ignore_warnings:-false}; then
echo "* $type: $*" >&2
fi
write "CONFIGURE_ERROR := $*"
if $req; then
echo "${error_details:-}" | head -n 5
if $exit_on_error; then
exit 1
fi
fi
failed=$req
}
# Like error, but fatal
die () {
show error
required=true
error "$@"
exit 1
}
# not_found <name>
# Generate a not found error
not_found () {
if $required; then
if can_fetch $(guess_pkg_name "`lc $1`"); then
error "missing $1. Install it, specify the full path with $(uc $1)= or run ./configure with --allow-fetch"
else
error "missing $1. Install it or specify the full path with $(uc $1)="
fi
else
show no
fi
}
# write <line>
# Write to the config file
write () {
echo "$*" >&3
}
# show_descr <description>
# Describe what the script is looking for next
# A call to show will complete the line
show_descr () {
if ${can_show:-false}; then
show_no
fi
local padded="$*: "
echo -n "${padded:0:32}"
write "# $*"
can_show=true
error_details=
}
# show_no [package_descr] [package_name]
# Like 'show no', but show the delayed error if there is one
show_no () {
local req=$required
local err=$delayed_error
local info=""
show no
if $req; then
if can_fetch "$(guess_pkg_name "${2:-$1}")"; then
info=" Try running ./configure with the --fetch ${2:-$1} or --allow-fetch flags."
fi
error "${err:-${1:-} not found.$info}"
elif [[ -n "$delayed_error" ]]; then
error "$err"
fi
}
# show <value>
# Display the value that was found
show () {
if $can_show; then
echo "$*"
can_show=false
fi
delayed_error=
delay_errors=false
}
# Like show_descr, but set $required to true
require () {
required=true
show_descr "$@"
}
# Like show_descr, but set $required to false
optional () {
required=false
show_descr "$@"
}
# var <name> <value>
# Set the value of a variable in the config file
var () {
local name=$1
shift
local val=$*
show "$val"
write "$name := $val"
eval "$name=$(quote "$val")" 2>/dev/null
}
# macro <name> <value>
# Set the value of a macro variable in the config file
macro () {
local name=$1
shift
local val=$*
show "$val"
write "$name = $val"
}
# var_append <name> <value>
# Append a value to a variable in to the config file
var_append () {
local name=$1
shift
local val=$*
show "$val"
write "$name += $val"
eval "$name=\${$name:-}\ $(quote "$val")"
}
# boolvar <name> <command> <arguments ...>
# Run the command and set the variable to its boolean return value
boolvar () {
local name=$1
shift
if "$@"; then
show yes
var $name 1
else
show no
var $name 0
fi
}
# Find a C++ compiler that rethinkdb supports
check_cxx () {
require "C++ Compiler"
local force_CXX
lookup "$force_paths" cxx force_CXX || :
CXX="${force_CXX:-${CXX:-}}"
if test -z "$CXX" || ! $CXX --version >/dev/null 2>&1; then
if [[ -n "${force_CXX:-}" ]]; then
error "unable to run $force_CXX"
return
fi
CXX=$(command -v c++ 2>/dev/null || command -v g++ 2>/dev/null || command -v clang 2>/dev/null || command -v icc 2>/dev/null)
if [[ -z "$CXX" ]]; then
not_found CXX
return
fi
fi
local description=$($CXX --version 2>/dev/null)$($CXX --help 2>/dev/null)
local version_string=$(echo "$description" | extract_version_string)
local type=$(echo "$description" | egrep -io 'gcc|g\+\+|clang|icc' | head -n 1)
case "$(uc $type)" in
GCC|G++) min_version=$min_gcc_version
type=GCC ;;
CLANG) min_version=$min_clang_version ;;
ICC) min_version=$min_icc_version
type=INTEL ;;
*) show "unknown"
error "Could not determine C++ compiler type of $CXX (gcc, clang or icc is required)"
return
esac
if [[ -z "$version_string" ]]; then
show "$(uc $type) (unknown version)"
error "Could not determine C++ compiler version (>= $(write_version $min_version) required)"
return
else
show "$(uc $type) $version_string ($CXX)"
test_version_ge $(uc $type) $(read_version "$version_string") $min_version || return
fi
var COMPILER "$(uc $type)"
var CXX "$CXX"
}
# foo --version | extract_version_string
# find a version string in the output of foo --version
extract_version_string () {
sed 's/([^)]*)//g' | egrep -o '[0-9]+\.[0-9]+(\.[0-9]+)?' | head -n 1
}
# read_version "1.2.3" -> 10203
# read_version "2.14" -> 21400
read_version () {
local one=${1%%.*}
local rest=${1#*.}
local two=${rest%%.*}
rest=${rest#*.}
local three=${rest%%.*}
if [[ "$three" != "$rest" ]]; then three=0; fi
printf %d%02d%02d "$one" "$two" "$three"
}
# write_version "10203" -> "1.2.3"
write_version () {
local v=$(printf %06d "$1")
local v1=${v:0:2}
local v2=${v:2:2}
local v3=${v:4:2}
printf %d.%d.%d "${v1#0}" "${v2#0}" "${v3#0}"
}
# test_version_ge <name> <version> <min version>
test_version_ge () {
local fetch_message=
if ! [[ $2 -ge $3 ]]; then
if can_fetch "$(bin_pkg_name "$1")"; then
fetch_message=" Try running ./configure with --allow-fetch"
fi
error "$1 $(write_version $2) is too old. At least $1 $(write_version $3) is required.$fetch_message"
return 1
fi
}
# test_version_le <name> <version> <max version>
test_version_le () {
local fetch_message=
if ! [[ $2 -le $3 ]]; then
if can_fetch "$(bin_pkg_name "$1")"; then
fetch_message=" Try running ./configure with --allow-fetch"
fi
error "$1 $(write_version $2) is too recent. At most $1 $(write_version $3) is required.$fetch_message"
return 1
fi
}
# test_bin_version <name> <path>
test_bin_version () {
local min_var=min_$1_version
local min=${!min_var:-}
local max_var=max_$1_version
local max=${!max_var:-}
local invalid_var=invalid_$1_versions
local invalid=${!invalid_var:-}
test -z "$min$max$invalid" && return 0
local output
local ver
output=$("$2" ${3:---version} 2>&1)
if ver=$(echo "$output" | extract_version_string) &&
test -n "$ver" ;
then
local version=$(read_version "$ver")
test -z "$min" || test_version_ge $1 $version $(read_version $min) || return 1
test -z "$max" || test_version_le $1 $version $(read_version $max) || return 1
if contains "$invalid" "$ver" ; then
error "$1 ($ver) is not supported"
return 1
fi
else
error "Could not determine $1 version"
return 1
fi
show "$1 $ver"
}
# contains <haystack> <needle>
# Test if the space-separated list haystack contains needle
contains () {
local d=" $1 "
[[ "${d% $2 *}" != "$d" ]]
}
# remove <list> <item>
# remove an item from a space-separated list
remove () {
if contains "$1" "$2"; then
local outputlist=""
for item in $1; do
if [ "$item" != "$2" ]; then
if [ -z "$outputlist" ]; then
outputlist="$item"
else
outputlist="$outputlist $item"
fi
fi
done
echo -n "$outputlist"
else
echo -n "$1"
fi
}
# any "<list>" <command>
# Test if the command is true for any element of the space seperated list
any () {
local list=$1
shift
for x in $list; do
if "$@" $x; then
return 0
fi
done
return 1
}
# lookup <dict> <key> [var]
# dict is an assoc-list composed of two seperators followed by a list of pairs
# eg: ':|foo:bar|test:123|baz:quux' or '= a=b c=d'
lookup () {
local _val=${1#*${1:1:1}$2${1:0:1}}
if [[ "$_val" = "$1" ]]; then
unset ${3:-$2}
return 1
fi
eval "${3:-$2}=$(quote "${_val%%${1:1:1}*}")"
}
# check_bin <name>
# Check for a binary
check_bin () {
local force_bin
lookup "$force_paths" $1 force_bin || force_bin=
if test -z "$force_bin" && contains "$please_fetch_list" $(bin_pkg_name "$1"); then
fetch_bin $1
return
fi
local ucbin=$(uc $1)
local bin=${force_bin:-${!ucbin:-$1}}
bin=$(command -v "$bin" 2>/dev/null)
if [[ ! -x "$bin" ]]; then
if [[ -n "${force_bin:-}" ]]; then
bin=$force_bin
elif fetch_allowed $(bin_pkg_name $1); then
fetch_bin $1
return
else
not_found $(uc $1)
return
fi
fi
local version
delay_errors=true
if ! test_bin_version $1 "$bin"; then
if fetch_allowed $(bin_pkg_name $1); then
fetch_bin $1
return
else
show_no "$1"
return
fi
fi
var "$(uc $1)" "$bin"
var "$(uc $1)_BIN_DEP" ""
}
# Invoke pkg.sh with the required environment variables
pkg () {
FETCH_LIST="$FETCH_LIST" PLATFORM="${PLATFORM:-}" OS="$OS" bash $root/mk/support/pkg/pkg.sh "$@"
}
# add_fetch <name>
# Instruct make to fetch and build the dependency
# Sets the version variable
add_fetch () {
local pkg
pkg="$1"
if ! version=$(pkg version "$pkg"); then
error "Internal error: cannot fetch $pkg"
return 1
fi
show external/${pkg}_$version
if ! contains "$FETCH_LIST" "$pkg"; then
local depends
depends=$(pkg depends "$pkg")
for dep in $depends; do
fetch_pkg $dep
done
var_append FETCH_LIST "$pkg"
var "${pkg}_VERSION" "$version"
var "${pkg}_DEPENDS" "$depends"
fi
}
# Wrapper around add_fetch
fetch_pkg () {
local version
add_fetch "$1"
}
# Chose to fetch the given binary
fetch_bin () {
local version
pkg=$(bin_pkg_name "$1")
add_fetch "$pkg"
macro "$(uc "$1")" "\$(abspath \$(SUPPORT_BUILD_DIR)/${pkg}_$version/bin/$1)"
macro "$(uc "$1")_BIN_DEP" "\$(SUPPORT_BUILD_DIR)/${pkg}_$version/bin/$1"
}
# Chose to fetch the given library
fetch_lib () {
local pkg
local version
pkg=$(lib_pkg_name "$1")
add_fetch "$pkg"
var_append "$pkg"_LIB_NAME "$(uc "$1")"
var "HAS_$(uc "$1")" 1
macro "$(uc "$1")_LIBS_DEP" "\$(SUPPORT_BUILD_DIR)/${pkg}_$version/lib/lib$1.a"
macro "$(uc "$1")_INCLUDE" "-isystem \$(SUPPORT_BUILD_DIR)/${pkg}_$version/include"
if pkg separate-install-include "$pkg"; then
macro "$(uc "$1")_INCLUDE_DEP" "\$(SUPPORT_BUILD_DIR)/${pkg}_$version/include"
else
macro "$(uc "$1")_INCLUDE_DEP" "\$(SUPPORT_BUILD_DIR)/${pkg}_$version/lib/lib$1.a"
fi
static_libs="$static_libs $1"
}
# require_dep <name>
# Like require, but looks up the description for name
require_dep () {
local descr
lookup "$dep_descrs" $1 descr || descr=$1
require $descr
}
# optional_dep <name>
# Like optional, but looks up the description for name
optional_dep () {
local descr
lookup "$dep_descrs" $1 descr || descr=$1
optional $descr
}
# An assoc-list of c++ code to test if a library works
lib_test_code=':~
~termcap:
#include <termcap.h>
int main(){ tgetent(0, "xterm"); return 0; }
~boost:
#include <boost/bind.hpp>
int main(){ return 0; }
~cxx11:
// Verify that std::map uses the move constructor
#include <map>
struct C {
C(const C&) = delete;
C() { }
C(C &&) { }
};
int main() {
std::map<int, C> m;
m.insert(std::make_pair(0, C()));
}
~jemalloc:
#include <jemalloc/jemalloc.h>
int main(){
// Jemalloc 4 fixes some bugs concerning the handling of OOM conditions
static_assert(JEMALLOC_VERSION_MAJOR >= 4, "jemalloc version 4 or above is required");
}
~crypto:
#include <openssl/bn.h>
#include <openssl/crypto.h>
#include <openssl/evp.h>
int main(){
CRYPTO_THREADID_set_callback([](CRYPTO_THREADID *id){ CRYPTO_THREADID_set_numeric(id, 0); });
unsigned char out[4];
PKCS5_PBKDF2_HMAC(static_cast<char const *>("pass"), 4, nullptr, 0, 1, EVP_sha256(), sizeof(out), out);
return 0;
}
~ssl:
#include <openssl/ssl.h>
int main(){
SSL_CTX_set_options(
SSL_CTX_new(SSLv23_method()),
SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TLSv1|SSL_OP_NO_TLSv1_1|SSL_OP_CIPHER_SERVER_PREFERENCE|SSL_OP_SINGLE_DH_USE|SSL_OP_SINGLE_ECDH_USE);
return 0;
}
~'
# An assoc-list of possible library aliases
lib_alias=':
termcap:termcap tinfo ncurses
tcmalloc:tcmalloc_minimal'
# List the paths where static libraries can be found into the try_lib_paths variable
build_try_lib_paths () {
cc_paths=$($CXX -print-search-dirs 2>/dev/null | grep ^libraries | sed -e 's/^libraries[: =]*//; s/:/ /g')
LDCONFIG=$(PATH="$PATH:/sbin:/usr/sbin" command -v ldconfig 2>/dev/null)
if [[ -n "$LDCONFIG" ]]; then
ld_paths=$($LDCONFIG -v -N -X 2>/dev/null | grep -v '^ ' | sed -e 's/:$//' )
else
ld_paths="/usr/lib /usr/local/lib" # Default ld search paths on OSX
fi
try_lib_paths="$lib_paths $cc_paths $ld_paths"
try_lib_paths=$(for path in $try_lib_paths; do
test -d "$path" && niceabspath "$path"
done | sort -u)
}
# check_lib <name> <required/optional>
# Check for the presence of a library and set the correct make flags for it
# WISHLIST: Properly detect the presence of the headers and check that the
# installed version is compatible. Try using pkg-config.
check_lib () {
local info=$2
local path
if contains "$please_fetch_list $FETCH_LIST" $(lib_pkg_name "$1"); then
${info}_dep $1
fetch_lib $1
return
fi
if lookup "$force_paths" $1 path; then
${info}_dep $1
check_lib_compile "$path" $1
if $can_show; then
show_no "$path" "$1"
empty_deps_lib $1 false
fi
return
fi
local check
if contains "$static_libs" $1; then
static_info=" (static)"
check=check_static_lib
else
static_info=
check=check_dyn_lib
fi
$info "$1$static_info"
delay_errors=true
local aliases
lookup "$lib_alias" $1 aliases || aliases=$1
for lib in $aliases; do
$check $lib $1
if ! $can_show; then
empty_deps_lib $1 true
return
fi
done
if fetch_allowed $(lib_pkg_name $1); then
fetch_lib $1
else
show_no "lib$1$static_info" "$1"
empty_deps_lib $1 false
fi
}
empty_deps_lib () {
if ! "$2"; then
var "HAS_$(uc $1)" 0
var "$(uc $1)_LIBS" ""
else