]> git.lizzy.rs Git - rust.git/blob - configure
Fix typos in CStr docs
[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 identifers 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 # We do not detect other OS such as XP/2003 using 64 bit using uname.
434 # 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.
435     *)
436         err "unknown OS type: $CFG_OSTYPE"
437         ;;
438 esac
439
440
441 case $CFG_CPUTYPE in
442
443     i386 | i486 | i686 | i786 | x86)
444         CFG_CPUTYPE=i686
445         ;;
446
447     xscale | arm)
448         CFG_CPUTYPE=arm
449         ;;
450
451     armv7l)
452         CFG_CPUTYPE=arm
453         CFG_OSTYPE="${CFG_OSTYPE}eabihf"
454         ;;
455
456     aarch64)
457         CFG_CPUTYPE=aarch64
458         ;;
459
460     powerpc)
461         CFG_CPUTYPE=powerpc
462         ;;
463
464     x86_64 | x86-64 | x64 | amd64)
465         CFG_CPUTYPE=x86_64
466         ;;
467
468     *)
469         err "unknown CPU type: $CFG_CPUTYPE"
470 esac
471
472 # Detect 64 bit linux systems with 32 bit userland and force 32 bit compilation
473 if [ $CFG_OSTYPE = unknown-linux-gnu -a $CFG_CPUTYPE = x86_64 ]
474 then
475     file -L "$SHELL" | grep -q "x86[_-]64"
476     if [ $? != 0 ]; then
477         CFG_CPUTYPE=i686
478     fi
479 fi
480
481
482 DEFAULT_BUILD="${CFG_CPUTYPE}-${CFG_OSTYPE}"
483
484 CFG_SRC_DIR="$(cd $(dirname $0) && pwd)/"
485 CFG_BUILD_DIR="$(pwd)/"
486 CFG_SELF="$0"
487 CFG_CONFIGURE_ARGS="$@"
488
489 OPTIONS=""
490 HELP=0
491 if [ "$1" = "--help" ]
492 then
493     HELP=1
494     shift
495     echo
496     echo "Usage: $CFG_SELF [options]"
497     echo
498     echo "Options:"
499     echo
500 else
501     msg "recreating config.tmp"
502     echo '' >config.tmp
503
504     step_msg "processing $CFG_SELF args"
505 fi
506
507 BOOL_OPTIONS=""
508 VAL_OPTIONS=""
509
510 opt valgrind 0 "run tests with valgrind (memcheck by default)"
511 opt helgrind 0 "run tests with helgrind instead of memcheck"
512 opt valgrind-rpass 1 "run rpass-valgrind tests with valgrind"
513 opt docs     1 "build documentation"
514 opt optimize 1 "build optimized rust code"
515 opt optimize-cxx 1 "build optimized C++ code"
516 opt optimize-llvm 1 "build optimized LLVM"
517 opt optimize-tests 1 "build tests with optimizations"
518 opt libcpp 1 "build with llvm with libc++ instead of libstdc++ when using clang"
519 opt llvm-assertions 1 "build LLVM with assertions"
520 opt debug 1 "build with extra debug fun"
521 opt fast-make 0 "use .gitmodules as timestamp for submodule deps"
522 opt ccache 0 "invoke gcc/clang via ccache to reuse object files between builds"
523 opt local-rust 0 "use an installed rustc rather than downloading a snapshot"
524 opt llvm-static-stdcpp 0 "statically link to libstdc++ for LLVM"
525 opt rpath 0 "build rpaths into rustc itself"
526 opt nightly 0 "build nightly packages"
527 opt verify-install 1 "verify installed binaries work"
528 # This is used by the automation to produce single-target nightlies
529 opt dist-host-only 0 "only install bins for the host architecture"
530 opt inject-std-version 1 "inject the current compiler version of libstd into programs"
531 opt jemalloc 1 "build liballoc with jemalloc"
532 opt llvm-version-check 1 "don't check if the LLVM version is supported, build anyway"
533
534 valopt localstatedir "/var/lib" "local state directory"
535 valopt sysconfdir "/etc" "install system configuration files"
536
537 valopt datadir "${CFG_PREFIX}/share" "install data"
538 valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
539 valopt llvm-root "" "set LLVM root"
540 valopt jemalloc-root "" "set directory where libjemalloc_pic.a is located"
541 valopt build "${DEFAULT_BUILD}" "GNUs ./configure syntax LLVM build triple"
542 valopt android-cross-path "/opt/ndk_standalone" "Android NDK standalone path"
543
544 # Many of these are saved below during the "writing configuration" step
545 # (others are conditionally saved).
546 opt_nosave manage-submodules 1 "let the build manage the git submodules"
547 opt_nosave clang 0 "prefer clang to gcc for building the runtime"
548
549 valopt_nosave prefix "/usr/local" "set installation prefix"
550 valopt_nosave local-rust-root "/usr/local" "set prefix for local rust binary"
551 valopt_nosave host "${CFG_BUILD}" "GNUs ./configure syntax LLVM host triples"
552 valopt_nosave target "${CFG_HOST}" "GNUs ./configure syntax LLVM target triples"
553 valopt_nosave mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
554 valopt_nosave release-channel "dev" "the name of the release channel to build"
555
556 # Temporarily support old triples until buildbots get updated
557 CFG_BUILD=$(to_llvm_triple $CFG_BUILD)
558 putvar CFG_BUILD # Yes, this creates a duplicate entry, but the last one wins.
559 CFG_HOST=$(to_llvm_triple $CFG_HOST)
560 CFG_TARGET=$(to_llvm_triple $CFG_TARGET)
561
562 # On windows we just store the libraries in the bin directory because
563 # there's no rpath. This is where the build system itself puts libraries;
564 # --libdir is used to configure the installation directory.
565 # FIXME: This needs to parameterized over target triples. Do it in platform.mk
566 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ]
567 then
568     CFG_LIBDIR_RELATIVE=bin
569 else
570     CFG_LIBDIR_RELATIVE=lib
571 fi
572
573 valopt libdir "${CFG_PREFIX}/${CFG_LIBDIR_RELATIVE}" "install libraries (do not set it on windows platform)"
574
575 case "$CFG_LIBDIR" in
576     "$CFG_PREFIX"/*) CAT_INC=2;;
577     "$CFG_PREFIX"*)  CAT_INC=1;;
578     *)
579         err "libdir must begin with the prefix. Use --prefix to set it accordingly.";;
580 esac
581
582 CFG_LIBDIR_RELATIVE=`echo ${CFG_LIBDIR} | cut -c$((${#CFG_PREFIX}+${CAT_INC}))-`
583
584 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] && [ "$CFG_LIBDIR_RELATIVE" != "bin" ]; then
585     err "libdir on windows should be set to 'bin'"
586 fi
587
588 if [ $HELP -eq 1 ]
589 then
590     echo
591     exit 0
592 fi
593
594 # Validate Options
595 step_msg "validating $CFG_SELF args"
596 validate_opt
597
598 # Validate the release channel
599 case "$CFG_RELEASE_CHANNEL" in
600     (dev | nightly | beta | stable)
601         ;;
602     (*)
603         err "release channel must be 'dev', 'nightly', 'beta' or 'stable'"
604         ;;
605 esac
606
607 # Continue supporting the old --enable-nightly flag to transition the bots
608 # XXX Remove me
609 if [ ! -z "$CFG_ENABLE_NIGHTLY" ]
610 then
611     CFG_RELEASE_CHANNEL=nightly
612 fi
613 putvar CFG_RELEASE_CHANNEL
614
615 # A magic value that allows the compiler to use unstable features
616 # during the bootstrap even when doing so would normally be an error
617 # because of feature staging or because the build turns on
618 # warnings-as-errors and unstable features default to warnings.  The
619 # build has to match this key in an env var. Meant to be a mild
620 # deterrent from users just turning on unstable features on the stable
621 # channel.
622 # Basing CFG_BOOTSTRAP_KEY on CFG_BOOTSTRAP_KEY lets it get picked up
623 # during a Makefile reconfig.
624 CFG_BOOTSTRAP_KEY="${CFG_BOOTSTRAP_KEY-`date +%H:%M:%S`}"
625 putvar CFG_BOOTSTRAP_KEY
626
627 step_msg "looking for build programs"
628
629 probe_need CFG_CURLORWGET  curl wget
630 probe_need CFG_PYTHON      python2.7 python2.6 python2 python
631
632 python_version=$($CFG_PYTHON -V 2>&1)
633 if [ $(echo $python_version | grep -c '^Python 2\.[4567]') -ne 1 ]; then
634     err "Found $python_version, but LLVM requires Python 2.4-2.7"
635 fi
636
637 # If we have no git directory then we are probably a tarball distribution
638 # and shouldn't attempt to load submodules
639 if [ ! -e ${CFG_SRC_DIR}.git ]
640 then
641     probe CFG_GIT          git
642     msg "git: no git directory. disabling submodules"
643     CFG_DISABLE_MANAGE_SUBMODULES=1
644 else
645     probe_need CFG_GIT     git
646 fi
647
648 probe CFG_CLANG            clang++
649 probe CFG_CCACHE           ccache
650 probe CFG_GCC              gcc
651 probe CFG_LD               ld
652 probe CFG_VALGRIND         valgrind
653 probe CFG_PERF             perf
654 probe CFG_ISCC             iscc
655 probe CFG_JAVAC            javac
656 probe CFG_ANTLR4           antlr4
657 probe CFG_GRUN             grun
658 probe CFG_FLEX             flex
659 probe CFG_BISON            bison
660 probe CFG_PANDOC           pandoc
661 probe CFG_XELATEX          xelatex
662 probe CFG_GDB              gdb
663 probe CFG_LLDB             lldb
664
665 if [ ! -z "$CFG_GDB" ]
666 then
667     # Store GDB's version
668     CFG_GDB_VERSION=$($CFG_GDB --version 2>/dev/null | head -1)
669     putvar CFG_GDB_VERSION
670 fi
671
672 if [ ! -z "$CFG_LLDB" ]
673 then
674     # Store LLDB's version
675     CFG_LLDB_VERSION=$($CFG_LLDB --version 2>/dev/null | head -1)
676     putvar CFG_LLDB_VERSION
677
678     # If CFG_LLDB_PYTHON_DIR is not already set from the outside and valid, try to read it from
679     # LLDB via the -P commandline options.
680     if [ -z "$CFG_LLDB_PYTHON_DIR" ] || [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
681     then
682         CFG_LLDB_PYTHON_DIR=$($CFG_LLDB -P)
683
684         # If CFG_LLDB_PYTHON_DIR is not a valid directory, set it to something more readable
685         if [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
686         then
687             CFG_LLDB_PYTHON_DIR="LLDB_PYTHON_DIRECTORY_NOT_FOUND"
688         fi
689
690         putvar CFG_LLDB_PYTHON_DIR
691     fi
692 fi
693
694 step_msg "looking for target specific programs"
695
696 probe CFG_ADB        adb
697
698 if [ ! -z "$CFG_PANDOC" ]
699 then
700     PV_MAJOR_MINOR=$(pandoc --version | grep '^pandoc\(.exe\)\? ' |
701         # extract the first 2 version fields, ignore everything else
702         sed 's/pandoc\(.exe\)\? \([0-9]*\)\.\([0-9]*\).*/\2 \3/')
703
704     MIN_PV_MAJOR="1"
705     MIN_PV_MINOR="9"
706     # these patterns are shell globs, *not* regexps
707     PV_MAJOR=${PV_MAJOR_MINOR% *}
708     PV_MINOR=${PV_MAJOR_MINOR#* }
709     if [ "$PV_MAJOR" -lt "$MIN_PV_MAJOR" ] || [ "$PV_MINOR" -lt "$MIN_PV_MINOR" ]
710     then
711         step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. Need at least $MIN_PV_MAJOR.$MIN_PV_MINOR. Disabling"
712         BAD_PANDOC=1
713     fi
714 fi
715
716 BIN_SUF=
717 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ]
718 then
719     BIN_SUF=.exe
720 fi
721
722 if [ ! -z "$CFG_ENABLE_LOCAL_RUST" ]
723 then
724     system_rustc=$(which rustc)
725     if [ -f ${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF} ]
726     then
727         : # everything already configured
728     elif [ -n "$system_rustc" ]
729     then
730         # we assume that rustc is in a /bin directory
731         CFG_LOCAL_RUST_ROOT=${system_rustc%/bin/rustc}
732     else
733         err "no local rust to use"
734     fi
735
736     CMD="${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF}"
737     LRV=`$CMD --version`
738     if [ $? -ne 0 ]
739     then
740         step_msg "failure while running $CMD --version"
741         exit 1
742     fi
743     step_msg "using rustc at: ${CFG_LOCAL_RUST_ROOT} with version: $LRV"
744     putvar CFG_LOCAL_RUST_ROOT
745 fi
746
747 # Force freebsd to build with clang; gcc doesn't like us there
748 if [ $CFG_OSTYPE = unknown-freebsd ]
749 then
750     step_msg "on FreeBSD, forcing use of clang"
751     CFG_ENABLE_CLANG=1
752 fi
753
754 # Force bitrig to build with clang; gcc doesn't like us there
755 if [ $CFG_OSTYPE = unknown-bitrig ]
756 then
757     step_msg "on Bitrig, forcing use of clang"
758     CFG_ENABLE_CLANG=1
759 fi
760
761 if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
762 then
763     err "either clang or gcc is required"
764 fi
765
766 # OS X 10.9, gcc is actually clang. This can cause some confusion in the build
767 # system, so if we find that gcc is clang, we should just use clang directly.
768 if [ $CFG_OSTYPE = apple-darwin -a -z "$CFG_ENABLE_CLANG" ]
769 then
770     CFG_OSX_GCC_VERSION=$("$CFG_GCC" --version 2>&1 | grep "Apple LLVM version")
771     if [ $? -eq 0 ]
772     then
773         step_msg "on OS X 10.9, forcing use of clang"
774         CFG_ENABLE_CLANG=1
775     else
776         if [ $("$CFG_GCC" --version 2>&1 | grep -c ' 4\.[0-6]') -ne 0 ]; then
777             step_msg "older GCC found, using clang instead"
778             CFG_ENABLE_CLANG=1
779         else
780             # on OS X, with xcode 5 and newer, certain developers may have
781             # cc, gcc and g++ point to a  mixture of clang and gcc
782             # if so, this will create very strange build errors
783             # this last stanza is to detect some such problems and save the future rust
784             # contributor some time solving that issue.
785             # this detection could be generalized to other OSes aside from OS X
786             # but the issue seems most likely to happen on OS X
787
788             chk_cc () {
789                 $1 --version 2> /dev/null | grep -q $2
790             }
791             # check that gcc, cc and g++ all point to the same compiler.
792             # note that for xcode 5, g++ points to clang, not clang++
793             if !((chk_cc gcc clang  && chk_cc g++ clang) ||
794                 (chk_cc gcc gcc  &&( chk_cc g++ g++ || chk g++ gcc))); then
795                 err "the gcc and g++ in your path point to different compilers.
796     Check which versions are in your path with gcc --version and g++ --version.
797     To resolve this problem, either fix your PATH  or run configure with --enable-clang"
798             fi
799
800         fi
801     fi
802 fi
803
804 # Okay, at this point, we have made up our minds about whether we are
805 # going to force CFG_ENABLE_CLANG or not; save the setting if so.
806 if [ ! -z "$CFG_ENABLE_CLANG" ]
807 then
808     putvar CFG_ENABLE_CLANG
809 fi
810
811 if [ ! -z "$CFG_LLVM_ROOT" -a -z "$CFG_DISABLE_LLVM_VERSION_CHECK" -a -e "$CFG_LLVM_ROOT/bin/llvm-config" ]
812 then
813     step_msg "using custom LLVM at $CFG_LLVM_ROOT"
814
815     LLVM_CONFIG="$CFG_LLVM_ROOT/bin/llvm-config"
816     LLVM_VERSION=$($LLVM_CONFIG --version)
817
818     case $LLVM_VERSION in
819         (3.[2-6]*)
820             msg "found ok version of LLVM: $LLVM_VERSION"
821             ;;
822         (*)
823             err "bad LLVM version: $LLVM_VERSION, need >=3.0svn"
824             ;;
825     esac
826 fi
827
828 # Even when the user overrides the choice of CC, still try to detect
829 # clang to disable some clang-specific warnings.  We here draw a
830 # distinction between:
831 #
832 #  CFG_ENABLE_CLANG : passed --enable-clang, or host "requires" clang,
833 #  CFG_USING_CLANG : compiler (clang / gcc / $CC) looks like clang.
834 #
835 # This distinction is important because there are some safeguards we
836 # would prefer to skip when merely CFG_USING_CLANG is set; but when
837 # CFG_ENABLE_CLANG is set, that indicates that we are opting into
838 # running such safeguards.
839
840 if [ ! -z "$CC" ]
841 then
842     msg "skipping compiler inference steps; using provided CC=$CC"
843     CFG_CC="$CC"
844
845     CFG_OSX_CC_VERSION=$("$CFG_CC" --version 2>&1 | grep "clang")
846     if [ $? -eq 0 ]
847     then
848         step_msg "note, user-provided CC looks like clang; CC=$CC."
849         CFG_USING_CLANG=1
850         putvar CFG_USING_CLANG
851     fi
852 else
853     if [ ! -z "$CFG_ENABLE_CLANG" ]
854     then
855         if [ -z "$CFG_CLANG" ]
856         then
857             err "clang requested but not found"
858         fi
859         CFG_CC="$CFG_CLANG"
860         CFG_USING_CLANG=1
861         putvar CFG_USING_CLANG
862     else
863         CFG_CC="gcc"
864     fi
865 fi
866
867 if [ ! -z "$CFG_ENABLE_CLANG" ]
868 then
869     if [ -z "$CC" ] || [[ $CC == *clang ]]
870     then
871         CFG_CLANG_VERSION=$($CFG_CC \
872             --version \
873             | grep version \
874             | sed 's/.*\(version .*\)/\1/; s/.*based on \(LLVM .*\))/\1/' \
875             | cut -d ' ' -f 2)
876
877         case $CFG_CLANG_VERSION in
878             (3.0svn | 3.0 | 3.1* | 3.2* | 3.3* | 3.4* | 3.5* | 3.6*)
879             step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
880             if [ -z "$CC" ]
881             then
882                 CFG_CC="clang"
883                 CFG_CXX="clang++"
884             fi
885             ;;
886             (*)
887             err "bad CLANG version: $CFG_CLANG_VERSION, need >=3.0svn"
888             ;;
889         esac
890     else
891         msg "skipping CFG_ENABLE_CLANG version check; provided CC=$CC"
892     fi
893 fi
894
895 if [ ! -z "$CFG_ENABLE_CCACHE" ]
896 then
897     if [ -z "$CC" ]
898     then
899         if [ -z "$CFG_CCACHE" ]
900         then
901             err "ccache requested but not found"
902         fi
903
904         CFG_CC="ccache $CFG_CC"
905     fi
906 fi
907
908 if [ -z "$CC" -a -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
909 then
910     err "either clang or gcc is required"
911 fi
912
913 # All safeguards based on $CFG_ENABLE_CLANG should occur before this
914 # point in the script; after this point, script logic should inspect
915 # $CFG_USING_CLANG rather than $CFG_ENABLE_CLANG.
916
917 # Set CFG_{CC,CXX,CPP,CFLAGS,CXXFLAGS}
918 envopt CC
919 envopt CXX
920 envopt CPP
921 envopt CFLAGS
922 envopt CXXFLAGS
923
924 # a little post-processing of various config values
925 CFG_PREFIX=${CFG_PREFIX%/}
926 CFG_MANDIR=${CFG_MANDIR%/}
927 CFG_HOST="$(echo $CFG_HOST | tr ',' ' ')"
928 CFG_TARGET="$(echo $CFG_TARGET | tr ',' ' ')"
929 CFG_SUPPORTED_TARGET=""
930 for target_file in ${CFG_SRC_DIR}mk/cfg/*.mk; do
931   CFG_SUPPORTED_TARGET="${CFG_SUPPORTED_TARGET} $(basename "$target_file" .mk)"
932 done
933
934 # copy host-triples to target-triples so that hosts are a subset of targets
935 V_TEMP=""
936 for i in $CFG_HOST $CFG_TARGET;
937 do
938    echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
939 done
940 CFG_TARGET=$V_TEMP
941
942 # check target-specific tool-chains
943 for i in $CFG_TARGET
944 do
945     L_CHECK=false
946     for j in $CFG_SUPPORTED_TARGET
947     do
948         if [ $i = $j ]
949         then
950             L_CHECK=true
951         fi
952     done
953
954     if [ $L_CHECK = false ]
955     then
956         err "unsupported target triples \"$i\" found"
957     fi
958
959     case $i in
960         arm-linux-androideabi)
961
962             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-gcc ]
963             then
964                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-gcc not found"
965             fi
966             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-g++ ]
967             then
968                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-g++ not found"
969             fi
970             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-ar ]
971             then
972                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-ar not found"
973             fi
974             ;;
975
976         arm-apple-darwin)
977             if [ $CFG_OSTYPE != apple-darwin ]
978             then
979                 err "The iOS target is only supported on Mac OS X"
980             fi
981             ;;
982
983         *)
984             ;;
985     esac
986 done
987
988 if [ ! -z "$CFG_PERF" ]
989 then
990     HAVE_PERF_LOGFD=`$CFG_PERF stat --log-fd 2>&1 | grep 'unknown option'`
991     if [ -z "$HAVE_PERF_LOGFD" ];
992     then
993         CFG_PERF_WITH_LOGFD=1
994         putvar CFG_PERF_WITH_LOGFD
995     fi
996 fi
997
998 step_msg "making directories"
999
1000 for i in \
1001     doc doc/std doc/extra \
1002     dl tmp dist
1003 do
1004     make_dir $i
1005 done
1006
1007 for t in $CFG_HOST
1008 do
1009     make_dir $t/llvm
1010 done
1011
1012 for t in $CFG_HOST
1013 do
1014     make_dir $t/rustllvm
1015 done
1016
1017 for t in $CFG_TARGET
1018 do
1019   make_dir $t/rt
1020   for s in 0 1 2 3
1021   do
1022     make_dir $t/rt/stage$s
1023     make_dir $t/rt/jemalloc
1024     for i in                                          \
1025       isaac sync test \
1026       arch/i386 arch/x86_64 arch/arm arch/aarch64 arch/mips arch/powerpc
1027     do
1028       make_dir $t/rt/stage$s/$i
1029     done
1030   done
1031 done
1032
1033 for h in $CFG_HOST
1034 do
1035     for t in $CFG_TARGET
1036     do
1037         # host lib dir stage0
1038         make_dir $h/stage0/lib
1039
1040         # target bin dir stage0
1041         make_dir $h/stage0/lib/rustlib/$t/bin
1042
1043         # target lib dir stage0
1044         make_dir $h/stage0/lib/rustlib/$t/lib
1045
1046         for i in 0 1 2 3
1047         do
1048             # host bin dir
1049             make_dir $h/stage$i/bin
1050
1051             # host lib dir
1052             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE
1053
1054             # host test dir
1055             make_dir $h/stage$i/test
1056
1057             # target bin dir
1058             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/bin
1059
1060             # target lib dir
1061             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/lib
1062         done
1063     done
1064
1065     make_dir $h/test/run-pass
1066     make_dir $h/test/run-pass-valgrind
1067     make_dir $h/test/run-pass-fulldeps
1068     make_dir $h/test/run-fail
1069     make_dir $h/test/compile-fail
1070     make_dir $h/test/parse-fail
1071     make_dir $h/test/compile-fail-fulldeps
1072     make_dir $h/test/bench
1073     make_dir $h/test/perf
1074     make_dir $h/test/pretty
1075     make_dir $h/test/debuginfo-gdb
1076     make_dir $h/test/debuginfo-lldb
1077     make_dir $h/test/codegen
1078 done
1079
1080 # Configure submodules
1081 step_msg "configuring submodules"
1082
1083 # Have to be in the top of src directory for this
1084 if [ -z $CFG_DISABLE_MANAGE_SUBMODULES ]
1085 then
1086     cd ${CFG_SRC_DIR}
1087
1088     msg "git: submodule sync"
1089     "${CFG_GIT}" submodule sync
1090
1091     msg "git: submodule init"
1092     "${CFG_GIT}" submodule init
1093
1094     # Disable submodules that we're not using
1095     if [ ! -z "${CFG_LLVM_ROOT}" ]; then
1096         msg "git: submodule deinit src/llvm"
1097         "${CFG_GIT}" submodule deinit src/llvm
1098     fi
1099     if [ ! -z "${CFG_JEMALLOC_ROOT}" ]; then
1100         msg "git: submodule deinit src/jemalloc"
1101         "${CFG_GIT}" submodule deinit src/jemalloc
1102     fi
1103
1104     msg "git: submodule update"
1105     "${CFG_GIT}" submodule update
1106     need_ok "git failed"
1107
1108     msg "git: submodule foreach sync"
1109     "${CFG_GIT}" submodule foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi'
1110     need_ok "git failed"
1111
1112     msg "git: submodule foreach update"
1113     "${CFG_GIT}" submodule update --recursive
1114     need_ok "git failed"
1115
1116     # NB: this is just for the sake of getting the submodule SHA1 values
1117     # and status written into the build log.
1118     msg "git: submodule status"
1119     "${CFG_GIT}" submodule status --recursive
1120
1121     msg "git: submodule clobber"
1122     "${CFG_GIT}" submodule foreach --recursive git clean -dxf
1123     need_ok "git failed"
1124     "${CFG_GIT}" submodule foreach --recursive git checkout .
1125     need_ok "git failed"
1126
1127     cd ${CFG_BUILD_DIR}
1128 fi
1129
1130 # Configure llvm, only if necessary
1131 step_msg "looking at LLVM"
1132 CFG_LLVM_SRC_DIR=${CFG_SRC_DIR}src/llvm/
1133 for t in $CFG_HOST
1134 do
1135     do_reconfigure=1
1136
1137     if [ -z $CFG_LLVM_ROOT ]
1138     then
1139         LLVM_BUILD_DIR=${CFG_BUILD_DIR}$t/llvm
1140         if [ ! -z "$CFG_DISABLE_OPTIMIZE_LLVM" ]
1141         then
1142             LLVM_DBG_OPTS="--enable-debug-symbols --disable-optimized"
1143             # Just use LLVM straight from its build directory to
1144             # avoid 'make install' time
1145             LLVM_INST_DIR=$LLVM_BUILD_DIR/Debug
1146         else
1147             LLVM_DBG_OPTS="--enable-optimized"
1148             LLVM_INST_DIR=$LLVM_BUILD_DIR/Release
1149         fi
1150         if [ ! -z "$CFG_DISABLE_LLVM_ASSERTIONS" ]
1151         then
1152             LLVM_ASSERTION_OPTS="--disable-assertions"
1153         else
1154             LLVM_ASSERTION_OPTS="--enable-assertions"
1155             LLVM_INST_DIR=${LLVM_INST_DIR}+Asserts
1156         fi
1157     else
1158         msg "not reconfiguring LLVM, external LLVM root"
1159         # The user is using their own LLVM
1160         LLVM_BUILD_DIR=
1161         LLVM_INST_DIR=$CFG_LLVM_ROOT
1162         do_reconfigure=0
1163     fi
1164
1165
1166     if [ ${do_reconfigure} -ne 0 ]
1167     then
1168     # because git is hilarious, it might have put the module index
1169     # in a couple places.
1170         index1="${CFG_SRC_DIR}.git/modules/src/llvm/index"
1171         index2="${CFG_SRC_DIR}src/llvm/.git/index"
1172         for index in ${index1} ${index2}
1173         do
1174             config_status="${LLVM_BUILD_DIR}/config.status"
1175             if test -e ${index} -a \
1176                     -e ${config_status} -a \
1177                     ${config_status} -nt ${index}
1178             then
1179                 msg "not reconfiguring LLVM, config.status is fresh"
1180                 do_reconfigure=0
1181             fi
1182         done
1183     fi
1184
1185     if [ ${do_reconfigure} -ne 0 ]
1186     then
1187         # LLVM's configure doesn't recognize the new Windows triples yet
1188         gnu_t=$(to_gnu_triple $t)
1189
1190         msg "configuring LLVM for $gnu_t"
1191
1192         LLVM_TARGETS="--enable-targets=x86,x86_64,arm,aarch64,mips,powerpc"
1193         LLVM_BUILD="--build=$gnu_t"
1194         LLVM_HOST="--host=$gnu_t"
1195         LLVM_TARGET="--target=$gnu_t"
1196
1197         # Disable unused LLVM features
1198         LLVM_OPTS="$LLVM_DBG_OPTS $LLVM_ASSERTION_OPTS --disable-docs --enable-bindings=none"
1199         # Disable term-info, linkage of which comes in multiple forms,
1200         # making our snapshots incompatible (#9334)
1201         LLVM_OPTS="$LLVM_OPTS --disable-terminfo"
1202         # Try to have LLVM pull in as few dependencies as possible (#9397)
1203         LLVM_OPTS="$LLVM_OPTS --disable-zlib --disable-libffi"
1204
1205         # Use win32 native thread/lock apis instead of pthread wrapper.
1206         # (llvm's configure tries to find pthread first, so we have to disable it explicitly.)
1207         # Also note that pthreads works badly on mingw-w64 systems: #8996
1208         case "$CFG_BUILD" in
1209             (*-windows-*)
1210             LLVM_OPTS="$LLVM_OPTS --disable-pthreads"
1211             ;;
1212         esac
1213
1214         case "$CFG_CC" in
1215             ("ccache clang")
1216             LLVM_CXX_32="ccache clang++ -Qunused-arguments"
1217             LLVM_CC_32="ccache clang -Qunused-arguments"
1218
1219             LLVM_CXX_64="ccache clang++ -Qunused-arguments"
1220             LLVM_CC_64="ccache clang -Qunused-arguments"
1221             ;;
1222             ("clang")
1223             LLVM_CXX_32="clang++ -Qunused-arguments"
1224             LLVM_CC_32="clang -Qunused-arguments"
1225
1226             LLVM_CXX_64="clang++ -Qunused-arguments"
1227             LLVM_CC_64="clang -Qunused-arguments"
1228             ;;
1229             ("ccache gcc")
1230             LLVM_CXX_32="ccache g++"
1231             LLVM_CC_32="ccache gcc"
1232
1233             LLVM_CXX_64="ccache g++"
1234             LLVM_CC_64="ccache gcc"
1235             ;;
1236             ("gcc")
1237             LLVM_CXX_32="g++"
1238             LLVM_CC_32="gcc"
1239
1240             LLVM_CXX_64="g++"
1241             LLVM_CC_64="gcc"
1242             ;;
1243
1244             (*)
1245             msg "inferring LLVM_CXX/CC from CXX/CC = $CXX/$CC"
1246             LLVM_CXX_32="$CXX"
1247             LLVM_CC_32="$CC"
1248
1249             LLVM_CXX_64="$CXX"
1250             LLVM_CC_64="$CC"
1251             ;;
1252         esac
1253
1254         case "$CFG_CPUTYPE" in
1255             (x86*)
1256                 LLVM_CXX_32="$LLVM_CXX_32 -m32"
1257                 LLVM_CC_32="$LLVM_CC_32 -m32"
1258
1259                 LLVM_CFLAGS_32="-m32"
1260                 LLVM_CXXFLAGS_32="-m32"
1261                 LLVM_LDFLAGS_32="-m32"
1262
1263                 LLVM_CFLAGS_64=""
1264                 LLVM_CXXFLAGS_64=""
1265                 LLVM_LDFLAGS_64=""
1266
1267                 LLVM_CXX_32="$LLVM_CXX_32 -m32"
1268                 LLVM_CC_32="$LLVM_CC_32 -m32"
1269                 ;;
1270
1271             (*)
1272                 LLVM_CFLAGS_32=""
1273                 LLVM_CXXFLAGS_32=""
1274                 LLVM_LDFLAGS_32=""
1275
1276                 LLVM_CFLAGS_64=""
1277                 LLVM_CXXFLAGS_64=""
1278                 LLVM_LDFLAGS_64=""
1279                 ;;
1280         esac
1281
1282         if echo $t | grep -q x86_64
1283         then
1284             LLVM_CXX=$LLVM_CXX_64
1285             LLVM_CC=$LLVM_CC_64
1286             LLVM_CFLAGS=$LLVM_CFLAGS_64
1287             LLVM_CXXFLAGS=$LLVM_CXXFLAGS_64
1288             LLVM_LDFLAGS=$LLVM_LDFLAGS_64
1289         else
1290             LLVM_CXX=$LLVM_CXX_32
1291             LLVM_CC=$LLVM_CC_32
1292             LLVM_CFLAGS=$LLVM_CFLAGS_32
1293             LLVM_CXXFLAGS=$LLVM_CXXFLAGS_32
1294             LLVM_LDFLAGS=$LLVM_LDFLAGS_32
1295         fi
1296
1297         CXX=$LLVM_CXX
1298         CC=$LLVM_CC
1299         CFLAGS=$LLVM_CFLAGS
1300         CXXFLAGS=$LLVM_CXXFLAGS
1301         LDFLAGS=$LLVM_LDFLAGS
1302
1303         if [ -z "$CFG_DISABLE_LIBCPP" ] && [ -n "$CFG_USING_CLANG" ]; then
1304             LLVM_OPTS="$LLVM_OPTS --enable-libcpp"
1305         fi
1306
1307         LLVM_FLAGS="$LLVM_TARGETS $LLVM_OPTS $LLVM_BUILD \
1308                         $LLVM_HOST $LLVM_TARGET --with-python=$CFG_PYTHON"
1309
1310         msg "configuring LLVM with:"
1311         msg "$LLVM_FLAGS"
1312
1313         export CXX
1314         export CC
1315         export CFLAGS
1316         export CXXFLAGS
1317         export LDFLAGS
1318
1319         cd $LLVM_BUILD_DIR
1320         case $CFG_SRC_DIR in
1321             /* | [a-z]:* | [A-Z]:*)
1322                 ${CFG_LLVM_SRC_DIR}configure $LLVM_FLAGS
1323                 ;;
1324             *)
1325                 ${CFG_BUILD_DIR}${CFG_LLVM_SRC_DIR}configure \
1326                     $LLVM_FLAGS
1327                 ;;
1328         esac
1329         need_ok "LLVM configure failed"
1330
1331         cd $CFG_BUILD_DIR
1332     fi
1333
1334     # Construct variables for LLVM build and install directories for
1335     # each target. These will be named
1336     # CFG_LLVM_BUILD_DIR_${target_triple} but all the hyphens in
1337     # target_triple will be converted to underscore, because bash
1338     # variables can't contain hyphens. The makefile will then have to
1339     # convert back.
1340     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1341     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1342     eval ${CFG_LLVM_BUILD_DIR}="'$LLVM_BUILD_DIR'"
1343     eval ${CFG_LLVM_INST_DIR}="'$LLVM_INST_DIR'"
1344 done
1345
1346
1347 step_msg "writing configuration"
1348
1349 putvar CFG_SRC_DIR
1350 putvar CFG_BUILD_DIR
1351 putvar CFG_OSTYPE
1352 putvar CFG_CPUTYPE
1353 putvar CFG_CONFIGURE_ARGS
1354 putvar CFG_PREFIX
1355 putvar CFG_HOST
1356 putvar CFG_TARGET
1357 putvar CFG_LIBDIR_RELATIVE
1358 putvar CFG_DISABLE_MANAGE_SUBMODULES
1359 putvar CFG_ANDROID_CROSS_PATH
1360 putvar CFG_MANDIR
1361
1362 # Avoid spurious warnings from clang by feeding it original source on
1363 # ccache-miss rather than preprocessed input.
1364 if [ ! -z "$CFG_ENABLE_CCACHE" ] && [ ! -z "$CFG_USING_CLANG" ]
1365 then
1366     CFG_CCACHE_CPP2=1
1367     putvar CFG_CCACHE_CPP2
1368 fi
1369
1370 if [ ! -z "$CFG_ENABLE_CCACHE" ]
1371 then
1372     CFG_CCACHE_BASEDIR=${CFG_SRC_DIR}
1373     putvar CFG_CCACHE_BASEDIR
1374 fi
1375
1376
1377 if [ ! -z $BAD_PANDOC ]
1378 then
1379     CFG_PANDOC=
1380     putvar CFG_PANDOC
1381 fi
1382
1383 putvar CFG_LLVM_SRC_DIR
1384
1385 for t in $CFG_HOST
1386 do
1387     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1388     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1389     putvar $CFG_LLVM_BUILD_DIR
1390     putvar $CFG_LLVM_INST_DIR
1391 done
1392
1393 # Munge any paths that appear in config.mk back to posix-y
1394 cp config.tmp config.tmp.bak
1395 sed -e 's@ \([a-zA-Z]\):[/\\]@ /\1/@g;' <config.tmp.bak >config.tmp
1396 rm -f config.tmp.bak
1397
1398 msg
1399 copy_if_changed ${CFG_SRC_DIR}Makefile.in ./Makefile
1400 move_if_changed config.tmp config.mk
1401 rm -f config.tmp
1402 touch config.stamp
1403
1404 step_msg "complete"
1405 msg "run \`make help\`"
1406 msg