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