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