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