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