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