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