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