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