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