]> git.lizzy.rs Git - rust.git/blob - configure
incr.comp.: Add some caching to Predecessors construction.
[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 debuginfo-only-std 0 "build only libstd with debugging information"
651 opt_nosave debug-jemalloc 0 "build jemalloc with --enable-debug --enable-fill"
652
653 valopt localstatedir "/var/lib" "local state directory"
654 valopt sysconfdir "/etc" "install system configuration files"
655
656 valopt datadir "${CFG_PREFIX}/share" "install data"
657 valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
658 valopt llvm-root "" "set LLVM root"
659 valopt python "" "set path to python"
660 valopt jemalloc-root "" "set directory where libjemalloc_pic.a is located"
661 valopt build "${DEFAULT_BUILD}" "GNUs ./configure syntax LLVM build triple"
662 valopt android-cross-path "" "Android NDK standalone path (deprecated)"
663 valopt i686-linux-android-ndk "" "i686-linux-android NDK standalone path"
664 valopt arm-linux-androideabi-ndk "" "arm-linux-androideabi NDK standalone path"
665 valopt armv7-linux-androideabi-ndk "" "armv7-linux-androideabi NDK standalone path"
666 valopt aarch64-linux-android-ndk "" "aarch64-linux-android NDK standalone path"
667 valopt nacl-cross-path  "" "NaCl SDK path (Pepper Canary is recommended). Must be absolute!"
668 valopt musl-root "/usr/local" "MUSL root installation directory (deprecated)"
669 valopt musl-root-x86_64 "" "x86_64-unknown-linux-musl install directory"
670 valopt musl-root-i686 "" "i686-unknown-linux-musl install directory"
671 valopt musl-root-arm "" "arm-unknown-linux-musleabi install directory"
672 valopt musl-root-armhf "" "arm-unknown-linux-musleabihf install directory"
673 valopt musl-root-armv7 "" "armv7-unknown-linux-musleabihf install directory"
674 valopt extra-filename "" "Additional data that is hashed and passed to the -C extra-filename flag"
675
676 if [ -e ${CFG_SRC_DIR}.git ]
677 then
678     valopt release-channel "dev" "the name of the release channel to build"
679 else
680     # If we have no git directory then we are probably a tarball distribution
681     # and should default to stable channel - Issue 28322
682     probe CFG_GIT          git
683     msg "git: no git directory. Changing default release channel to stable"
684     valopt release-channel "stable" "the name of the release channel to build"
685 fi
686
687 # Used on systems where "cc" and "ar" are unavailable
688 valopt default-linker "cc" "the default linker"
689 valopt default-ar     "ar" "the default ar"
690
691 # Many of these are saved below during the "writing configuration" step
692 # (others are conditionally saved).
693 opt_nosave manage-submodules 1 "let the build manage the git submodules"
694 opt_nosave clang 0 "prefer clang to gcc for building the runtime"
695 opt_nosave jemalloc 1 "build liballoc with jemalloc"
696 opt elf-tls 1 "elf thread local storage on platforms where supported"
697 opt full-bootstrap 0 "build three compilers instead of two"
698
699 valopt_nosave prefix "/usr/local" "set installation prefix"
700 valopt_nosave local-rust-root "/usr/local" "set prefix for local rust binary"
701 valopt_nosave host "${CFG_BUILD}" "GNUs ./configure syntax LLVM host triples"
702 valopt_nosave target "${CFG_HOST}" "GNUs ./configure syntax LLVM target triples"
703 valopt_nosave mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
704 valopt_nosave docdir "${CFG_PREFIX}/share/doc/rust" "install documentation in PATH"
705
706 # On Windows this determines root of the subtree for target libraries.
707 # Host runtime libs always go to 'bin'.
708 valopt libdir "${CFG_PREFIX}/lib" "install libraries"
709
710 case "$CFG_LIBDIR" in
711     "$CFG_PREFIX"/*) CAT_INC=2;;
712     "$CFG_PREFIX"*)  CAT_INC=1;;
713     *)
714         err "libdir must begin with the prefix. Use --prefix to set it accordingly.";;
715 esac
716
717 CFG_LIBDIR_RELATIVE=`echo ${CFG_LIBDIR} | cut -c$((${#CFG_PREFIX}+${CAT_INC}))-`
718
719 if [ $HELP -eq 1 ]
720 then
721     echo
722     exit 0
723 fi
724
725 # Validate Options
726 if [ -z "$CFG_DISABLE_OPTION_CHECKING" ]
727 then
728     step_msg "validating $CFG_SELF args"
729     validate_opt
730 fi
731
732 # Validate the release channel, and configure options
733 case "$CFG_RELEASE_CHANNEL" in
734     nightly )
735         msg "overriding settings for $CFG_RELEASE_CHANNEL"
736         CFG_ENABLE_LLVM_ASSERTIONS=1
737         # FIXME(stage0) re-enable this on the next stage0 now that #35566 is
738         # fixed
739         case "$CFG_BUILD" in
740           *-pc-windows-gnu)
741             ;;
742           *)
743             CFG_ENABLE_DEBUGINFO_LINES=1
744             CFG_ENABLE_DEBUGINFO_ONLY_STD=1
745             ;;
746         esac
747
748         ;;
749     beta | stable)
750         msg "overriding settings for $CFG_RELEASE_CHANNEL"
751         case "$CFG_BUILD" in
752           *-pc-windows-gnu)
753             ;;
754           *)
755             CFG_ENABLE_DEBUGINFO_LINES=1
756             CFG_ENABLE_DEBUGINFO_ONLY_STD=1
757             ;;
758         esac
759         ;;
760     dev)
761         ;;
762     *)
763         err "release channel must be 'dev', 'nightly', 'beta' or 'stable'"
764         ;;
765 esac
766
767 # Adjust perf and debug options for debug mode
768 if [ -n "$CFG_ENABLE_DEBUG" ]; then
769     msg "debug mode enabled, setting performance options"
770     if [ -z "$CFG_ENABLE_OPTIMIZE_PROVIDED" ]; then
771         msg "optimization not explicitly enabled, disabling optimization"
772         CFG_DISABLE_OPTIMIZE=1
773         CFG_DISABLE_OPTIMIZE_CXX=1
774     fi
775
776     # Set following variables to 1 unless setting already provided
777     enable_if_not_disabled debug-assertions
778     enable_if_not_disabled debug-jemalloc
779     enable_if_not_disabled debuginfo
780     enable_if_not_disabled llvm-assertions
781 fi
782
783 # OK, now write the debugging options
784 if [ -n "$CFG_DISABLE_OPTIMIZE" ]; then putvar CFG_DISABLE_OPTIMIZE; fi
785 if [ -n "$CFG_DISABLE_OPTIMIZE_CXX" ]; then putvar CFG_DISABLE_OPTIMIZE_CXX; fi
786 if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]; then putvar CFG_DISABLE_OPTIMIZE_LLVM; fi
787 if [ -n "$CFG_ENABLE_LLVM_ASSERTIONS" ]; then putvar CFG_ENABLE_LLVM_ASSERTIONS; fi
788 if [ -n "$CFG_ENABLE_DEBUG_ASSERTIONS" ]; then putvar CFG_ENABLE_DEBUG_ASSERTIONS; fi
789 if [ -n "$CFG_ENABLE_LLVM_RELEASE_DEBUGINFO" ]; then putvar CFG_ENABLE_LLVM_RELEASE_DEBUGINFO; fi
790 if [ -n "$CFG_ENABLE_DEBUGINFO" ]; then putvar CFG_ENABLE_DEBUGINFO; fi
791 if [ -n "$CFG_ENABLE_DEBUGINFO_LINES" ]; then putvar CFG_ENABLE_DEBUGINFO_LINES; fi
792 if [ -n "$CFG_ENABLE_DEBUGINFO_ONLY_STD" ]; then putvar CFG_ENABLE_DEBUGINFO_ONLY_STD; fi
793 if [ -n "$CFG_ENABLE_DEBUG_JEMALLOC" ]; then putvar CFG_ENABLE_DEBUG_JEMALLOC; fi
794
795 step_msg "looking for build programs"
796
797 probe_need CFG_CURL curl
798 if [ -z "$CFG_PYTHON_PROVIDED" ]; then
799     probe_need CFG_PYTHON      python2.7 python2 python
800 fi
801
802 python_version=$($CFG_PYTHON -V 2>&1)
803 if [ $(echo $python_version | grep -c '^Python 2\.7') -ne 1 ]; then
804     err "Found $python_version, but Python 2.7 is required"
805 fi
806
807 # If we have no git directory then we are probably a tarball distribution
808 # and shouldn't attempt to load submodules
809 if [ ! -e ${CFG_SRC_DIR}.git ]
810 then
811     probe CFG_GIT          git
812     msg "git: no git directory. disabling submodules"
813     CFG_DISABLE_MANAGE_SUBMODULES=1
814 else
815     probe_need CFG_GIT     git
816 fi
817
818 # Use `md5sum` on GNU platforms, or `md5 -q` on BSD
819 probe CFG_MD5              md5
820 probe CFG_MD5SUM           md5sum
821 if [ -n "$CFG_MD5" ]
822 then
823     CFG_HASH_COMMAND="$CFG_MD5 -q | cut -c 1-8"
824 elif [ -n "$CFG_MD5SUM" ]
825 then
826     CFG_HASH_COMMAND="$CFG_MD5SUM | cut -c 1-8"
827 else
828     err 'could not find one of: md5 md5sum'
829 fi
830 putvar CFG_HASH_COMMAND
831
832 probe CFG_CLANG            clang++
833 probe CFG_CCACHE           ccache
834 probe CFG_GCC              gcc
835 probe CFG_LD               ld
836 probe CFG_VALGRIND         valgrind
837 probe CFG_PERF             perf
838 probe CFG_ISCC             iscc
839 probe CFG_ANTLR4           antlr4
840 probe CFG_GRUN             grun
841 probe CFG_FLEX             flex
842 probe CFG_BISON            bison
843 probe CFG_GDB              gdb
844 probe CFG_LLDB             lldb
845
846 if [ -n "$CFG_ENABLE_NINJA" ]
847 then
848   probe CFG_NINJA            ninja
849   if [ -z "$CFG_NINJA" ]
850   then
851     # On Debian and Fedora, the `ninja` binary is an IRC bot, so the build tool was
852     # renamed. Handle this case.
853     probe CFG_NINJA            ninja-build
854   fi
855 fi
856
857 # For building LLVM
858 if [ -z "$CFG_LLVM_ROOT" ]
859 then
860   probe_need CFG_CMAKE cmake
861 fi
862
863 # On MacOS X, invoking `javac` pops up a dialog if the JDK is not
864 # installed. Since `javac` is only used if `antlr4` is available,
865 # probe for it only in this case.
866 if [ -n "$CFG_ANTLR4" ]
867 then
868    CFG_ANTLR4_JAR="\"$(find /usr/ -name antlr-complete.jar 2>/dev/null | head -n 1)\""
869    if [ "x" = "x$CFG_ANTLR4_JAR" ]
870    then
871      CFG_ANTLR4_JAR="\"$(find ~ -name antlr-complete.jar 2>/dev/null | head -n 1)\""
872    fi
873    putvar CFG_ANTLR4_JAR      $CFG_ANTLR4_JAR
874    probe CFG_JAVAC            javac
875 fi
876
877 # the valgrind rpass tests will fail if you don't have a valgrind, but they're
878 # only disabled if you opt out.
879 if [ -z "$CFG_VALGRIND" ]
880 then
881     # If the user has explicitly asked for valgrind tests, then fail
882     if [ -n "$CFG_ENABLE_VALGRIND" ] && [ -n "$CFG_ENABLE_VALGRIND_PROVIDED" ]
883     then
884         err "No valgrind present, but valgrind tests explicitly requested"
885     else
886         CFG_DISABLE_VALGRIND_RPASS=1
887         putvar CFG_DISABLE_VALGRIND_RPASS
888     fi
889 fi
890
891 if [ -n "$CFG_LLDB" ]
892 then
893     # Store LLDB's version
894     CFG_LLDB_VERSION=$($CFG_LLDB --version 2>/dev/null | head -1)
895     putvar CFG_LLDB_VERSION
896
897     # If CFG_LLDB_PYTHON_DIR is not already set from the outside and valid, try to read it from
898     # LLDB via the -P commandline options.
899     if [ -z "$CFG_LLDB_PYTHON_DIR" ] || [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
900     then
901         CFG_LLDB_PYTHON_DIR=$($CFG_LLDB -P)
902
903         # If CFG_LLDB_PYTHON_DIR is not a valid directory, set it to something more readable
904         if [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
905         then
906             CFG_LLDB_PYTHON_DIR="LLDB_PYTHON_DIRECTORY_NOT_FOUND"
907         fi
908
909         putvar CFG_LLDB_PYTHON_DIR
910     fi
911 fi
912
913 # LLDB tests on OSX require /usr/bin/python, not something like Homebrew's
914 # /usr/local/bin/python. We're loading a compiled module for LLDB tests which is
915 # only compatible with the system.
916 case $CFG_BUILD in
917     *-apple-darwin)
918         CFG_LLDB_PYTHON=/usr/bin/python
919         ;;
920     *)
921         CFG_LLDB_PYTHON=$CFG_PYTHON
922         ;;
923 esac
924 putvar CFG_LLDB_PYTHON
925
926 # Do some sanity checks if running on buildbot
927 # (these env vars are set by rust-buildbot)
928 if [ -n "$RUST_DIST_SERVER" -a -n "$ALLOW_NONZERO_RLIMIT_CORE" ]; then
929    # Frequently the llvm submodule directory is broken by the build
930    # being killed
931    llvm_lock="${CFG_SRC_DIR}/.git/modules/src/llvm/index.lock"
932    if [ -e "$llvm_lock" ]; then
933        step_msg "removing $llvm_lock"
934        rm -f "$llvm_lock"
935    fi
936 fi
937
938 step_msg "looking for target specific programs"
939
940 probe CFG_ADB        adb
941
942 BIN_SUF=
943 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ]
944 then
945     BIN_SUF=.exe
946 fi
947
948 # --enable-local-rebuild implies --enable-local-rust too
949 if [ -n "$CFG_ENABLE_LOCAL_REBUILD" ]
950 then
951     if [ -z "$CFG_ENABLE_LOCAL_RUST" ]
952     then
953         CFG_ENABLE_LOCAL_RUST=1
954         putvar CFG_ENABLE_LOCAL_RUST
955     fi
956 fi
957
958 if [ -n "$CFG_ENABLE_LOCAL_RUST" ]
959 then
960     system_rustc=$(which rustc)
961     if [ -f ${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF} ]
962     then
963         : # everything already configured
964     elif [ -n "$system_rustc" ]
965     then
966         # we assume that rustc is in a /bin directory
967         CFG_LOCAL_RUST_ROOT=${system_rustc%/bin/rustc}
968     else
969         err "no local rust to use"
970     fi
971
972     CMD="${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF}"
973     LRV=`LD_LIBRARY_PATH=${CFG_LOCAL_RUST_ROOT}/lib $CMD --version`
974     if [ $? -ne 0 ]
975     then
976         step_msg "failure while running $CMD --version"
977         exit 1
978     fi
979     step_msg "using rustc at: ${CFG_LOCAL_RUST_ROOT} with version: $LRV"
980     putvar CFG_LOCAL_RUST_ROOT
981 fi
982
983 # Force bitrig to build with clang; gcc doesn't like us there
984 if [ $CFG_OSTYPE = unknown-bitrig ]
985 then
986     step_msg "on Bitrig, forcing use of clang"
987     CFG_ENABLE_CLANG=1
988 fi
989
990 # default gcc version under OpenBSD maybe too old, try using egcc, which is a
991 # gcc version from ports
992 if [ $CFG_OSTYPE = unknown-openbsd ]
993 then
994     if [ $("$CFG_GCC" --version 2>&1 | grep -c ' 4\.[0-6]') -ne 0 ]; then
995         step_msg "older GCC found, try with egcc instead"
996
997         # probe again but using egcc
998         probe CFG_GCC egcc
999
1000         # and use egcc/eg++ for CC/CXX too if it was found
1001         # (but user setting has priority)
1002         if [ -n "$CFG_GCC" ]; then
1003             CC="${CC:-egcc}"
1004             CXX="${CXX:-eg++}"
1005         fi
1006     fi
1007 fi
1008
1009 # OS X 10.9, gcc is actually clang. This can cause some confusion in the build
1010 # system, so if we find that gcc is clang, we should just use clang directly.
1011 if [ $CFG_OSTYPE = apple-darwin -a -z "$CFG_ENABLE_CLANG" ]
1012 then
1013     CFG_OSX_GCC_VERSION=$("$CFG_GCC" --version 2>&1 | grep "Apple LLVM version")
1014     if [ $? -eq 0 ]
1015     then
1016         step_msg "on OS X >=10.9, forcing use of clang"
1017         CFG_ENABLE_CLANG=1
1018     else
1019         if [ $("$CFG_GCC" --version 2>&1 | grep -c ' 4\.[0-6]') -ne 0 ]; then
1020             step_msg "older GCC found, using clang instead"
1021             CFG_ENABLE_CLANG=1
1022         else
1023             # on OS X, with xcode 5 and newer, certain developers may have
1024             # cc, gcc and g++ point to a  mixture of clang and gcc
1025             # if so, this will create very strange build errors
1026             # this last stanza is to detect some such problems and save the future rust
1027             # contributor some time solving that issue.
1028             # this detection could be generalized to other OSes aside from OS X
1029             # but the issue seems most likely to happen on OS X
1030
1031             chk_cc () {
1032                 $1 --version 2> /dev/null | grep -q $2
1033             }
1034             # check that gcc, cc and g++ all point to the same compiler.
1035             # note that for xcode 5, g++ points to clang, not clang++
1036             if !((chk_cc gcc clang  && chk_cc g++ clang) ||
1037                 (chk_cc gcc gcc  &&( chk_cc g++ g++ || chk g++ gcc))); then
1038                 err "the gcc and g++ in your path point to different compilers.
1039     Check which versions are in your path with gcc --version and g++ --version.
1040     To resolve this problem, either fix your PATH  or run configure with --enable-clang"
1041             fi
1042
1043         fi
1044     fi
1045 fi
1046
1047 # If the clang isn't already enabled, check for GCC, and if it is missing, turn
1048 # on clang as a backup.
1049 if [ -z "$CFG_ENABLE_CLANG" ]
1050 then
1051   CFG_GCC_VERSION=$("$CFG_GCC" --version 2>&1)
1052   if [ $? -ne 0 ]
1053   then
1054     step_msg "GCC not installed, will try using Clang"
1055     CFG_ENABLE_CLANG=1
1056   fi
1057 fi
1058
1059 # Okay, at this point, we have made up our minds about whether we are
1060 # going to force CFG_ENABLE_CLANG or not; save the setting if so.
1061 if [ -n "$CFG_ENABLE_CLANG" ]
1062 then
1063     putvar CFG_ENABLE_CLANG
1064 fi
1065
1066 if [ -z "$CFG_DISABLE_LIBCPP" -a -n "$CFG_ENABLE_CLANG" ]
1067 then
1068     CFG_USING_LIBCPP="1"
1069 else
1070     CFG_USING_LIBCPP="0"
1071 fi
1072
1073 # Same with jemalloc.  save the setting here.
1074 if [ -n "$CFG_DISABLE_JEMALLOC" ]
1075 then
1076     putvar CFG_DISABLE_JEMALLOC
1077 fi
1078
1079 if [ -n "$CFG_LLVM_ROOT" -a -z "$CFG_DISABLE_LLVM_VERSION_CHECK" -a -e "$CFG_LLVM_ROOT/bin/llvm-config" ]
1080 then
1081     step_msg "using custom LLVM at $CFG_LLVM_ROOT"
1082
1083     LLVM_CONFIG="$CFG_LLVM_ROOT/bin/llvm-config"
1084     LLVM_VERSION=$($LLVM_CONFIG --version)
1085
1086     case $LLVM_VERSION in
1087         (3.[7-9]*)
1088             msg "found ok version of LLVM: $LLVM_VERSION"
1089             ;;
1090         (*)
1091             err "bad LLVM version: $LLVM_VERSION, need >=3.7"
1092             ;;
1093     esac
1094
1095     if "$CFG_LLVM_ROOT/bin/llvm-mc" -help | grep -- "-relocation-model"; then
1096         msg "found older llvm-mc"
1097         CFG_LLVM_MC_HAS_RELOCATION_MODEL=1
1098         putvar CFG_LLVM_MC_HAS_RELOCATION_MODEL
1099     fi
1100 fi
1101
1102 # Even when the user overrides the choice of CC, still try to detect
1103 # clang to disable some clang-specific warnings.  We here draw a
1104 # distinction between:
1105 #
1106 #  CFG_ENABLE_CLANG : passed --enable-clang, or host "requires" clang,
1107 #  CFG_USING_CLANG : compiler (clang / gcc / $CC) looks like clang.
1108 #
1109 # This distinction is important because there are some safeguards we
1110 # would prefer to skip when merely CFG_USING_CLANG is set; but when
1111 # CFG_ENABLE_CLANG is set, that indicates that we are opting into
1112 # running such safeguards.
1113
1114 if [ -n "$CC" ]
1115 then
1116     msg "skipping compiler inference steps; using provided CC=$CC"
1117     CFG_CC="$CC"
1118
1119     CFG_OSX_CC_VERSION=$("$CFG_CC" --version 2>&1 | grep "clang")
1120     if [ $? -eq 0 ]
1121     then
1122         step_msg "note, user-provided CC looks like clang; CC=$CC."
1123         CFG_USING_CLANG=1
1124         putvar CFG_USING_CLANG
1125     fi
1126 else
1127     if [ -n "$CFG_ENABLE_CLANG" ]
1128     then
1129         if [ -z "$CFG_CLANG" ]
1130         then
1131             err "clang requested but not found"
1132         fi
1133         CFG_CC="$CFG_CLANG"
1134         CFG_USING_CLANG=1
1135         putvar CFG_USING_CLANG
1136     else
1137         CFG_CC="gcc"
1138     fi
1139 fi
1140
1141 if [ -n "$CFG_ENABLE_CLANG" ]
1142 then
1143     case "$CC" in
1144         (''|*clang)
1145         if [ -z "$CC" ]
1146         then
1147             CFG_CC="clang"
1148             CFG_CXX="clang++"
1149         fi
1150     esac
1151 fi
1152
1153 if [ -n "$CFG_ENABLE_CCACHE" ]
1154 then
1155     if [ -z "$CFG_CCACHE" ]
1156     then
1157         err "ccache requested but not found"
1158     fi
1159
1160     CFG_CC="ccache $CFG_CC"
1161 fi
1162
1163 if [ -z "$CC" -a -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
1164 then
1165     err "either clang or gcc is required"
1166 fi
1167
1168 # All safeguards based on $CFG_ENABLE_CLANG should occur before this
1169 # point in the script; after this point, script logic should inspect
1170 # $CFG_USING_CLANG rather than $CFG_ENABLE_CLANG.
1171
1172 # Set CFG_{CC,CXX,CPP,CFLAGS,CXXFLAGS,LDFLAGS}
1173 envopt CC
1174 envopt CXX
1175 envopt CPP
1176 envopt CFLAGS
1177 envopt CXXFLAGS
1178 envopt LDFLAGS
1179
1180 # stdc++ name in use
1181 # used to manage non-standard name (on OpenBSD for example)
1182 program_transform_name=$($CFG_CC -v 2>&1 | sed -n "s/.*--program-transform-name='\([^']*\)'.*/\1/p")
1183 CFG_STDCPP_NAME=$(echo "stdc++" | sed "${program_transform_name}")
1184 putvar CFG_STDCPP_NAME
1185
1186 # a little post-processing of various config values
1187 CFG_PREFIX=${CFG_PREFIX%/}
1188 CFG_MANDIR=${CFG_MANDIR%/}
1189 CFG_DOCDIR=${CFG_DOCDIR%/}
1190 CFG_HOST="$(echo $CFG_HOST | tr ',' ' ')"
1191 CFG_TARGET="$(echo $CFG_TARGET | tr ',' ' ')"
1192 CFG_SUPPORTED_TARGET=""
1193 for target_file in ${CFG_SRC_DIR}mk/cfg/*.mk; do
1194   CFG_SUPPORTED_TARGET="${CFG_SUPPORTED_TARGET} $(basename "$target_file" .mk)"
1195 done
1196
1197 # copy build-triples to host-triples so that builds are a subset of hosts
1198 V_TEMP=""
1199 for i in $CFG_BUILD $CFG_HOST;
1200 do
1201    echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
1202 done
1203 CFG_HOST=$V_TEMP
1204
1205 # copy host-triples to target-triples so that hosts are a subset of targets
1206 V_TEMP=""
1207 for i in $CFG_HOST $CFG_TARGET;
1208 do
1209    echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
1210 done
1211 CFG_TARGET=$V_TEMP
1212
1213 # check target-specific tool-chains
1214 for i in $CFG_TARGET
1215 do
1216     L_CHECK=false
1217     for j in $CFG_SUPPORTED_TARGET
1218     do
1219         if [ $i = $j ]
1220         then
1221             L_CHECK=true
1222         fi
1223     done
1224
1225     if [ $L_CHECK = false ]
1226     then
1227         err "unsupported target triples \"$i\" found"
1228     fi
1229
1230     case $i in
1231         *android*)
1232             case $i in
1233                 armv7-linux-androideabi)
1234                     cmd_prefix="arm-linux-androideabi"
1235                     ;;
1236                 *)
1237                     cmd_prefix=$i
1238                     ;;
1239             esac
1240
1241             upper_snake_target=$(echo "$i" | tr '[:lower:]' '[:upper:]' | tr '\-' '\_')
1242             eval ndk=\$"CFG_${upper_snake_target}_NDK"
1243             if [ -z "$ndk" ]
1244             then
1245                 ndk=$CFG_ANDROID_CROSS_PATH
1246                 eval "CFG_${upper_snake_target}_NDK"=$CFG_ANDROID_CROSS_PATH
1247                 warn "generic/default Android NDK option is deprecated (use --$i-ndk option instead)"
1248             fi
1249
1250             # Perform a basic sanity check of the NDK
1251             for android_ndk_tool in "$ndk/bin/$cmd_prefix-gcc" "$ndk/bin/$cmd_prefix-g++" "$ndk/bin/$cmd_prefix-ar"
1252             do
1253                 if [ ! -f $android_ndk_tool ]
1254                 then
1255                     err "NDK tool $android_ndk_tool not found (bad or missing --$i-ndk option?)"
1256                 fi
1257             done
1258             ;;
1259         *-unknown-nacl)
1260             if [ -z "$CFG_NACL_CROSS_PATH" ]
1261             then
1262                 err "I need the NaCl SDK path! (use --nacl-cross-path)"
1263             fi
1264             ;;
1265         arm-apple-darwin)
1266             if [ $CFG_OSTYPE != apple-darwin ]
1267             then
1268                 err "The iOS target is only supported on Mac OS X"
1269             fi
1270             ;;
1271
1272         *-msvc)
1273             # There are three builds of cmake on windows: MSVC, MinGW and Cygwin
1274             # The Cygwin build does not have generators for Visual Studio, so
1275             # detect that here and error.
1276             if ! "$CFG_CMAKE" --help | sed -n '/^Generators/,$p' | grep 'Visual Studio' > /dev/null
1277             then
1278                 err "
1279
1280 cmake does not support Visual Studio generators.
1281
1282 This is likely due to it being an msys/cygwin build of cmake, \
1283 rather than the required windows version, built using MinGW \
1284 or Visual Studio.
1285
1286 If you are building under msys2 try installing the mingw-w64-x86_64-cmake \
1287 package instead of cmake:
1288
1289 $ pacman -R cmake && pacman -S mingw-w64-x86_64-cmake
1290 "
1291             fi
1292
1293             # Use the REG program to figure out where VS is installed
1294             # We need to figure out where cl.exe and link.exe are, so we do some
1295             # munging and some probing here. We also look for the default
1296             # INCLUDE and LIB variables for MSVC so we can set those in the
1297             # build system as well.
1298             install=$(cmd //c reg QUERY \
1299                        'HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\14.0' \
1300                        -v InstallDir)
1301             if [ -z "$install" ]; then
1302               install=$(cmd //c reg QUERY \
1303                          'HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\12.0' \
1304                          -v InstallDir)
1305             fi
1306             need_ok "couldn't find visual studio install root"
1307             CFG_MSVC_ROOT=$(echo "$install" | grep InstallDir | sed 's/.*REG_SZ[ ]*//')
1308             CFG_MSVC_ROOT=$(dirname "$CFG_MSVC_ROOT")
1309             CFG_MSVC_ROOT=$(dirname "$CFG_MSVC_ROOT")
1310             putvar CFG_MSVC_ROOT
1311
1312             case $i in
1313                 x86_64-*)
1314                     bits=x86_64
1315                     msvc_part=amd64
1316                     ;;
1317                 i*86-*)
1318                     bits=i386
1319                     msvc_part=
1320                     ;;
1321                 *)
1322                     err "can only target x86 targets for MSVC"
1323                     ;;
1324             esac
1325             bindir="${CFG_MSVC_ROOT}/VC/bin"
1326             if [ -n "$msvc_part" ]; then
1327                 bindir="$bindir/$msvc_part"
1328             fi
1329             eval CFG_MSVC_BINDIR_$bits="\"$bindir\""
1330             eval CFG_MSVC_CL_$bits="\"$bindir/cl.exe\""
1331             eval CFG_MSVC_LIB_$bits="\"$bindir/lib.exe\""
1332             eval CFG_MSVC_LINK_$bits="\"$bindir/link.exe\""
1333
1334             vcvarsall="${CFG_MSVC_ROOT}/VC/vcvarsall.bat"
1335             include_path=$(cmd //V:ON //c "$vcvarsall" $msvc_part \& echo !INCLUDE!)
1336             need_ok "failed to learn about MSVC's INCLUDE"
1337             lib_path=$(cmd //V:ON //c "$vcvarsall" $msvc_part \& echo !LIB!)
1338             need_ok "failed to learn about MSVC's LIB"
1339
1340             eval CFG_MSVC_INCLUDE_PATH_${bits}="\"$include_path\""
1341             eval CFG_MSVC_LIB_PATH_${bits}="\"$lib_path\""
1342
1343             putvar CFG_MSVC_BINDIR_${bits}
1344             putvar CFG_MSVC_CL_${bits}
1345             putvar CFG_MSVC_LIB_${bits}
1346             putvar CFG_MSVC_LINK_${bits}
1347             putvar CFG_MSVC_INCLUDE_PATH_${bits}
1348             putvar CFG_MSVC_LIB_PATH_${bits}
1349             ;;
1350
1351         *)
1352             ;;
1353     esac
1354 done
1355
1356 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ]
1357 then
1358     # There are some MSYS python builds which will auto-translate
1359     # windows-style paths to MSYS-style paths in Python itself.
1360     # Unfortunately this breaks LLVM's build system as somewhere along
1361     # the line LLVM prints a path into a file from Python and then CMake
1362     # later tries to interpret that path. If Python prints a MSYS path
1363     # and CMake tries to use it as a Windows path, you're gonna have a
1364     # Bad Time.
1365     #
1366     # Consequently here we try to detect when that happens and print an
1367     # error if it does.
1368     if $CFG_PYTHON -c 'import sys; print sys.argv[1]' `pwd` | grep '^/' > /dev/null
1369     then
1370         err "
1371
1372 python is silently translating windows paths to MSYS paths \
1373 and the build will fail if this python is used.
1374
1375 Either an official python install must be used or an \
1376 alternative python package in MinGW must be used.
1377
1378 If you are building under msys2 try installing the mingw-w64-x86_64-python2 \
1379 package instead of python2:
1380
1381 $ pacman -S mingw-w64-x86_64-python2
1382 "
1383     fi
1384 fi
1385
1386 if [ -n "$CFG_PERF" ]
1387 then
1388     HAVE_PERF_LOGFD=`$CFG_PERF stat --log-fd 2>&1 | grep 'unknown option'`
1389     if [ -z "$HAVE_PERF_LOGFD" ];
1390     then
1391         CFG_PERF_WITH_LOGFD=1
1392         putvar CFG_PERF_WITH_LOGFD
1393     fi
1394 fi
1395
1396 if [ -n "$CFG_DISABLE_RUSTBUILD" ]; then
1397
1398   step_msg "making directories"
1399
1400   for i in \
1401       doc doc/std doc/extra \
1402       dl tmp dist
1403   do
1404       make_dir $i
1405   done
1406
1407   for t in $CFG_HOST
1408   do
1409       make_dir $t/llvm
1410   done
1411
1412   for t in $CFG_HOST
1413   do
1414       make_dir $t/rustllvm
1415   done
1416
1417   for t in $CFG_TARGET
1418   do
1419     make_dir $t/rt
1420     for s in 0 1 2 3
1421     do
1422       make_dir $t/rt/stage$s
1423       make_dir $t/rt/jemalloc
1424       make_dir $t/rt/compiler-rt
1425       for i in                                          \
1426         isaac sync test \
1427         arch/i386 arch/x86_64 arch/arm arch/aarch64 arch/mips arch/powerpc
1428       do
1429         make_dir $t/rt/stage$s/$i
1430       done
1431     done
1432   done
1433
1434   for h in $CFG_HOST
1435   do
1436       for t in $CFG_TARGET
1437       do
1438           # host bin dir stage0
1439           make_dir $h/stage0/bin
1440
1441           # host lib dir stage0
1442           make_dir $h/stage0/lib
1443
1444           # host test dir stage0
1445           make_dir $h/stage0/test
1446
1447           # target bin dir stage0
1448           make_dir $h/stage0/lib/rustlib/$t/bin
1449
1450           # target lib dir stage0
1451           make_dir $h/stage0/lib/rustlib/$t/lib
1452
1453           for i in 1 2 3
1454           do
1455               # host bin dir
1456               make_dir $h/stage$i/bin
1457
1458               # host lib dir
1459               make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE
1460
1461               # host test dir
1462               make_dir $h/stage$i/test
1463
1464               # target bin dir
1465               make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/bin
1466
1467               # target lib dir
1468               make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/lib
1469           done
1470       done
1471
1472       make_dir $h/test/run-pass
1473       make_dir $h/test/run-pass-valgrind
1474       make_dir $h/test/run-pass-fulldeps
1475       make_dir $h/test/run-fail
1476       make_dir $h/test/run-fail-fulldeps
1477       make_dir $h/test/compile-fail
1478       make_dir $h/test/parse-fail
1479       make_dir $h/test/compile-fail-fulldeps
1480       make_dir $h/test/bench
1481       make_dir $h/test/perf
1482       make_dir $h/test/pretty
1483       make_dir $h/test/debuginfo-gdb
1484       make_dir $h/test/debuginfo-lldb
1485       make_dir $h/test/codegen
1486       make_dir $h/test/codegen-units
1487       make_dir $h/test/rustdoc
1488   done
1489
1490 fi
1491
1492 # Configure submodules
1493 step_msg "configuring submodules"
1494
1495 # Have to be in the top of src directory for this
1496 if [ -z "$CFG_DISABLE_MANAGE_SUBMODULES" ] && [ -n "$CFG_DISABLE_RUSTBUILD" ]
1497 then
1498     cd ${CFG_SRC_DIR}
1499
1500     msg "git: submodule sync"
1501     "${CFG_GIT}" submodule sync
1502
1503     msg "git: submodule init"
1504     "${CFG_GIT}" submodule init
1505
1506     # Disable submodules that we're not using
1507     if [ -n "${CFG_LLVM_ROOT}" ]; then
1508         msg "git: submodule deinit src/llvm"
1509         "${CFG_GIT}" submodule deinit src/llvm
1510     fi
1511     if [ -n "${CFG_JEMALLOC_ROOT}" ]; then
1512         msg "git: submodule deinit src/jemalloc"
1513         "${CFG_GIT}" submodule deinit src/jemalloc
1514     fi
1515
1516     msg "git: submodule update"
1517     "${CFG_GIT}" submodule update
1518     need_ok "git failed"
1519
1520     msg "git: submodule foreach sync"
1521     "${CFG_GIT}" submodule foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi'
1522     need_ok "git failed"
1523
1524     msg "git: submodule foreach update"
1525     "${CFG_GIT}" submodule update --recursive
1526     need_ok "git failed"
1527
1528     # NB: this is just for the sake of getting the submodule SHA1 values
1529     # and status written into the build log.
1530     msg "git: submodule status"
1531     "${CFG_GIT}" submodule status --recursive
1532
1533     msg "git: submodule clobber"
1534     "${CFG_GIT}" submodule foreach --recursive git clean -dxf
1535     need_ok "git failed"
1536     "${CFG_GIT}" submodule foreach --recursive git checkout .
1537     need_ok "git failed"
1538
1539     cd ${CFG_BUILD_DIR}
1540 fi
1541
1542 # Do a sanity check that the submodule source exists. Because GitHub
1543 # automatically publishes broken tarballs that can't be disabled, and
1544 # people download them and try to use them.
1545 if [ ! -e "${CFG_SRC_DIR}/src/liblibc" ]; then
1546     err "some submodules are missing. Is this a broken tarball?
1547
1548 If you downloaded this tarball from the GitHub release pages at
1549 https://github.com/rust-lang/rust/releases,
1550 then please delete it and instead download the source from
1551 https://www.rust-lang.org/downloads.html"
1552
1553 fi
1554
1555 # Configure llvm, only if necessary
1556 step_msg "looking at LLVM"
1557 CFG_LLVM_SRC_DIR=${CFG_SRC_DIR}src/llvm/
1558 for t in $CFG_HOST
1559 do
1560     do_reconfigure=1
1561     is_msvc=0
1562     case "$t" in
1563         (*-msvc)
1564         is_msvc=1
1565         ;;
1566     esac
1567
1568     if [ -z "$CFG_DISABLE_RUSTBUILD" ]
1569     then
1570         msg "not configuring LLVM, rustbuild in use"
1571         do_reconfigure=0
1572     elif [ -z "$CFG_LLVM_ROOT" ]
1573     then
1574         LLVM_BUILD_DIR=${CFG_BUILD_DIR}$t/llvm
1575         LLVM_INST_DIR=$LLVM_BUILD_DIR
1576         # For some weird reason the MSVC output dir is different than Unix
1577         if [ ${is_msvc} -ne 0 ]; then
1578             if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]
1579             then
1580                 # Just use LLVM straight from its build directory to
1581                 # avoid 'make install' time
1582                 LLVM_INST_DIR=$LLVM_BUILD_DIR/Debug
1583             else
1584                 LLVM_INST_DIR=$LLVM_BUILD_DIR/Release
1585             fi
1586         fi
1587     else
1588         msg "not reconfiguring LLVM, external LLVM root"
1589         # The user is using their own LLVM
1590         LLVM_BUILD_DIR=
1591         LLVM_INST_DIR=$CFG_LLVM_ROOT
1592         do_reconfigure=0
1593         # Check that LLVm FileCheck is available. Needed for the tests
1594         if [ -z "$CFG_DISABLE_CODEGEN_TESTS" ]; then
1595             need_cmd $LLVM_INST_DIR/bin/FileCheck
1596         fi
1597     fi
1598
1599     if [ ${do_reconfigure} -ne 0 ]
1600     then
1601     # because git is hilarious, it might have put the module index
1602     # in a couple places.
1603         index1="${CFG_SRC_DIR}.git/modules/src/llvm/index"
1604         index2="${CFG_SRC_DIR}src/llvm/.git/index"
1605         for index in ${index1} ${index2}
1606         do
1607             config_status="${LLVM_BUILD_DIR}/config.status"
1608             if test -e ${index} -a \
1609                     -e ${config_status} -a \
1610                     ${config_status} -nt ${index}
1611             then
1612                 msg "not reconfiguring LLVM, config.status is fresh"
1613                 do_reconfigure=0
1614             fi
1615         done
1616     fi
1617
1618     # We need the generator later on for compiler-rt even if LLVM's not built
1619     if [ -n "$CFG_NINJA" ]
1620     then
1621         generator="Ninja"
1622     elif [ ${is_msvc} -ne 0 ]
1623     then
1624         case "$CFG_MSVC_ROOT" in
1625             *14.0*)
1626                 generator="Visual Studio 14 2015"
1627                 ;;
1628             *12.0*)
1629                 generator="Visual Studio 12 2013"
1630                 ;;
1631             *)
1632                 err "can't determine generator for LLVM cmake"
1633                 ;;
1634         esac
1635         case "$t" in
1636             x86_64-*)
1637                 generator="$generator Win64"
1638                 ;;
1639             i686-*)
1640                 ;;
1641             *)
1642                 err "can only build LLVM for x86 platforms"
1643                 ;;
1644         esac
1645     else
1646         generator="Unix Makefiles"
1647     fi
1648     CFG_CMAKE_GENERATOR=$generator
1649     putvar CFG_CMAKE_GENERATOR
1650
1651     msg "configuring LLVM for $t"
1652
1653     LLVM_CFLAGS_32=""
1654     LLVM_CXXFLAGS_32=""
1655     LLVM_LDFLAGS_32=""
1656     LLVM_CFLAGS_64=""
1657     LLVM_CXXFLAGS_64=""
1658     LLVM_LDFLAGS_64=""
1659
1660     case "$CFG_CC" in
1661         ("ccache clang")
1662             LLVM_CXX_32="ccache"
1663             LLVM_CC_32="ccache"
1664             LLVM_CXX_32_ARG1="clang++"
1665             LLVM_CC_32_ARG1="clang"
1666             LLVM_CFLAGS_32="-Qunused-arguments"
1667             LLVM_CXXFLAGS_32="-Qunused-arguments"
1668
1669             LLVM_CXX_64="ccache"
1670             LLVM_CC_64="ccache"
1671             LLVM_CXX_64_ARG1="clang++"
1672             LLVM_CC_64_ARG1="clang"
1673             LLVM_CFLAGS_64="-Qunused-arguments"
1674             LLVM_CXXFLAGS_64="-Qunused-arguments"
1675             ;;
1676         ("clang")
1677             LLVM_CXX_32="clang++"
1678             LLVM_CC_32="clang"
1679             LLVM_CFLAGS_32="-Qunused-arguments"
1680             LLVM_CXXFLAGS_32="-Qunused-arguments"
1681
1682             LLVM_CXX_64="clang++"
1683             LLVM_CC_64="clang"
1684             LLVM_CFLAGS_64="-Qunused-arguments"
1685             LLVM_CXXFLAGS_64="-Qunused-arguments"
1686             ;;
1687         ("ccache gcc")
1688             LLVM_CXX_32="ccache"
1689             LLVM_CC_32="ccache"
1690             LLVM_CXX_32_ARG1="g++"
1691             LLVM_CC_32_ARG1="gcc"
1692
1693             LLVM_CXX_64="ccache"
1694             LLVM_CC_64="ccache"
1695             LLVM_CXX_64_ARG1="g++"
1696             LLVM_CC_64_ARG1="gcc"
1697             ;;
1698         ("gcc")
1699             if [ -z "$CFG_ENABLE_SCCACHE" ]; then
1700                 LLVM_CXX_32="g++"
1701                 LLVM_CC_32="gcc"
1702
1703                 LLVM_CXX_64="g++"
1704                 LLVM_CC_64="gcc"
1705             else
1706                 LLVM_CXX_32="sccache"
1707                 LLVM_CC_32="sccache"
1708                 LLVM_CXX_32_ARG1="g++"
1709                 LLVM_CC_32_ARG1="gcc"
1710
1711                 LLVM_CXX_64="sccache"
1712                 LLVM_CC_64="sccache"
1713                 LLVM_CXX_64_ARG1="g++"
1714                 LLVM_CC_64_ARG1="gcc"
1715             fi
1716             ;;
1717
1718         (*)
1719             msg "inferring LLVM_CXX/CC from CXX/CC = $CXX/$CC"
1720             if [ -n "$CFG_ENABLE_CCACHE" ]
1721             then
1722                 if [ -z "$CFG_CCACHE" ]
1723                 then
1724                     err "ccache requested but not found"
1725                 fi
1726
1727                 LLVM_CXX_32="ccache"
1728                 LLVM_CC_32="ccache"
1729                 LLVM_CXX_32_ARG1="$CXX"
1730                 LLVM_CC_32_ARG1="$CC"
1731
1732                 LLVM_CXX_64="ccache"
1733                 LLVM_CC_64="ccache"
1734                 LLVM_CXX_64_ARG1="$CXX"
1735                 LLVM_CC_64_ARG1="$CC"
1736             else
1737                 LLVM_CXX_32="$CXX"
1738                 LLVM_CC_32="$CC"
1739
1740                 LLVM_CXX_64="$CXX"
1741                 LLVM_CC_64="$CC"
1742             fi
1743
1744             ;;
1745     esac
1746
1747     case "$CFG_CPUTYPE" in
1748         (x86*)
1749             LLVM_CFLAGS_32="$LLVM_CFLAGS_32 -m32"
1750             LLVM_CXXFLAGS_32="$LLVM_CXXFLAGS_32 -m32"
1751             LLVM_LDFLAGS_32="$LLVM_LDFLAGS_32 -m32"
1752             ;;
1753     esac
1754
1755     if echo $t | grep -q x86_64
1756     then
1757         LLVM_CXX=$LLVM_CXX_64
1758         LLVM_CC=$LLVM_CC_64
1759         LLVM_CXX_ARG1=$LLVM_CXX_64_ARG1
1760         LLVM_CC_ARG1=$LLVM_CC_64_ARG1
1761         LLVM_CFLAGS=$LLVM_CFLAGS_64
1762         LLVM_CXXFLAGS=$LLVM_CXXFLAGS_64
1763         LLVM_LDFLAGS=$LLVM_LDFLAGS_64
1764     else
1765         LLVM_CXX=$LLVM_CXX_32
1766         LLVM_CC=$LLVM_CC_32
1767         LLVM_CXX_ARG1=$LLVM_CXX_32_ARG1
1768         LLVM_CC_ARG1=$LLVM_CC_32_ARG1
1769         LLVM_CFLAGS=$LLVM_CFLAGS_32
1770         LLVM_CXXFLAGS=$LLVM_CXXFLAGS_32
1771         LLVM_LDFLAGS=$LLVM_LDFLAGS_32
1772     fi
1773
1774     if [ "$CFG_USING_LIBCPP" != "0" ]; then
1775         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_LIBCXX=ON"
1776     fi
1777
1778     # Turn off things we don't need
1779     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_INCLUDE_TESTS=OFF"
1780     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_INCLUDE_EXAMPLES=OFF"
1781     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_INCLUDE_DOCS=OFF"
1782     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_ZLIB=OFF"
1783     CMAKE_ARGS="$CMAKE_ARGS -DWITH_POLY=OFF"
1784     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_TERMINFO=OFF"
1785     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_LIBEDIT=OFF"
1786
1787     arch="$(echo "$t" | cut -d - -f 1)"
1788
1789     if [ "$arch" = i686 ]; then
1790         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_BUILD_32_BITS=ON"
1791     fi
1792
1793     if [ "$t" != "$CFG_BUILD" ]; then
1794         # see http://llvm.org/docs/HowToCrossCompileLLVM.html
1795         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_CROSSCOMPILING=True"
1796         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_TARGET_ARCH=$arch"
1797         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_TABLEGEN=$CFG_BUILD_DIR/$CFG_BUILD/llvm/bin/llvm-tblgen"
1798         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_DEFAULT_TARGET_TRIPLE=$t"
1799     fi
1800
1801     # MSVC handles compiler business itself
1802     if [ ${is_msvc} -eq 0 ]; then
1803         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_C_COMPILER=$LLVM_CC"
1804         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_CXX_COMPILER=$LLVM_CXX"
1805         CMAKE_ARGS="$CMAKE_ARGS '-DCMAKE_C_FLAGS=$LLVM_CFLAGS'"
1806         CMAKE_ARGS="$CMAKE_ARGS '-DCMAKE_CXX_FLAGS=$LLVM_CXXFLAGS'"
1807         if [ -n "$LLVM_CC_ARG1" ]; then
1808             CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_C_COMPILER_ARG1=$LLVM_CC_ARG1"
1809         fi
1810         if [ -n "$LLVM_CXX_ARG1" ]; then
1811             CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_CXX_COMPILER_ARG1=$LLVM_CXX_ARG1"
1812         fi
1813         # FIXME: What about LDFLAGS?
1814     fi
1815
1816     if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]; then
1817         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=Debug"
1818     elif [ -n "$CFG_ENABLE_LLVM_RELEASE_DEBUGINFO" ]; then
1819         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=RelWithDebInfo"
1820     else
1821         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=Release"
1822     fi
1823     if [ -z "$CFG_ENABLE_LLVM_ASSERTIONS" ]
1824     then
1825         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_ASSERTIONS=OFF"
1826     else
1827         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_ASSERTIONS=ON"
1828     fi
1829
1830     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_TARGETS_TO_BUILD='X86;ARM;AArch64;Mips;PowerPC;SystemZ;JSBackend;MSP430;Sparc'"
1831     CMAKE_ARGS="$CMAKE_ARGS -G '$CFG_CMAKE_GENERATOR'"
1832     CMAKE_ARGS="$CMAKE_ARGS $CFG_LLVM_SRC_DIR"
1833
1834     if [ ${do_reconfigure} -ne 0 ]
1835     then
1836         msg "configuring LLVM for $t with cmake"
1837
1838         msg "configuring LLVM with:"
1839         msg "$CMAKE_ARGS"
1840
1841         (cd $LLVM_BUILD_DIR && eval "\"$CFG_CMAKE\"" $CMAKE_ARGS)
1842         need_ok "LLVM cmake configure failed"
1843     fi
1844
1845     # Construct variables for LLVM build and install directories for
1846     # each target. These will be named
1847     # CFG_LLVM_BUILD_DIR_${target_triple} but all the hyphens in
1848     # target_triple will be converted to underscore, because bash
1849     # variables can't contain hyphens. The makefile will then have to
1850     # convert back.
1851     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1852     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1853     eval ${CFG_LLVM_BUILD_DIR}="'$LLVM_BUILD_DIR'"
1854     eval ${CFG_LLVM_INST_DIR}="'$LLVM_INST_DIR'"
1855 done
1856
1857
1858 step_msg "writing configuration"
1859
1860 putvar CFG_SRC_DIR
1861 putvar CFG_SRC_DIR_RELATIVE
1862 putvar CFG_BUILD_DIR
1863 putvar CFG_OSTYPE
1864 putvar CFG_CPUTYPE
1865 putvar CFG_CONFIGURE_ARGS
1866 putvar CFG_PREFIX
1867 putvar CFG_HOST
1868 putvar CFG_TARGET
1869 putvar CFG_LIBDIR_RELATIVE
1870 putvar CFG_DISABLE_MANAGE_SUBMODULES
1871 putvar CFG_AARCH64_LINUX_ANDROID_NDK
1872 putvar CFG_ARM_LINUX_ANDROIDEABI_NDK
1873 putvar CFG_ARMV7_LINUX_ANDROIDEABI_NDK
1874 putvar CFG_I686_LINUX_ANDROID_NDK
1875 putvar CFG_NACL_CROSS_PATH
1876 putvar CFG_MANDIR
1877 putvar CFG_DOCDIR
1878 putvar CFG_USING_LIBCPP
1879
1880 # Avoid spurious warnings from clang by feeding it original source on
1881 # ccache-miss rather than preprocessed input.
1882 if [ -n "$CFG_ENABLE_CCACHE" ] && [ -n "$CFG_USING_CLANG" ]
1883 then
1884     CFG_CCACHE_CPP2=1
1885     putvar CFG_CCACHE_CPP2
1886 fi
1887
1888 if [ -n "$CFG_ENABLE_CCACHE" ]
1889 then
1890     CFG_CCACHE_BASEDIR=${CFG_SRC_DIR}
1891     putvar CFG_CCACHE_BASEDIR
1892 fi
1893
1894
1895 putvar CFG_LLVM_SRC_DIR
1896
1897 for t in $CFG_HOST
1898 do
1899     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1900     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1901     putvar $CFG_LLVM_BUILD_DIR
1902     putvar $CFG_LLVM_INST_DIR
1903 done
1904
1905 if [ -z "$CFG_DISABLE_RUSTBUILD" ]
1906 then
1907     INPUT_MAKEFILE=src/bootstrap/mk/Makefile.in
1908 else
1909     INPUT_MAKEFILE=Makefile.in
1910 fi
1911
1912 msg
1913 copy_if_changed ${CFG_SRC_DIR}${INPUT_MAKEFILE} ./Makefile
1914 move_if_changed config.tmp config.mk
1915 rm -f config.tmp
1916 touch config.stamp
1917
1918 if [ -z "$CFG_ENABLE_DEBUG" ]; then
1919     step_msg "configured in release mode. for development consider --enable-debug"
1920 else
1921     step_msg "complete"
1922 fi
1923
1924 if [ "$CFG_SRC_DIR" = `pwd` ]; then
1925     X_PY=x.py
1926 else
1927     X_PY=${CFG_SRC_DIR_RELATIVE}x.py
1928 fi
1929
1930 if [ -z "$CFG_DISABLE_RUSTBUILD" ]; then
1931     msg "NOTE you have now configured rust to use a rewritten build system"
1932     msg "     called rustbuild, and as a result this may have bugs that "
1933     msg "     you did not see before. If you experience any issues you can"
1934     msg "     go back to the old build system with --disable-rustbuild and"
1935     msg "     please feel free to report any bugs!"
1936     msg ""
1937     msg "run \`python ${X_PY} --help\`"
1938 else
1939     warn "the makefile-based build system is deprecated in favor of rustbuild"
1940     msg ""
1941     msg "It is recommended you avoid passing --disable-rustbuild to get your"
1942     msg "build working as the makefiles will be deleted on 2017-02-02. If you"
1943     msg "encounter bugs with rustbuild please file issues against rust-lang/rust"
1944     msg ""
1945     msg "run \`make help\`"
1946 fi
1947
1948 msg