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