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