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