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