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