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