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