]> git.lizzy.rs Git - rust.git/blob - configure
Auto merge of #26752 - frewsxcv:patch-25, r=alexcrichton
[rust.git] / configure
1 #!/bin/sh
2
3 msg() {
4     echo "configure: $*"
5 }
6
7 step_msg() {
8     msg
9     msg "$1"
10     msg
11 }
12
13 warn() {
14     echo "configure: WARNING: $1"
15 }
16
17 err() {
18     echo "configure: error: $1"
19     exit 1
20 }
21
22 run() {
23     msg "$@"
24     "$@"
25 }
26
27 need_ok() {
28     if [ $? -ne 0 ]
29     then
30         err "$1"
31     fi
32 }
33
34 need_cmd() {
35     if command -v $1 >/dev/null 2>&1
36     then msg "found program '$1'"
37     else err "program '$1' is missing, please install it"
38     fi
39 }
40
41 make_dir() {
42     if [ ! -d $1 ]
43     then
44         run mkdir -p $1
45     fi
46 }
47
48 copy_if_changed() {
49     if cmp -s $1 $2
50     then
51         msg "leaving $2 unchanged"
52     else
53         run cp -f $1 $2
54         chmod u-w $2 # make copied artifact read-only
55     fi
56 }
57
58 move_if_changed() {
59     if cmp -s $1 $2
60     then
61         msg "leaving $2 unchanged"
62     else
63         run mv -f $1 $2
64         chmod u-w $2 # make moved artifact read-only
65     fi
66 }
67
68 putvar() {
69     local T
70     eval T=\$$1
71     eval TLEN=\${#$1}
72     if [ $TLEN -gt 35 ]
73     then
74         printf "configure: %-20s := %.35s ...\n" $1 "$T"
75     else
76         printf "configure: %-20s := %s %s\n" $1 "$T" "$2"
77     fi
78     printf "%-20s := %s\n" $1 "$T" >>config.tmp
79 }
80
81 putpathvar() {
82     local T
83     eval T=\$$1
84     eval TLEN=\${#$1}
85     if [ $TLEN -gt 35 ]
86     then
87         printf "configure: %-20s := %.35s ...\n" $1 "$T"
88     else
89         printf "configure: %-20s := %s %s\n" $1 "$T" "$2"
90     fi
91     if [ -z "$T" ]
92     then
93         printf "%-20s := \n" $1 >>config.tmp
94     else
95         printf "%-20s := \"%s\"\n" $1 "$T" >>config.tmp
96     fi
97 }
98
99 probe() {
100     local V=$1
101     shift
102     local P
103     local T
104     for P
105     do
106         T=$(command -v $P 2>&1)
107         if [ $? -eq 0 ]
108         then
109             VER0=$($P --version 2>/dev/null \
110                 |  grep -o '[vV]\?[0-9][0-9.][a-z0-9.-]*' | head -1 )
111             if [ $? -eq 0 -a "x${VER0}" != "x" ]
112             then
113               VER="($VER0)"
114             else
115               VER=""
116             fi
117             break
118         else
119             VER=""
120             T=""
121         fi
122     done
123     eval $V=\$T
124     putpathvar $V "$VER"
125 }
126
127 probe_need() {
128     local V=$1
129     probe $*
130     eval VV=\$$V
131     if [ -z "$VV" ]
132     then
133         err "needed, but unable to find any of: $*"
134     fi
135 }
136
137 validate_opt () {
138     for arg in $CFG_CONFIGURE_ARGS
139     do
140         isArgValid=0
141         for option in $BOOL_OPTIONS
142         do
143             if test --disable-$option = $arg
144             then
145                 isArgValid=1
146             fi
147             if test --enable-$option = $arg
148             then
149                 isArgValid=1
150             fi
151         done
152         for option in $VAL_OPTIONS
153         do
154             if echo "$arg" | grep -q -- "--$option="
155             then
156                 isArgValid=1
157             fi
158         done
159         if [ "$arg" = "--help" ]
160         then
161             echo
162             echo "No more help available for Configure options,"
163             echo "check the Wiki or join our IRC channel"
164             break
165         else
166             if test $isArgValid -eq 0
167             then
168                 err "Option '$arg' is not recognized"
169             fi
170         fi
171     done
172 }
173
174 # `valopt OPTION_NAME DEFAULT DOC` extracts a string-valued option
175 # from command line, using provided default value for the option if
176 # not present, and saves it to the generated config.mk.
177 #
178 # `valopt_nosave` is much the same, except that it does not save the
179 # result to config.mk (instead the script should use `putvar` itself
180 # later on to save it).  `valopt_core` is the core upon which the
181 # other two are built.
182
183 valopt_core() {
184     VAL_OPTIONS="$VAL_OPTIONS $2"
185
186     local SAVE=$1
187     local OP=$2
188     local DEFAULT=$3
189     shift
190     shift
191     shift
192     local DOC="$*"
193     if [ $HELP -eq 0 ]
194     then
195         local UOP=$(echo $OP | tr '[:lower:]' '[:upper:]' | tr '\-' '\_')
196         local V="CFG_${UOP}"
197         local V_PROVIDED="${V}_PROVIDED"
198         eval $V="$DEFAULT"
199         for arg in $CFG_CONFIGURE_ARGS
200         do
201             if echo "$arg" | grep -q -- "--$OP="
202             then
203                 val=$(echo "$arg" | cut -f2 -d=)
204                 eval $V=$val
205                 eval $V_PROVIDED=1
206             fi
207         done
208         if [ "$SAVE" = "save" ]
209         then
210             putvar $V
211         fi
212     else
213         if [ -z "$DEFAULT" ]
214         then
215             DEFAULT="<none>"
216         fi
217         OP="${OP}=[${DEFAULT}]"
218         printf "    --%-30s %s\n" "$OP" "$DOC"
219     fi
220 }
221
222 valopt_nosave() {
223     valopt_core nosave "$@"
224 }
225
226 valopt() {
227     valopt_core save "$@"
228 }
229
230 # `opt OPTION_NAME DEFAULT DOC` extracts a boolean-valued option from
231 # command line, using the provided default value (0/1) for the option
232 # if not present, and saves it to the generated config.mk.
233 #
234 # `opt_nosave` is much the same, except that it does not save the
235 # result to config.mk (instead the script should use `putvar` itself
236 # later on to save it).  `opt_core` is the core upon which the other
237 # two are built.
238
239 opt_core() {
240     BOOL_OPTIONS="$BOOL_OPTIONS $2"
241
242     local SAVE=$1
243     local OP=$2
244     local DEFAULT=$3
245     shift
246     shift
247     shift
248     local DOC="$*"
249     local FLAG=""
250
251     if [ $DEFAULT -eq 0 ]
252     then
253         FLAG="enable"
254         DEFAULT_FLAG="disable"
255     else
256         FLAG="disable"
257         DEFAULT_FLAG="enable"
258         DOC="don't $DOC"
259     fi
260
261     if [ $HELP -eq 0 ]
262     then
263         for arg in $CFG_CONFIGURE_ARGS
264         do
265             if [ "$arg" = "--${FLAG}-${OP}" ]
266             then
267                 OP=$(echo $OP | tr 'a-z-' 'A-Z_')
268                 FLAG=$(echo $FLAG | tr 'a-z' 'A-Z')
269                 local V="CFG_${FLAG}_${OP}"
270                 local V_PROVIDED="CFG_${FLAG}_${OP}_PROVIDED"
271                 eval $V=1
272                 eval $V_PROVIDED=1
273                 if [ "$SAVE" = "save" ]
274                 then
275                    putvar $V
276                 fi
277             elif [ "$arg" = "--${DEFAULT_FLAG}-${OP}" ]
278             then
279                 OP=$(echo $OP | tr 'a-z-' 'A-Z_')
280                 DEFAULT_FLAG=$(echo $DEFAULT_FLAG | tr 'a-z' 'A-Z')
281                 local V_PROVIDED="CFG_${DEFAULT_FLAG}_${OP}_PROVIDED"
282                 eval $V_PROVIDED=1
283             fi
284         done
285     else
286         if [ ! -z "$META" ]
287         then
288             OP="$OP=<$META>"
289         fi
290         printf "    --%-30s %s\n" "$FLAG-$OP" "$DOC"
291      fi
292 }
293
294 opt_nosave() {
295     opt_core nosave "$@"
296 }
297
298 opt() {
299     opt_core save "$@"
300 }
301
302 envopt() {
303     local NAME=$1
304     local V="CFG_${NAME}"
305     eval VV=\$$V
306
307     # If configure didn't set a value already, then check environment.
308     #
309     # (It is recommended that the configure script always check the
310     # environment before setting any values to envopt variables; see
311     # e.g.  how CFG_CC is handled, where it first checks `-z "$CC"`,
312     # and issues msg if it ends up employing that provided value.)
313     if [ -z "$VV" ]
314     then
315         eval $V=\$$NAME
316         eval VV=\$$V
317     fi
318
319     # If script or environment provided a value, save it.
320     if [ ! -z "$VV" ]
321     then
322         putvar $V
323     fi
324 }
325
326 to_llvm_triple() {
327     case $1 in
328         i686-w64-mingw32) echo i686-pc-windows-gnu ;;
329         x86_64-w64-mingw32) echo x86_64-pc-windows-gnu ;;
330         *) echo $1 ;;
331     esac
332 }
333
334 to_gnu_triple() {
335     case $1 in
336         i686-pc-windows-gnu) echo i686-w64-mingw32 ;;
337         x86_64-pc-windows-gnu) echo x86_64-w64-mingw32 ;;
338         *) echo $1 ;;
339     esac
340 }
341
342 # Prints the absolute path of a directory to stdout
343 abs_path() {
344     local _path="$1"
345     # Unset CDPATH because it causes havok: it makes the destination unpredictable
346     # and triggers 'cd' to print the path to stdout. Route `cd`'s output to /dev/null
347     # for good measure.
348     (unset CDPATH && cd "$_path" > /dev/null && pwd)
349 }
350
351 msg "looking for configure programs"
352 need_cmd cmp
353 need_cmd mkdir
354 need_cmd printf
355 need_cmd cut
356 need_cmd head
357 need_cmd grep
358 need_cmd xargs
359 need_cmd cp
360 need_cmd find
361 need_cmd uname
362 need_cmd date
363 need_cmd tr
364 need_cmd sed
365 need_cmd file
366 need_cmd make
367
368 msg "inspecting environment"
369
370 CFG_OSTYPE=$(uname -s)
371 CFG_CPUTYPE=$(uname -m)
372
373 if [ $CFG_OSTYPE = Darwin -a $CFG_CPUTYPE = i386 ]
374 then
375     # Darwin's `uname -s` lies and always returns i386. We have to use sysctl
376     # instead.
377     if sysctl hw.optional.x86_64 | grep -q ': 1'
378     then
379         CFG_CPUTYPE=x86_64
380     fi
381 fi
382
383 # The goal here is to come up with the same triple as LLVM would,
384 # at least for the subset of platforms we're willing to target.
385
386 case $CFG_OSTYPE in
387
388     Linux)
389         CFG_OSTYPE=unknown-linux-gnu
390         ;;
391
392     FreeBSD)
393         CFG_OSTYPE=unknown-freebsd
394         ;;
395
396     DragonFly)
397         CFG_OSTYPE=unknown-dragonfly
398         ;;
399
400     Bitrig)
401         CFG_OSTYPE=unknown-bitrig
402         ;;
403
404     OpenBSD)
405         CFG_OSTYPE=unknown-openbsd
406        ;;
407
408     NetBSD)
409             CFG_OSTYPE=unknown-netbsd
410             ;;
411
412     Darwin)
413         CFG_OSTYPE=apple-darwin
414         ;;
415
416     MINGW*)
417         # msys' `uname` does not print gcc configuration, but prints msys
418         # configuration. so we cannot believe `uname -m`:
419         # msys1 is always i686 and msys2 is always x86_64.
420         # instead, msys defines $MSYSTEM which is MINGW32 on i686 and
421         # MINGW64 on x86_64.
422         CFG_CPUTYPE=i686
423         CFG_OSTYPE=pc-windows-gnu
424         if [ "$MSYSTEM" = MINGW64 ]
425         then
426             CFG_CPUTYPE=x86_64
427         fi
428         ;;
429
430     MSYS*)
431         CFG_OSTYPE=pc-windows-gnu
432         ;;
433
434 # Thad's Cygwin identifiers below
435
436 #   Vista 32 bit
437     CYGWIN_NT-6.0)
438         CFG_OSTYPE=pc-windows-gnu
439         CFG_CPUTYPE=i686
440         ;;
441
442 #   Vista 64 bit
443     CYGWIN_NT-6.0-WOW64)
444         CFG_OSTYPE=pc-windows-gnu
445         CFG_CPUTYPE=x86_64
446         ;;
447
448 #   Win 7 32 bit
449     CYGWIN_NT-6.1)
450         CFG_OSTYPE=pc-windows-gnu
451         CFG_CPUTYPE=i686
452         ;;
453
454 #   Win 7 64 bit
455     CYGWIN_NT-6.1-WOW64)
456         CFG_OSTYPE=pc-windows-gnu
457         CFG_CPUTYPE=x86_64
458         ;;
459
460 #   Win 8 # uname -s on 64-bit cygwin does not contain WOW64, so simply use uname -m to detect arch (works in my install)
461     CYGWIN_NT-6.3)
462         CFG_OSTYPE=pc-windows-gnu
463         ;;
464 # We do not detect other OS such as XP/2003 using 64 bit using uname.
465 # If we want to in the future, we will need to use Cygwin - Chuck's csih helper in /usr/lib/csih/winProductName.exe or alternative.
466     *)
467         err "unknown OS type: $CFG_OSTYPE"
468         ;;
469 esac
470
471
472 case $CFG_CPUTYPE in
473
474     i386 | i486 | i686 | i786 | x86)
475         CFG_CPUTYPE=i686
476         ;;
477
478     xscale | arm)
479         CFG_CPUTYPE=arm
480         ;;
481
482     armv7l)
483         CFG_CPUTYPE=arm
484         CFG_OSTYPE="${CFG_OSTYPE}eabihf"
485         ;;
486
487     aarch64)
488         CFG_CPUTYPE=aarch64
489         ;;
490
491     # At some point, when ppc64[le] support happens, this will need to do
492     # something clever. For now it's safe to assume that we're only ever
493     # interested in building 32 bit.
494     powerpc | ppc | ppc64)
495         CFG_CPUTYPE=powerpc
496         ;;
497
498     x86_64 | x86-64 | x64 | amd64)
499         CFG_CPUTYPE=x86_64
500         ;;
501
502     *)
503         err "unknown CPU type: $CFG_CPUTYPE"
504 esac
505
506 # Detect 64 bit linux systems with 32 bit userland and force 32 bit compilation
507 if [ $CFG_OSTYPE = unknown-linux-gnu -a $CFG_CPUTYPE = x86_64 ]
508 then
509     # $SHELL does not exist in standard 'sh', so probably only exists
510     # if configure is running in an interactive bash shell. /usr/bin/env
511     # exists *everywhere*.
512     BIN_TO_PROBE="$SHELL"
513     if [ -z "$BIN_TO_PROBE" -a -e "/usr/bin/env" ]; then
514        BIN_TO_PROBE="/usr/bin/env"
515     fi
516     if [ -n "$BIN_TO_PROBE" ]; then
517        file -L "$BIN_TO_PROBE" | grep -q "x86[_-]64"
518        if [ $? != 0 ]; then
519             CFG_CPUTYPE=i686
520        fi
521      fi
522 fi
523
524
525 DEFAULT_BUILD="${CFG_CPUTYPE}-${CFG_OSTYPE}"
526
527 CFG_SRC_DIR="$(abs_path $(dirname $0))/"
528 CFG_SRC_DIR_RELATIVE="$(dirname $0)/"
529 CFG_BUILD_DIR="$(pwd)/"
530 CFG_SELF="$0"
531 CFG_CONFIGURE_ARGS="$@"
532
533 OPTIONS=""
534 HELP=0
535 if [ "$1" = "--help" ]
536 then
537     HELP=1
538     shift
539     echo
540     echo "Usage: $CFG_SELF [options]"
541     echo
542     echo "Options:"
543     echo
544 else
545     msg "recreating config.tmp"
546     echo '' >config.tmp
547
548     step_msg "processing $CFG_SELF args"
549 fi
550
551 BOOL_OPTIONS=""
552 VAL_OPTIONS=""
553
554 opt debug 0 "debug mode; disables optimization unless \`--enable-optimize\` given"
555 opt valgrind 0 "run tests with valgrind (memcheck by default)"
556 opt helgrind 0 "run tests with helgrind instead of memcheck"
557 opt valgrind-rpass 1 "run rpass-valgrind tests with valgrind"
558 opt docs     1 "build standard library documentation"
559 opt compiler-docs     0 "build compiler documentation"
560 opt optimize-tests 1 "build tests with optimizations"
561 opt debuginfo-tests 0 "build tests with debugger metadata"
562 opt libcpp 1 "build with llvm with libc++ instead of libstdc++ when using clang"
563 opt llvm-assertions 0 "build LLVM with assertions"
564 opt debug-assertions 0 "build with debugging assertions"
565 opt fast-make 0 "use .gitmodules as timestamp for submodule deps"
566 opt ccache 0 "invoke gcc/clang via ccache to reuse object files between builds"
567 opt local-rust 0 "use an installed rustc rather than downloading a snapshot"
568 opt llvm-static-stdcpp 0 "statically link to libstdc++ for LLVM"
569 opt rpath 0 "build rpaths into rustc itself"
570 # This is used by the automation to produce single-target nightlies
571 opt dist-host-only 0 "only install bins for the host architecture"
572 opt inject-std-version 1 "inject the current compiler version of libstd into programs"
573 opt llvm-version-check 1 "check if the LLVM version is supported, build anyway"
574
575 # Optimization and debugging options. These may be overridden by the release channel, etc.
576 opt_nosave optimize 1 "build optimized rust code"
577 opt_nosave optimize-cxx 1 "build optimized C++ code"
578 opt_nosave optimize-llvm 1 "build optimized LLVM"
579 opt_nosave llvm-assertions 0 "build LLVM with assertions"
580 opt_nosave debug-assertions 0 "build with debugging assertions"
581 opt_nosave debuginfo 0 "build with debugger metadata"
582 opt_nosave debug-jemalloc 0 "build jemalloc with --enable-debug --enable-fill"
583
584 valopt localstatedir "/var/lib" "local state directory"
585 valopt sysconfdir "/etc" "install system configuration files"
586
587 valopt datadir "${CFG_PREFIX}/share" "install data"
588 valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
589 valopt llvm-root "" "set LLVM root"
590 valopt python "" "set path to python"
591 valopt jemalloc-root "" "set directory where libjemalloc_pic.a is located"
592 valopt build "${DEFAULT_BUILD}" "GNUs ./configure syntax LLVM build triple"
593 valopt android-cross-path "/opt/ndk_standalone" "Android NDK standalone path"
594 valopt release-channel "dev" "the name of the release channel to build"
595 valopt musl-root "/usr/local" "MUSL root installation directory"
596
597 # Many of these are saved below during the "writing configuration" step
598 # (others are conditionally saved).
599 opt_nosave manage-submodules 1 "let the build manage the git submodules"
600 opt_nosave clang 0 "prefer clang to gcc for building the runtime"
601 opt_nosave jemalloc 1 "build liballoc with jemalloc"
602 opt elf-tls 1 "elf thread local storage on platforms where supported"
603
604 valopt_nosave prefix "/usr/local" "set installation prefix"
605 valopt_nosave local-rust-root "/usr/local" "set prefix for local rust binary"
606 valopt_nosave host "${CFG_BUILD}" "GNUs ./configure syntax LLVM host triples"
607 valopt_nosave target "${CFG_HOST}" "GNUs ./configure syntax LLVM target triples"
608 valopt_nosave mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
609
610 # Temporarily support old triples until buildbots get updated
611 CFG_BUILD=$(to_llvm_triple $CFG_BUILD)
612 putvar CFG_BUILD # Yes, this creates a duplicate entry, but the last one wins.
613 CFG_HOST=$(to_llvm_triple $CFG_HOST)
614 CFG_TARGET=$(to_llvm_triple $CFG_TARGET)
615
616 # On windows we just store the libraries in the bin directory because
617 # there's no rpath. This is where the build system itself puts libraries;
618 # --libdir is used to configure the installation directory.
619 # FIXME: This needs to parameterized over target triples. Do it in platform.mk
620 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ]
621 then
622     CFG_LIBDIR_RELATIVE=bin
623 else
624     CFG_LIBDIR_RELATIVE=lib
625 fi
626
627 valopt libdir "${CFG_PREFIX}/${CFG_LIBDIR_RELATIVE}" "install libraries (do not set it on windows platform)"
628
629 case "$CFG_LIBDIR" in
630     "$CFG_PREFIX"/*) CAT_INC=2;;
631     "$CFG_PREFIX"*)  CAT_INC=1;;
632     *)
633         err "libdir must begin with the prefix. Use --prefix to set it accordingly.";;
634 esac
635
636 CFG_LIBDIR_RELATIVE=`echo ${CFG_LIBDIR} | cut -c$((${#CFG_PREFIX}+${CAT_INC}))-`
637
638 if ( [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ] ) \
639         && [ "$CFG_LIBDIR_RELATIVE" != "bin" ]; then
640     err "libdir on windows should be set to 'bin'"
641 fi
642
643 if [ $HELP -eq 1 ]
644 then
645     echo
646     exit 0
647 fi
648
649 # Validate Options
650 step_msg "validating $CFG_SELF args"
651 validate_opt
652
653 # Validate the release channel, and configure options
654 case "$CFG_RELEASE_CHANNEL" in
655     nightly )
656         msg "overriding settings for $CFG_RELEASE_CHANNEL"
657         CFG_ENABLE_LLVM_ASSERTIONS=1
658         ;;
659     dev | beta | stable)
660         ;;
661     *)
662         err "release channel must be 'dev', 'nightly', 'beta' or 'stable'"
663         ;;
664 esac
665
666 # Adjust perf and debug options for debug mode
667 if [ -n "$CFG_ENABLE_DEBUG" ]; then
668     msg "debug mode enabled, setting performance options"
669     if [ -z "$CFG_ENABLE_OPTIMIZE_PROVIDED" ]; then
670         msg "optimization not explicitly enabled, disabling optimization"
671         CFG_DISABLE_OPTIMIZE=1
672         CFG_DISABLE_OPTIMIZE_CXX=1
673     fi
674     CFG_ENABLE_DEBUG_ASSERTIONS=1
675     CFG_ENABLE_DEBUG_JEMALLOC=1
676     CFG_ENABLE_DEBUGINFO=1
677     CFG_ENABLE_LLVM_ASSERTIONS=1
678 fi
679
680 # OK, now write the debugging options
681 if [ -n "$CFG_DISABLE_OPTIMIZE" ]; then putvar CFG_DISABLE_OPTIMIZE; fi
682 if [ -n "$CFG_DISABLE_OPTIMIZE_CXX" ]; then putvar CFG_DISABLE_OPTIMIZE_CXX; fi
683 if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]; then putvar CFG_DISABLE_OPTIMIZE_LLVM; fi
684 if [ -n "$CFG_ENABLE_LLVM_ASSERTIONS" ]; then putvar CFG_ENABLE_LLVM_ASSERTIONS; fi
685 if [ -n "$CFG_ENABLE_DEBUG_ASSERTIONS" ]; then putvar CFG_ENABLE_DEBUG_ASSERTIONS; fi
686 if [ -n "$CFG_ENABLE_DEBUGINFO" ]; then putvar CFG_ENABLE_DEBUGINFO; fi
687 if [ -n "$CFG_ENABLE_DEBUG_JEMALLOC" ]; then putvar CFG_ENABLE_DEBUG_JEMALLOC; fi
688
689 # A magic value that allows the compiler to use unstable features
690 # during the bootstrap even when doing so would normally be an error
691 # because of feature staging or because the build turns on
692 # warnings-as-errors and unstable features default to warnings.  The
693 # build has to match this key in an env var. Meant to be a mild
694 # deterrent from users just turning on unstable features on the stable
695 # channel.
696 # Basing CFG_BOOTSTRAP_KEY on CFG_BOOTSTRAP_KEY lets it get picked up
697 # during a Makefile reconfig.
698 CFG_BOOTSTRAP_KEY="${CFG_BOOTSTRAP_KEY-`date +%H:%M:%S`}"
699 putvar CFG_BOOTSTRAP_KEY
700
701 step_msg "looking for build programs"
702
703 probe_need CFG_CURLORWGET  curl wget
704 if [ -z "$CFG_PYTHON_PROVIDED" ]; then
705     probe_need CFG_PYTHON      python2.7 python2.6 python2 python
706 fi
707
708 python_version=$($CFG_PYTHON -V 2>&1)
709 if [ $(echo $python_version | grep -c '^Python 2\.[4567]') -ne 1 ]; then
710     err "Found $python_version, but LLVM requires Python 2.4-2.7"
711 fi
712
713 # If we have no git directory then we are probably a tarball distribution
714 # and shouldn't attempt to load submodules
715 if [ ! -e ${CFG_SRC_DIR}.git ]
716 then
717     probe CFG_GIT          git
718     msg "git: no git directory. disabling submodules"
719     CFG_DISABLE_MANAGE_SUBMODULES=1
720 else
721     probe_need CFG_GIT     git
722 fi
723
724 # Use `md5sum` on GNU platforms, or `md5 -q` on BSD
725 probe CFG_MD5              md5
726 probe CFG_MD5SUM           md5sum
727 if [ -n "$CFG_MD5" ]
728 then
729     CFG_HASH_COMMAND="$CFG_MD5 -q | cut -c 1-8"
730 elif [ -n "$CFG_MD5SUM" ]
731 then
732     CFG_HASH_COMMAND="$CFG_MD5SUM | cut -c 1-8"
733 else
734     err 'could not find one of: md5 md5sum'
735 fi
736 putvar CFG_HASH_COMMAND
737
738 probe CFG_CLANG            clang++
739 probe CFG_CCACHE           ccache
740 probe CFG_GCC              gcc
741 probe CFG_LD               ld
742 probe CFG_VALGRIND         valgrind
743 probe CFG_PERF             perf
744 probe CFG_ISCC             iscc
745 probe CFG_ANTLR4           antlr4
746 probe CFG_GRUN             grun
747 probe CFG_FLEX             flex
748 probe CFG_BISON            bison
749 probe CFG_PANDOC           pandoc
750 probe CFG_XELATEX          xelatex
751 probe CFG_GDB              gdb
752 probe CFG_LLDB             lldb
753
754 # On MacOS X, invoking `javac` pops up a dialog if the JDK is not
755 # installed. Since `javac` is only used if `antlr4` is available,
756 # probe for it only in this case.
757 if [ ! -z "$CFG_ANTLR4" ]
758 then
759    probe CFG_JAVAC            javac
760 fi
761
762 # the valgrind rpass tests will fail if you don't have a valgrind, but they're
763 # only disabled if you opt out.
764 if [ -z "$CFG_VALGRIND" ]
765 then
766     # If the user has explicitly asked for valgrind tests, then fail
767     if [ -n "$CFG_ENABLE_VALGRIND" ] && [ -n "$CFG_ENABLE_VALGRIND_PROVIDED" ]
768     then
769         err "No valgrind present, but valgrind tests explicitly requested"
770     else
771         CFG_DISABLE_VALGRIND_RPASS=1
772         putvar CFG_DISABLE_VALGRIND_RPASS
773     fi
774 fi
775
776 if [ ! -z "$CFG_GDB" ]
777 then
778     # Store GDB's version
779     CFG_GDB_VERSION=$($CFG_GDB --version 2>/dev/null | head -1)
780     putvar CFG_GDB_VERSION
781 fi
782
783 if [ ! -z "$CFG_LLDB" ]
784 then
785     # Store LLDB's version
786     CFG_LLDB_VERSION=$($CFG_LLDB --version 2>/dev/null | head -1)
787     putvar CFG_LLDB_VERSION
788
789     # If CFG_LLDB_PYTHON_DIR is not already set from the outside and valid, try to read it from
790     # LLDB via the -P commandline options.
791     if [ -z "$CFG_LLDB_PYTHON_DIR" ] || [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
792     then
793         CFG_LLDB_PYTHON_DIR=$($CFG_LLDB -P)
794
795         # If CFG_LLDB_PYTHON_DIR is not a valid directory, set it to something more readable
796         if [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
797         then
798             CFG_LLDB_PYTHON_DIR="LLDB_PYTHON_DIRECTORY_NOT_FOUND"
799         fi
800
801         putvar CFG_LLDB_PYTHON_DIR
802     fi
803 fi
804
805 step_msg "looking for target specific programs"
806
807 probe CFG_ADB        adb
808
809 if [ ! -z "$CFG_PANDOC" ]
810 then
811     # Extract "MAJOR MINOR" from Pandoc's version number
812     PV_MAJOR_MINOR=$(pandoc --version | grep '^pandoc' |
813         sed -E 's/pandoc(.exe)? ([0-9]+)\.([0-9]+).*/\2 \3/')
814
815     MIN_PV_MAJOR="1"
816     MIN_PV_MINOR="9"
817
818     # these patterns are shell globs, *not* regexps
819     PV_MAJOR=${PV_MAJOR_MINOR% *}
820     PV_MINOR=${PV_MAJOR_MINOR#* }
821
822     if [ "$PV_MAJOR" -lt "$MIN_PV_MAJOR" ] || [ "$PV_MINOR" -lt "$MIN_PV_MINOR" ]
823     then
824         step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. Need at least $MIN_PV_MAJOR.$MIN_PV_MINOR. Disabling"
825         BAD_PANDOC=1
826     fi
827 fi
828
829 BIN_SUF=
830 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ]
831 then
832     BIN_SUF=.exe
833 fi
834
835 if [ ! -z "$CFG_ENABLE_LOCAL_RUST" ]
836 then
837     system_rustc=$(which rustc)
838     if [ -f ${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF} ]
839     then
840         : # everything already configured
841     elif [ -n "$system_rustc" ]
842     then
843         # we assume that rustc is in a /bin directory
844         CFG_LOCAL_RUST_ROOT=${system_rustc%/bin/rustc}
845     else
846         err "no local rust to use"
847     fi
848
849     CMD="${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF}"
850     LRV=`$CMD --version`
851     if [ $? -ne 0 ]
852     then
853         step_msg "failure while running $CMD --version"
854         exit 1
855     fi
856     step_msg "using rustc at: ${CFG_LOCAL_RUST_ROOT} with version: $LRV"
857     putvar CFG_LOCAL_RUST_ROOT
858 fi
859
860 # Force bitrig to build with clang; gcc doesn't like us there
861 if [ $CFG_OSTYPE = unknown-bitrig ]
862 then
863     step_msg "on Bitrig, forcing use of clang, disabling jemalloc"
864     CFG_ENABLE_CLANG=1
865     CFG_DISABLE_JEMALLOC=1
866 fi
867
868 # OS X 10.9, gcc is actually clang. This can cause some confusion in the build
869 # system, so if we find that gcc is clang, we should just use clang directly.
870 if [ $CFG_OSTYPE = apple-darwin -a -z "$CFG_ENABLE_CLANG" ]
871 then
872     CFG_OSX_GCC_VERSION=$("$CFG_GCC" --version 2>&1 | grep "Apple LLVM version")
873     if [ $? -eq 0 ]
874     then
875         step_msg "on OS X >=10.9, forcing use of clang"
876         CFG_ENABLE_CLANG=1
877     else
878         if [ $("$CFG_GCC" --version 2>&1 | grep -c ' 4\.[0-6]') -ne 0 ]; then
879             step_msg "older GCC found, using clang instead"
880             CFG_ENABLE_CLANG=1
881         else
882             # on OS X, with xcode 5 and newer, certain developers may have
883             # cc, gcc and g++ point to a  mixture of clang and gcc
884             # if so, this will create very strange build errors
885             # this last stanza is to detect some such problems and save the future rust
886             # contributor some time solving that issue.
887             # this detection could be generalized to other OSes aside from OS X
888             # but the issue seems most likely to happen on OS X
889
890             chk_cc () {
891                 $1 --version 2> /dev/null | grep -q $2
892             }
893             # check that gcc, cc and g++ all point to the same compiler.
894             # note that for xcode 5, g++ points to clang, not clang++
895             if !((chk_cc gcc clang  && chk_cc g++ clang) ||
896                 (chk_cc gcc gcc  &&( chk_cc g++ g++ || chk g++ gcc))); then
897                 err "the gcc and g++ in your path point to different compilers.
898     Check which versions are in your path with gcc --version and g++ --version.
899     To resolve this problem, either fix your PATH  or run configure with --enable-clang"
900             fi
901
902         fi
903     fi
904 fi
905
906 # If the clang isn't already enabled, check for GCC, and if it is missing, turn
907 # on clang as a backup.
908 if [ -z "$CFG_ENABLE_CLANG" ]
909 then
910   CFG_GCC_VERSION=$("$CFG_GCC" --version 2>&1)
911   if [ $? -ne 0 ]
912   then
913     step_msg "GCC not installed, will try using Clang"
914     CFG_ENABLE_CLANG=1
915   fi
916 fi
917
918 # Okay, at this point, we have made up our minds about whether we are
919 # going to force CFG_ENABLE_CLANG or not; save the setting if so.
920 if [ ! -z "$CFG_ENABLE_CLANG" ]
921 then
922     putvar CFG_ENABLE_CLANG
923 fi
924
925 # Same with jemalloc.  save the setting here.
926 if [ ! -z "$CFG_DISABLE_JEMALLOC" ]
927 then
928     putvar CFG_DISABLE_JEMALLOC
929 fi
930
931 if [ ! -z "$CFG_LLVM_ROOT" -a -z "$CFG_DISABLE_LLVM_VERSION_CHECK" -a -e "$CFG_LLVM_ROOT/bin/llvm-config" ]
932 then
933     step_msg "using custom LLVM at $CFG_LLVM_ROOT"
934
935     LLVM_CONFIG="$CFG_LLVM_ROOT/bin/llvm-config"
936     LLVM_VERSION=$($LLVM_CONFIG --version)
937
938     case $LLVM_VERSION in
939         (3.[5-7]*)
940             msg "found ok version of LLVM: $LLVM_VERSION"
941             ;;
942         (*)
943             err "bad LLVM version: $LLVM_VERSION, need >=3.5"
944             ;;
945     esac
946 fi
947
948 # Even when the user overrides the choice of CC, still try to detect
949 # clang to disable some clang-specific warnings.  We here draw a
950 # distinction between:
951 #
952 #  CFG_ENABLE_CLANG : passed --enable-clang, or host "requires" clang,
953 #  CFG_USING_CLANG : compiler (clang / gcc / $CC) looks like clang.
954 #
955 # This distinction is important because there are some safeguards we
956 # would prefer to skip when merely CFG_USING_CLANG is set; but when
957 # CFG_ENABLE_CLANG is set, that indicates that we are opting into
958 # running such safeguards.
959
960 if [ ! -z "$CC" ]
961 then
962     msg "skipping compiler inference steps; using provided CC=$CC"
963     CFG_CC="$CC"
964
965     CFG_OSX_CC_VERSION=$("$CFG_CC" --version 2>&1 | grep "clang")
966     if [ $? -eq 0 ]
967     then
968         step_msg "note, user-provided CC looks like clang; CC=$CC."
969         CFG_USING_CLANG=1
970         putvar CFG_USING_CLANG
971     fi
972 else
973     if [ ! -z "$CFG_ENABLE_CLANG" ]
974     then
975         if [ -z "$CFG_CLANG" ]
976         then
977             err "clang requested but not found"
978         fi
979         CFG_CC="$CFG_CLANG"
980         CFG_USING_CLANG=1
981         putvar CFG_USING_CLANG
982     else
983         CFG_CC="gcc"
984     fi
985 fi
986
987 if [ ! -z "$CFG_ENABLE_CLANG" ]
988 then
989     case "$CC" in
990         (''|*clang)
991         CFG_CLANG_VERSION=$($CFG_CC \
992             --version \
993             | grep version \
994             | sed 's/.*\(version .*\)/\1/; s/.*based on \(LLVM .*\))/\1/' \
995             | cut -d ' ' -f 2)
996
997         case $CFG_CLANG_VERSION in
998             (3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7*)
999             step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
1000             if [ -z "$CC" ]
1001             then
1002                 CFG_CC="clang"
1003                 CFG_CXX="clang++"
1004             fi
1005             ;;
1006             (*)
1007             err "bad CLANG version: $CFG_CLANG_VERSION, need >=3.0svn"
1008             ;;
1009         esac
1010         ;;
1011         (*)
1012         msg "skipping CFG_ENABLE_CLANG version check; provided CC=$CC"
1013         ;;
1014     esac
1015 fi
1016
1017 if [ ! -z "$CFG_ENABLE_CCACHE" ]
1018 then
1019     if [ -z "$CC" ]
1020     then
1021         if [ -z "$CFG_CCACHE" ]
1022         then
1023             err "ccache requested but not found"
1024         fi
1025
1026         CFG_CC="ccache $CFG_CC"
1027     fi
1028 fi
1029
1030 if [ -z "$CC" -a -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
1031 then
1032     err "either clang or gcc is required"
1033 fi
1034
1035 # All safeguards based on $CFG_ENABLE_CLANG should occur before this
1036 # point in the script; after this point, script logic should inspect
1037 # $CFG_USING_CLANG rather than $CFG_ENABLE_CLANG.
1038
1039 # Set CFG_{CC,CXX,CPP,CFLAGS,CXXFLAGS}
1040 envopt CC
1041 envopt CXX
1042 envopt CPP
1043 envopt CFLAGS
1044 envopt CXXFLAGS
1045
1046 # a little post-processing of various config values
1047 CFG_PREFIX=${CFG_PREFIX%/}
1048 CFG_MANDIR=${CFG_MANDIR%/}
1049 CFG_HOST="$(echo $CFG_HOST | tr ',' ' ')"
1050 CFG_TARGET="$(echo $CFG_TARGET | tr ',' ' ')"
1051 CFG_SUPPORTED_TARGET=""
1052 for target_file in ${CFG_SRC_DIR}mk/cfg/*.mk; do
1053   CFG_SUPPORTED_TARGET="${CFG_SUPPORTED_TARGET} $(basename "$target_file" .mk)"
1054 done
1055
1056 # copy build-triples to host-triples so that builds are a subset of hosts
1057 V_TEMP=""
1058 for i in $CFG_BUILD $CFG_HOST;
1059 do
1060    echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
1061 done
1062 CFG_HOST=$V_TEMP
1063
1064 # copy host-triples to target-triples so that hosts are a subset of targets
1065 V_TEMP=""
1066 for i in $CFG_HOST $CFG_TARGET;
1067 do
1068    echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
1069 done
1070 CFG_TARGET=$V_TEMP
1071
1072 # check target-specific tool-chains
1073 for i in $CFG_TARGET
1074 do
1075     L_CHECK=false
1076     for j in $CFG_SUPPORTED_TARGET
1077     do
1078         if [ $i = $j ]
1079         then
1080             L_CHECK=true
1081         fi
1082     done
1083
1084     if [ $L_CHECK = false ]
1085     then
1086         err "unsupported target triples \"$i\" found"
1087     fi
1088
1089     case $i in
1090         arm-linux-androideabi)
1091
1092             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-gcc ]
1093             then
1094                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-gcc not found"
1095             fi
1096             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-g++ ]
1097             then
1098                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-g++ not found"
1099             fi
1100             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-ar ]
1101             then
1102                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-ar not found"
1103             fi
1104             ;;
1105
1106         arm-apple-darwin)
1107             if [ $CFG_OSTYPE != apple-darwin ]
1108             then
1109                 err "The iOS target is only supported on Mac OS X"
1110             fi
1111             ;;
1112
1113
1114         *-musl)
1115             if [ ! -f $CFG_MUSL_ROOT/lib/libc.a ]
1116             then
1117                 err "musl libc $CFG_MUSL_ROOT/lib/libc.a not found"
1118             fi
1119             ;;
1120
1121         *-msvc)
1122             # Currently the build system is not configured to build jemalloc
1123             # with MSVC, so we omit this optional dependency.
1124             step_msg "targeting MSVC, disabling jemalloc"
1125             CFG_DISABLE_JEMALLOC=1
1126             putvar CFG_DISABLE_JEMALLOC
1127
1128             # There are some MSYS python builds which will auto-translate
1129             # windows-style paths to MSYS-style paths in Python itself.
1130             # Unfortunately this breaks LLVM's build system as somewhere along
1131             # the line LLVM prints a path into a file from Python and then CMake
1132             # later tries to interpret that path. If Python prints a MSYS path
1133             # and CMake tries to use it as a Windows path, you're gonna have a
1134             # Bad Time.
1135             #
1136             # Consequently here we try to detect when that happens and print an
1137             # error if it does.
1138             if $CFG_PYTHON -c 'import sys; print sys.argv[1]' `pwd` | grep '^/'
1139             then
1140                 err "python is silently translating windows paths to MSYS paths \
1141                      and the build will fail if this python is used.\n\n \
1142                      Either an official python install must be used or an \
1143                      alternative python package in MinGW must be used."
1144             fi
1145
1146             # MSVC requires cmake because that's how we're going to build LLVM
1147             probe_need CFG_CMAKE cmake
1148
1149             # Use the REG program to figure out where VS is installed
1150             # We need to figure out where cl.exe and link.exe are, so we do some
1151             # munging and some probing here. We also look for the default
1152             # INCLUDE and LIB variables for MSVC so we can set those in the
1153             # build system as well.
1154             install=$(reg QUERY \
1155                        'HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\12.0' \
1156                        -v InstallDir)
1157             need_ok "couldn't find visual studio install root"
1158             CFG_MSVC_ROOT=$(echo "$install" | grep InstallDir | sed 's/.*REG_SZ[ ]*//')
1159             CFG_MSVC_ROOT=$(dirname "$CFG_MSVC_ROOT")
1160             CFG_MSVC_ROOT=$(dirname "$CFG_MSVC_ROOT")
1161             putvar CFG_MSVC_ROOT
1162
1163             case $i in
1164                 x86_64-*)
1165                     bits=x86_64
1166                     msvc_part=amd64
1167                     ;;
1168                 i686-*)
1169                     bits=i386
1170                     msvc_part=
1171                     ;;
1172                 *)
1173                     err "can only target x86 targets for MSVC"
1174                     ;;
1175             esac
1176             bindir="${CFG_MSVC_ROOT}/VC/bin"
1177             if [ ! -z "$msvc_part" ]; then
1178                 bindir="$bindir/$msvc_part"
1179             fi
1180             eval CFG_MSVC_BINDIR_$bits="\"$bindir\""
1181             eval CFG_MSVC_CL_$bits="\"$bindir/cl.exe\""
1182             eval CFG_MSVC_LIB_$bits="\"$bindir/lib.exe\""
1183             eval CFG_MSVC_LINK_$bits="\"$bindir/link.exe\""
1184
1185             vcvarsall="${CFG_MSVC_ROOT}/VC/vcvarsall.bat"
1186             include_path=$(cmd /c "\"$vcvarsall\" $msvc_part && cmd /c echo %INCLUDE%")
1187             need_ok "failed to learn about MSVC's INCLUDE"
1188             lib_path=$(cmd /c "\"$vcvarsall\" $msvc_part && cmd /c echo %LIB%")
1189             need_ok "failed to learn about MSVC's LIB"
1190
1191             eval CFG_MSVC_INCLUDE_PATH_${bits}="\"$include_path\""
1192             eval CFG_MSVC_LIB_PATH_${bits}="\"$lib_path\""
1193
1194             putvar CFG_MSVC_BINDIR_${bits}
1195             putvar CFG_MSVC_CL_${bits}
1196             putvar CFG_MSVC_LIB_${bits}
1197             putvar CFG_MSVC_LINK_${bits}
1198             putvar CFG_MSVC_INCLUDE_PATH_${bits}
1199             putvar CFG_MSVC_LIB_PATH_${bits}
1200             ;;
1201
1202         *)
1203             ;;
1204     esac
1205 done
1206
1207 if [ ! -z "$CFG_PERF" ]
1208 then
1209     HAVE_PERF_LOGFD=`$CFG_PERF stat --log-fd 2>&1 | grep 'unknown option'`
1210     if [ -z "$HAVE_PERF_LOGFD" ];
1211     then
1212         CFG_PERF_WITH_LOGFD=1
1213         putvar CFG_PERF_WITH_LOGFD
1214     fi
1215 fi
1216
1217 step_msg "making directories"
1218
1219 for i in \
1220     doc doc/std doc/extra \
1221     dl tmp dist
1222 do
1223     make_dir $i
1224 done
1225
1226 for t in $CFG_HOST
1227 do
1228     make_dir $t/llvm
1229 done
1230
1231 for t in $CFG_HOST
1232 do
1233     make_dir $t/rustllvm
1234 done
1235
1236 for t in $CFG_TARGET
1237 do
1238   make_dir $t/rt
1239   for s in 0 1 2 3
1240   do
1241     make_dir $t/rt/stage$s
1242     make_dir $t/rt/jemalloc
1243     make_dir $t/rt/compiler-rt
1244     for i in                                          \
1245       isaac sync test \
1246       arch/i386 arch/x86_64 arch/arm arch/aarch64 arch/mips arch/powerpc
1247     do
1248       make_dir $t/rt/stage$s/$i
1249     done
1250   done
1251 done
1252
1253 for h in $CFG_HOST
1254 do
1255     for t in $CFG_TARGET
1256     do
1257         # host lib dir stage0
1258         make_dir $h/stage0/lib
1259
1260         # target bin dir stage0
1261         make_dir $h/stage0/lib/rustlib/$t/bin
1262
1263         # target lib dir stage0
1264         make_dir $h/stage0/lib/rustlib/$t/lib
1265
1266         for i in 0 1 2 3
1267         do
1268             # host bin dir
1269             make_dir $h/stage$i/bin
1270
1271             # host lib dir
1272             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE
1273
1274             # host test dir
1275             make_dir $h/stage$i/test
1276
1277             # target bin dir
1278             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/bin
1279
1280             # target lib dir
1281             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/lib
1282         done
1283     done
1284
1285     make_dir $h/test/run-pass
1286     make_dir $h/test/run-pass-valgrind
1287     make_dir $h/test/run-pass-fulldeps
1288     make_dir $h/test/run-fail
1289     make_dir $h/test/run-fail-fulldeps
1290     make_dir $h/test/compile-fail
1291     make_dir $h/test/parse-fail
1292     make_dir $h/test/compile-fail-fulldeps
1293     make_dir $h/test/bench
1294     make_dir $h/test/perf
1295     make_dir $h/test/pretty
1296     make_dir $h/test/debuginfo-gdb
1297     make_dir $h/test/debuginfo-lldb
1298     make_dir $h/test/codegen
1299     make_dir $h/test/rustdoc
1300 done
1301
1302 # Configure submodules
1303 step_msg "configuring submodules"
1304
1305 # Have to be in the top of src directory for this
1306 if [ -z $CFG_DISABLE_MANAGE_SUBMODULES ]
1307 then
1308     cd ${CFG_SRC_DIR}
1309
1310     msg "git: submodule sync"
1311     "${CFG_GIT}" submodule sync
1312
1313     msg "git: submodule init"
1314     "${CFG_GIT}" submodule init
1315
1316     # Disable submodules that we're not using
1317     if [ ! -z "${CFG_LLVM_ROOT}" ]; then
1318         msg "git: submodule deinit src/llvm"
1319         "${CFG_GIT}" submodule deinit src/llvm
1320     fi
1321     if [ ! -z "${CFG_JEMALLOC_ROOT}" ]; then
1322         msg "git: submodule deinit src/jemalloc"
1323         "${CFG_GIT}" submodule deinit src/jemalloc
1324     fi
1325
1326     msg "git: submodule update"
1327     "${CFG_GIT}" submodule update
1328     need_ok "git failed"
1329
1330     msg "git: submodule foreach sync"
1331     "${CFG_GIT}" submodule foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi'
1332     need_ok "git failed"
1333
1334     msg "git: submodule foreach update"
1335     "${CFG_GIT}" submodule update --recursive
1336     need_ok "git failed"
1337
1338     # NB: this is just for the sake of getting the submodule SHA1 values
1339     # and status written into the build log.
1340     msg "git: submodule status"
1341     "${CFG_GIT}" submodule status --recursive
1342
1343     msg "git: submodule clobber"
1344     "${CFG_GIT}" submodule foreach --recursive git clean -dxf
1345     need_ok "git failed"
1346     "${CFG_GIT}" submodule foreach --recursive git checkout .
1347     need_ok "git failed"
1348
1349     cd ${CFG_BUILD_DIR}
1350 fi
1351
1352 # Configure llvm, only if necessary
1353 step_msg "looking at LLVM"
1354 CFG_LLVM_SRC_DIR=${CFG_SRC_DIR}src/llvm/
1355 for t in $CFG_HOST
1356 do
1357     do_reconfigure=1
1358     is_msvc=0
1359     case "$t" in
1360         (*-msvc)
1361         is_msvc=1
1362         ;;
1363     esac
1364
1365     if [ -z $CFG_LLVM_ROOT ]
1366     then
1367         LLVM_BUILD_DIR=${CFG_BUILD_DIR}$t/llvm
1368         if [ ! -z "$CFG_DISABLE_OPTIMIZE_LLVM" ]
1369         then
1370             LLVM_DBG_OPTS="--enable-debug-symbols --disable-optimized"
1371             # Just use LLVM straight from its build directory to
1372             # avoid 'make install' time
1373             LLVM_INST_DIR=$LLVM_BUILD_DIR/Debug
1374         else
1375             LLVM_DBG_OPTS="--enable-optimized"
1376             LLVM_INST_DIR=$LLVM_BUILD_DIR/Release
1377         fi
1378         if [ -z "$CFG_ENABLE_LLVM_ASSERTIONS" ]
1379         then
1380             LLVM_ASSERTION_OPTS="--disable-assertions"
1381         else
1382             LLVM_ASSERTION_OPTS="--enable-assertions"
1383
1384             # Apparently even if we request assertions be enabled for MSVC,
1385             # LLVM's CMake build system ignore this and outputs in `Release`
1386             # anyway.
1387             if [ ${is_msvc} -eq 0 ]; then
1388                 LLVM_INST_DIR=${LLVM_INST_DIR}+Asserts
1389             fi
1390         fi
1391     else
1392         msg "not reconfiguring LLVM, external LLVM root"
1393         # The user is using their own LLVM
1394         LLVM_BUILD_DIR=
1395         LLVM_INST_DIR=$CFG_LLVM_ROOT
1396         do_reconfigure=0
1397     fi
1398
1399
1400     if [ ${do_reconfigure} -ne 0 ]
1401     then
1402     # because git is hilarious, it might have put the module index
1403     # in a couple places.
1404         index1="${CFG_SRC_DIR}.git/modules/src/llvm/index"
1405         index2="${CFG_SRC_DIR}src/llvm/.git/index"
1406         for index in ${index1} ${index2}
1407         do
1408             config_status="${LLVM_BUILD_DIR}/config.status"
1409             if test -e ${index} -a \
1410                     -e ${config_status} -a \
1411                     ${config_status} -nt ${index}
1412             then
1413                 msg "not reconfiguring LLVM, config.status is fresh"
1414                 do_reconfigure=0
1415             fi
1416         done
1417     fi
1418
1419     if [ ${do_reconfigure} -ne 0 ] && [ ${is_msvc} -ne 0 ]
1420     then
1421         msg "configuring LLVM for $t with cmake"
1422
1423         CMAKE_ARGS="-DLLVM_INCLUDE_TESTS=OFF"
1424         if [ ! -z "$CFG_DISABLE_OPTIMIZE_LLVM" ]; then
1425             CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=Debug"
1426         else
1427             CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=Release"
1428         fi
1429         if [ -z "$CFG_ENABLE_LLVM_ASSERTIONS" ]
1430         then
1431             CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_ASSERTIONS=OFF"
1432         else
1433             CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_ASSERTIONS=ON"
1434         fi
1435
1436         msg "configuring LLVM with:"
1437         msg "$CMAKE_ARGS"
1438         case "$t" in
1439             x86_64-*)
1440                 generator="Visual Studio 12 2013 Win64"
1441                 ;;
1442             i686-*)
1443                 generator="Visual Studio 12 2013"
1444                 ;;
1445             *)
1446                 err "can only build LLVM for x86 platforms"
1447                 ;;
1448         esac
1449         (cd $LLVM_BUILD_DIR && "$CFG_CMAKE" $CFG_LLVM_SRC_DIR \
1450                                             -G "$generator" \
1451                                             $CMAKE_ARGS)
1452         need_ok "LLVM cmake configure failed"
1453     fi
1454
1455     if [ ${do_reconfigure} -ne 0 ] && [ ${is_msvc} -eq 0 ]
1456     then
1457         # LLVM's configure doesn't recognize the new Windows triples yet
1458         gnu_t=$(to_gnu_triple $t)
1459
1460         msg "configuring LLVM for $gnu_t"
1461
1462         LLVM_TARGETS="--enable-targets=x86,x86_64,arm,aarch64,mips,powerpc"
1463         LLVM_BUILD="--build=$gnu_t"
1464         LLVM_HOST="--host=$gnu_t"
1465         LLVM_TARGET="--target=$gnu_t"
1466
1467         # Disable unused LLVM features
1468         LLVM_OPTS="$LLVM_DBG_OPTS $LLVM_ASSERTION_OPTS --disable-docs --enable-bindings=none"
1469         # Disable term-info, linkage of which comes in multiple forms,
1470         # making our snapshots incompatible (#9334)
1471         LLVM_OPTS="$LLVM_OPTS --disable-terminfo"
1472         # Try to have LLVM pull in as few dependencies as possible (#9397)
1473         LLVM_OPTS="$LLVM_OPTS --disable-zlib --disable-libffi"
1474
1475         # Use win32 native thread/lock apis instead of pthread wrapper.
1476         # (llvm's configure tries to find pthread first, so we have to disable it explicitly.)
1477         # Also note that pthreads works badly on mingw-w64 systems: #8996
1478         case "$CFG_BUILD" in
1479             (*-windows-gnu)
1480             LLVM_OPTS="$LLVM_OPTS --disable-pthreads"
1481             ;;
1482         esac
1483
1484         case "$CFG_CC" in
1485             ("ccache clang")
1486             LLVM_CXX_32="ccache clang++ -Qunused-arguments"
1487             LLVM_CC_32="ccache clang -Qunused-arguments"
1488
1489             LLVM_CXX_64="ccache clang++ -Qunused-arguments"
1490             LLVM_CC_64="ccache clang -Qunused-arguments"
1491             ;;
1492             ("clang")
1493             LLVM_CXX_32="clang++ -Qunused-arguments"
1494             LLVM_CC_32="clang -Qunused-arguments"
1495
1496             LLVM_CXX_64="clang++ -Qunused-arguments"
1497             LLVM_CC_64="clang -Qunused-arguments"
1498             ;;
1499             ("ccache gcc")
1500             LLVM_CXX_32="ccache g++"
1501             LLVM_CC_32="ccache gcc"
1502
1503             LLVM_CXX_64="ccache g++"
1504             LLVM_CC_64="ccache gcc"
1505             ;;
1506             ("gcc")
1507             LLVM_CXX_32="g++"
1508             LLVM_CC_32="gcc"
1509
1510             LLVM_CXX_64="g++"
1511             LLVM_CC_64="gcc"
1512             ;;
1513
1514             (*)
1515             msg "inferring LLVM_CXX/CC from CXX/CC = $CXX/$CC"
1516             LLVM_CXX_32="$CXX"
1517             LLVM_CC_32="$CC"
1518
1519             LLVM_CXX_64="$CXX"
1520             LLVM_CC_64="$CC"
1521             ;;
1522         esac
1523
1524         case "$CFG_CPUTYPE" in
1525             (x86*)
1526                 LLVM_CXX_32="$LLVM_CXX_32 -m32"
1527                 LLVM_CC_32="$LLVM_CC_32 -m32"
1528
1529                 LLVM_CFLAGS_32="-m32"
1530                 LLVM_CXXFLAGS_32="-m32"
1531                 LLVM_LDFLAGS_32="-m32"
1532
1533                 LLVM_CFLAGS_64=""
1534                 LLVM_CXXFLAGS_64=""
1535                 LLVM_LDFLAGS_64=""
1536
1537                 LLVM_CXX_32="$LLVM_CXX_32 -m32"
1538                 LLVM_CC_32="$LLVM_CC_32 -m32"
1539                 ;;
1540
1541             (*)
1542                 LLVM_CFLAGS_32=""
1543                 LLVM_CXXFLAGS_32=""
1544                 LLVM_LDFLAGS_32=""
1545
1546                 LLVM_CFLAGS_64=""
1547                 LLVM_CXXFLAGS_64=""
1548                 LLVM_LDFLAGS_64=""
1549                 ;;
1550         esac
1551
1552         if echo $t | grep -q x86_64
1553         then
1554             LLVM_CXX=$LLVM_CXX_64
1555             LLVM_CC=$LLVM_CC_64
1556             LLVM_CFLAGS=$LLVM_CFLAGS_64
1557             LLVM_CXXFLAGS=$LLVM_CXXFLAGS_64
1558             LLVM_LDFLAGS=$LLVM_LDFLAGS_64
1559         else
1560             LLVM_CXX=$LLVM_CXX_32
1561             LLVM_CC=$LLVM_CC_32
1562             LLVM_CFLAGS=$LLVM_CFLAGS_32
1563             LLVM_CXXFLAGS=$LLVM_CXXFLAGS_32
1564             LLVM_LDFLAGS=$LLVM_LDFLAGS_32
1565         fi
1566
1567         CXX=$LLVM_CXX
1568         CC=$LLVM_CC
1569         CFLAGS=$LLVM_CFLAGS
1570         CXXFLAGS=$LLVM_CXXFLAGS
1571         LDFLAGS=$LLVM_LDFLAGS
1572
1573         if [ -z "$CFG_DISABLE_LIBCPP" ] && [ -n "$CFG_USING_CLANG" ]; then
1574             LLVM_OPTS="$LLVM_OPTS --enable-libcpp"
1575         fi
1576
1577         LLVM_FLAGS="$LLVM_TARGETS $LLVM_OPTS $LLVM_BUILD \
1578                         $LLVM_HOST $LLVM_TARGET --with-python=$CFG_PYTHON"
1579
1580         msg "configuring LLVM with:"
1581         msg "$LLVM_FLAGS"
1582
1583         export CXX
1584         export CC
1585         export CFLAGS
1586         export CXXFLAGS
1587         export LDFLAGS
1588
1589         cd $LLVM_BUILD_DIR
1590         case $CFG_SRC_DIR in
1591             /* | [a-z]:* | [A-Z]:*)
1592                 ${CFG_LLVM_SRC_DIR}configure $LLVM_FLAGS
1593                 ;;
1594             *)
1595                 ${CFG_BUILD_DIR}${CFG_LLVM_SRC_DIR}configure \
1596                     $LLVM_FLAGS
1597                 ;;
1598         esac
1599         need_ok "LLVM configure failed"
1600
1601         cd $CFG_BUILD_DIR
1602     fi
1603
1604     # Construct variables for LLVM build and install directories for
1605     # each target. These will be named
1606     # CFG_LLVM_BUILD_DIR_${target_triple} but all the hyphens in
1607     # target_triple will be converted to underscore, because bash
1608     # variables can't contain hyphens. The makefile will then have to
1609     # convert back.
1610     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1611     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1612     eval ${CFG_LLVM_BUILD_DIR}="'$LLVM_BUILD_DIR'"
1613     eval ${CFG_LLVM_INST_DIR}="'$LLVM_INST_DIR'"
1614 done
1615
1616
1617 step_msg "writing configuration"
1618
1619 putvar CFG_SRC_DIR
1620 putvar CFG_SRC_DIR_RELATIVE
1621 putvar CFG_BUILD_DIR
1622 putvar CFG_OSTYPE
1623 putvar CFG_CPUTYPE
1624 putvar CFG_CONFIGURE_ARGS
1625 putvar CFG_PREFIX
1626 putvar CFG_HOST
1627 putvar CFG_TARGET
1628 putvar CFG_LIBDIR_RELATIVE
1629 putvar CFG_DISABLE_MANAGE_SUBMODULES
1630 putvar CFG_ANDROID_CROSS_PATH
1631 putvar CFG_MANDIR
1632
1633 # Avoid spurious warnings from clang by feeding it original source on
1634 # ccache-miss rather than preprocessed input.
1635 if [ ! -z "$CFG_ENABLE_CCACHE" ] && [ ! -z "$CFG_USING_CLANG" ]
1636 then
1637     CFG_CCACHE_CPP2=1
1638     putvar CFG_CCACHE_CPP2
1639 fi
1640
1641 if [ ! -z "$CFG_ENABLE_CCACHE" ]
1642 then
1643     CFG_CCACHE_BASEDIR=${CFG_SRC_DIR}
1644     putvar CFG_CCACHE_BASEDIR
1645 fi
1646
1647
1648 if [ ! -z $BAD_PANDOC ]
1649 then
1650     CFG_PANDOC=
1651     putvar CFG_PANDOC
1652 fi
1653
1654 putvar CFG_LLVM_SRC_DIR
1655
1656 for t in $CFG_HOST
1657 do
1658     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1659     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1660     putvar $CFG_LLVM_BUILD_DIR
1661     putvar $CFG_LLVM_INST_DIR
1662 done
1663
1664 msg
1665 copy_if_changed ${CFG_SRC_DIR}Makefile.in ./Makefile
1666 move_if_changed config.tmp config.mk
1667 rm -f config.tmp
1668 touch config.stamp
1669
1670 if [ -z "$CFG_ENABLE_DEBUG" ]; then
1671     step_msg "configured in release mode. for development consider --enable-debug"
1672 else
1673     step_msg "complete"
1674 fi
1675
1676 msg "run \`make help\`"
1677 msg