]> git.lizzy.rs Git - rust.git/blob - configure
llvm, rt: build using the Ninja generator if available
[rust.git] / configure
1 #!/bin/sh
2
3 # /bin/sh on Solaris is not a POSIX compatible shell, but /usr/bin/bash is.
4 if [ `uname -s` = 'SunOS' -a "${POSIX_SHELL}" != "true" ]; then
5     POSIX_SHELL="true"
6     export POSIX_SHELL
7     exec /usr/bin/env bash $0 "$@"
8 fi
9 unset POSIX_SHELL # clear it so if we invoke other scripts, they run as bash as well
10
11 msg() {
12     echo "configure: $*"
13 }
14
15 step_msg() {
16     msg
17     msg "$1"
18     msg
19 }
20
21 warn() {
22     echo "configure: WARNING: $1"
23 }
24
25 err() {
26     echo "configure: error: $1"
27     exit 1
28 }
29
30 run() {
31     msg "$@"
32     "$@"
33 }
34
35 need_ok() {
36     if [ $? -ne 0 ]
37     then
38         err "$1"
39     fi
40 }
41
42 need_cmd() {
43     if command -v $1 >/dev/null 2>&1
44     then msg "found program '$1'"
45     else err "program '$1' is missing, please install it"
46     fi
47 }
48
49 make_dir() {
50     if [ ! -d $1 ]
51     then
52         run mkdir -p $1
53     fi
54 }
55
56 copy_if_changed() {
57     if cmp -s $1 $2
58     then
59         msg "leaving $2 unchanged"
60     else
61         run cp -f $1 $2
62         chmod u-w $2 # make copied artifact read-only
63     fi
64 }
65
66 move_if_changed() {
67     if cmp -s $1 $2
68     then
69         msg "leaving $2 unchanged"
70     else
71         run mv -f $1 $2
72         chmod u-w $2 # make moved artifact read-only
73     fi
74 }
75
76 putvar() {
77     local T
78     eval T=\$$1
79     eval TLEN=\${#$1}
80     if [ $TLEN -gt 35 ]
81     then
82         printf "configure: %-20s := %.35s ...\n" $1 "$T"
83     else
84         printf "configure: %-20s := %s %s\n" $1 "$T" "$2"
85     fi
86     printf "%-20s := %s\n" $1 "$T" >>config.tmp
87 }
88
89 putpathvar() {
90     local T
91     eval T=\$$1
92     eval TLEN=\${#$1}
93     if [ $TLEN -gt 35 ]
94     then
95         printf "configure: %-20s := %.35s ...\n" $1 "$T"
96     else
97         printf "configure: %-20s := %s %s\n" $1 "$T" "$2"
98     fi
99     if [ -z "$T" ]
100     then
101         printf "%-20s := \n" $1 >>config.tmp
102     else
103         printf "%-20s := \"%s\"\n" $1 "$T" >>config.tmp
104     fi
105 }
106
107 probe() {
108     local V=$1
109     shift
110     local P
111     local T
112     for P
113     do
114         T=$(command -v $P 2>&1)
115         if [ $? -eq 0 ]
116         then
117             VER0=$($P --version 2>/dev/null \
118                 |  grep -o '[vV]\?[0-9][0-9.][a-z0-9.-]*' | head -1 )
119             if [ $? -eq 0 -a "x${VER0}" != "x" ]
120             then
121               VER="($VER0)"
122             else
123               VER=""
124             fi
125             break
126         else
127             VER=""
128             T=""
129         fi
130     done
131     eval $V=\$T
132     putpathvar $V "$VER"
133 }
134
135 probe_need() {
136     probe $*
137     local V=$1
138     shift
139     eval VV=\$$V
140     if [ -z "$VV" ]
141     then
142         err "$V needed, but unable to find any of: $*"
143     fi
144 }
145
146 validate_opt () {
147     for arg in $CFG_CONFIGURE_ARGS
148     do
149         isArgValid=0
150         for option in $BOOL_OPTIONS
151         do
152             if test --disable-$option = $arg
153             then
154                 isArgValid=1
155             fi
156             if test --enable-$option = $arg
157             then
158                 isArgValid=1
159             fi
160         done
161         for option in $VAL_OPTIONS
162         do
163             if echo "$arg" | grep -q -- "--$option="
164             then
165                 isArgValid=1
166             fi
167         done
168         if [ "$arg" = "--help" ]
169         then
170             echo
171             echo "No more help available for Configure options,"
172             echo "check the Wiki or join our IRC channel"
173             break
174         else
175             if test $isArgValid -eq 0
176             then
177                 err "Option '$arg' is not recognized"
178             fi
179         fi
180     done
181 }
182
183 # `valopt OPTION_NAME DEFAULT DOC` extracts a string-valued option
184 # from command line, using provided default value for the option if
185 # not present, and saves it to the generated config.mk.
186 #
187 # `valopt_nosave` is much the same, except that it does not save the
188 # result to config.mk (instead the script should use `putvar` itself
189 # later on to save it).  `valopt_core` is the core upon which the
190 # other two are built.
191
192 valopt_core() {
193     VAL_OPTIONS="$VAL_OPTIONS $2"
194
195     local SAVE=$1
196     local OP=$2
197     local DEFAULT=$3
198     shift
199     shift
200     shift
201     local DOC="$*"
202     if [ $HELP -eq 0 ]
203     then
204         local UOP=$(echo $OP | tr '[:lower:]' '[:upper:]' | tr '\-' '\_')
205         local V="CFG_${UOP}"
206         local V_PROVIDED="${V}_PROVIDED"
207         eval $V="$DEFAULT"
208         for arg in $CFG_CONFIGURE_ARGS
209         do
210             if echo "$arg" | grep -q -- "--$OP="
211             then
212                 val=$(echo "$arg" | cut -f2 -d=)
213                 eval $V=$val
214                 eval $V_PROVIDED=1
215             fi
216         done
217         if [ "$SAVE" = "save" ]
218         then
219             putvar $V
220         fi
221     else
222         if [ -z "$DEFAULT" ]
223         then
224             DEFAULT="<none>"
225         fi
226         OP="${OP}=[${DEFAULT}]"
227         printf "    --%-30s %s\n" "$OP" "$DOC"
228     fi
229 }
230
231 valopt_nosave() {
232     valopt_core nosave "$@"
233 }
234
235 valopt() {
236     valopt_core save "$@"
237 }
238
239 # `opt OPTION_NAME DEFAULT DOC` extracts a boolean-valued option from
240 # command line, using the provided default value (0/1) for the option
241 # if not present, and saves it to the generated config.mk.
242 #
243 # `opt_nosave` is much the same, except that it does not save the
244 # result to config.mk (instead the script should use `putvar` itself
245 # later on to save it).  `opt_core` is the core upon which the other
246 # two are built.
247
248 opt_core() {
249     BOOL_OPTIONS="$BOOL_OPTIONS $2"
250
251     local SAVE=$1
252     local OP=$2
253     local DEFAULT=$3
254     shift
255     shift
256     shift
257     local DOC="$*"
258     local FLAG=""
259
260     if [ $DEFAULT -eq 0 ]
261     then
262         FLAG="enable"
263         DEFAULT_FLAG="disable"
264     else
265         FLAG="disable"
266         DEFAULT_FLAG="enable"
267         DOC="don't $DOC"
268     fi
269
270     if [ $HELP -eq 0 ]
271     then
272         for arg in $CFG_CONFIGURE_ARGS
273         do
274             if [ "$arg" = "--${FLAG}-${OP}" ]
275             then
276                 OP=$(echo $OP | tr 'a-z-' 'A-Z_')
277                 FLAG=$(echo $FLAG | tr 'a-z' 'A-Z')
278                 local V="CFG_${FLAG}_${OP}"
279                 local V_PROVIDED="CFG_${FLAG}_${OP}_PROVIDED"
280                 eval $V=1
281                 eval $V_PROVIDED=1
282                 if [ "$SAVE" = "save" ]
283                 then
284                    putvar $V
285                 fi
286             elif [ "$arg" = "--${DEFAULT_FLAG}-${OP}" ]
287             then
288                 OP=$(echo $OP | tr 'a-z-' 'A-Z_')
289                 DEFAULT_FLAG=$(echo $DEFAULT_FLAG | tr 'a-z' 'A-Z')
290                 local V_PROVIDED="CFG_${DEFAULT_FLAG}_${OP}_PROVIDED"
291                 eval $V_PROVIDED=1
292             fi
293         done
294     else
295         if [ -n "$META" ]
296         then
297             OP="$OP=<$META>"
298         fi
299         printf "    --%-30s %s\n" "$FLAG-$OP" "$DOC"
300      fi
301 }
302
303 opt_nosave() {
304     opt_core nosave "$@"
305 }
306
307 opt() {
308     opt_core save "$@"
309 }
310
311 envopt() {
312     local NAME=$1
313     local V="CFG_${NAME}"
314     eval VV=\$$V
315
316     # If configure didn't set a value already, then check environment.
317     #
318     # (It is recommended that the configure script always check the
319     # environment before setting any values to envopt variables; see
320     # e.g.  how CFG_CC is handled, where it first checks `-z "$CC"`,
321     # and issues msg if it ends up employing that provided value.)
322     if [ -z "$VV" ]
323     then
324         eval $V=\$$NAME
325         eval VV=\$$V
326     fi
327
328     # If script or environment provided a value, save it.
329     if [ -n "$VV" ]
330     then
331         putvar $V
332     fi
333 }
334
335 enable_if_not_disabled() {
336     local OP=$1
337     local UOP=$(echo $OP | tr '[:lower:]' '[:upper:]' | tr '\-' '\_')
338     local ENAB_V="CFG_ENABLE_$UOP"
339     local EXPLICITLY_DISABLED="CFG_DISABLE_${UOP}_PROVIDED"
340     eval VV=\$$EXPLICITLY_DISABLED
341     if [ -z "$VV" ]; then
342         eval $ENAB_V=1
343     fi
344 }
345
346 to_gnu_triple() {
347     case $1 in
348         i686-pc-windows-gnu) echo i686-w64-mingw32 ;;
349         x86_64-pc-windows-gnu) echo x86_64-w64-mingw32 ;;
350         *) echo $1 ;;
351     esac
352 }
353
354 # Prints the absolute path of a directory to stdout
355 abs_path() {
356     local _path="$1"
357     # Unset CDPATH because it causes havok: it makes the destination unpredictable
358     # and triggers 'cd' to print the path to stdout. Route `cd`'s output to /dev/null
359     # for good measure.
360     (unset CDPATH && cd "$_path" > /dev/null && pwd)
361 }
362
363 msg "looking for configure programs"
364 need_cmd cmp
365 need_cmd mkdir
366 need_cmd printf
367 need_cmd cut
368 need_cmd head
369 need_cmd grep
370 need_cmd xargs
371 need_cmd cp
372 need_cmd find
373 need_cmd uname
374 need_cmd date
375 need_cmd tr
376 need_cmd sed
377 need_cmd file
378 need_cmd make
379
380 msg "inspecting environment"
381
382 CFG_OSTYPE=$(uname -s)
383 CFG_CPUTYPE=$(uname -m)
384
385 if [ $CFG_OSTYPE = Darwin -a $CFG_CPUTYPE = i386 ]
386 then
387     # Darwin's `uname -s` lies and always returns i386. We have to use sysctl
388     # instead.
389     if sysctl hw.optional.x86_64 | grep -q ': 1'
390     then
391         CFG_CPUTYPE=x86_64
392     fi
393 fi
394
395 # The goal here is to come up with the same triple as LLVM would,
396 # at least for the subset of platforms we're willing to target.
397
398 case $CFG_OSTYPE in
399
400     Linux)
401         CFG_OSTYPE=unknown-linux-gnu
402         ;;
403
404     FreeBSD)
405         CFG_OSTYPE=unknown-freebsd
406         ;;
407
408     DragonFly)
409         CFG_OSTYPE=unknown-dragonfly
410         ;;
411
412     Bitrig)
413         CFG_OSTYPE=unknown-bitrig
414         ;;
415
416     OpenBSD)
417         CFG_OSTYPE=unknown-openbsd
418        ;;
419
420     NetBSD)
421             CFG_OSTYPE=unknown-netbsd
422             ;;
423
424     Darwin)
425         CFG_OSTYPE=apple-darwin
426         ;;
427
428     SunOS)
429         CFG_OSTYPE=sun-solaris
430         CFG_CPUTYPE=$(isainfo -n)
431         ;;
432
433     MINGW*)
434         # msys' `uname` does not print gcc configuration, but prints msys
435         # configuration. so we cannot believe `uname -m`:
436         # msys1 is always i686 and msys2 is always x86_64.
437         # instead, msys defines $MSYSTEM which is MINGW32 on i686 and
438         # MINGW64 on x86_64.
439         CFG_CPUTYPE=i686
440         CFG_OSTYPE=pc-windows-gnu
441         if [ "$MSYSTEM" = MINGW64 ]
442         then
443             CFG_CPUTYPE=x86_64
444         fi
445         ;;
446
447     MSYS*)
448         CFG_OSTYPE=pc-windows-gnu
449         ;;
450
451 # Thad's Cygwin identifiers below
452
453 #   Vista 32 bit
454     CYGWIN_NT-6.0)
455         CFG_OSTYPE=pc-windows-gnu
456         CFG_CPUTYPE=i686
457         ;;
458
459 #   Vista 64 bit
460     CYGWIN_NT-6.0-WOW64)
461         CFG_OSTYPE=pc-windows-gnu
462         CFG_CPUTYPE=x86_64
463         ;;
464
465 #   Win 7 32 bit
466     CYGWIN_NT-6.1)
467         CFG_OSTYPE=pc-windows-gnu
468         CFG_CPUTYPE=i686
469         ;;
470
471 #   Win 7 64 bit
472     CYGWIN_NT-6.1-WOW64)
473         CFG_OSTYPE=pc-windows-gnu
474         CFG_CPUTYPE=x86_64
475         ;;
476
477 #   Win 8 # uname -s on 64-bit cygwin does not contain WOW64, so simply use uname -m to detect arch (works in my install)
478     CYGWIN_NT-6.3)
479         CFG_OSTYPE=pc-windows-gnu
480         ;;
481 # We do not detect other OS such as XP/2003 using 64 bit using uname.
482 # 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.
483     *)
484         err "unknown OS type: $CFG_OSTYPE"
485         ;;
486 esac
487
488
489 case $CFG_CPUTYPE in
490
491     i386 | i486 | i686 | i786 | x86)
492         CFG_CPUTYPE=i686
493         ;;
494
495     xscale | arm)
496         CFG_CPUTYPE=arm
497         ;;
498
499     armv7l)
500         CFG_CPUTYPE=arm
501         CFG_OSTYPE="${CFG_OSTYPE}eabihf"
502         ;;
503
504     aarch64)
505         CFG_CPUTYPE=aarch64
506         ;;
507
508     powerpc | ppc)
509         CFG_CPUTYPE=powerpc
510         ;;
511
512     powerpc64 | ppc64)
513         CFG_CPUTYPE=powerpc64
514         ;;
515
516     powerpc64le | ppc64le)
517         CFG_CPUTYPE=powerpc64le
518         ;;
519
520     x86_64 | x86-64 | x64 | amd64)
521         CFG_CPUTYPE=x86_64
522         ;;
523
524     *)
525         err "unknown CPU type: $CFG_CPUTYPE"
526 esac
527
528 # Detect 64 bit linux systems with 32 bit userland and force 32 bit compilation
529 if [ $CFG_OSTYPE = unknown-linux-gnu -a $CFG_CPUTYPE = x86_64 ]
530 then
531     # $SHELL does not exist in standard 'sh', so probably only exists
532     # if configure is running in an interactive bash shell. /usr/bin/env
533     # exists *everywhere*.
534     BIN_TO_PROBE="$SHELL"
535     if [ ! -r "$BIN_TO_PROBE" ]; then
536         if [ -r "/usr/bin/env" ]; then
537             BIN_TO_PROBE="/usr/bin/env"
538         else
539             warn "Cannot check if the userland is i686 or x86_64"
540         fi
541     fi
542     file -L "$BIN_TO_PROBE" | grep -q "x86[_-]64"
543     if [ $? != 0 ]; then
544         msg "i686 userland on x86_64 Linux kernel"
545         CFG_CPUTYPE=i686
546     fi
547 fi
548
549
550 DEFAULT_BUILD="${CFG_CPUTYPE}-${CFG_OSTYPE}"
551
552 CFG_SRC_DIR="$(abs_path $(dirname $0))/"
553 CFG_SRC_DIR_RELATIVE="$(dirname $0)/"
554 CFG_BUILD_DIR="$(pwd)/"
555 CFG_SELF="$0"
556 CFG_CONFIGURE_ARGS="$@"
557
558
559 case "${CFG_SRC_DIR}" in
560     *\ * )
561         err "The path to the rust source directory contains spaces, which is not supported"
562         ;;
563     *)
564         ;;
565 esac
566
567
568 OPTIONS=""
569 HELP=0
570 if [ "$1" = "--help" ]
571 then
572     HELP=1
573     shift
574     echo
575     echo "Usage: $CFG_SELF [options]"
576     echo
577     echo "Options:"
578     echo
579 else
580     msg "recreating config.tmp"
581     echo '' >config.tmp
582
583     step_msg "processing $CFG_SELF args"
584 fi
585
586 BOOL_OPTIONS=""
587 VAL_OPTIONS=""
588
589 opt debug 0 "debug mode; disables optimization unless \`--enable-optimize\` given"
590 opt valgrind 0 "run tests with valgrind (memcheck by default)"
591 opt helgrind 0 "run tests with helgrind instead of memcheck"
592 opt valgrind-rpass 1 "run rpass-valgrind tests with valgrind"
593 opt docs     1 "build standard library documentation"
594 opt compiler-docs     0 "build compiler documentation"
595 opt optimize-tests 1 "build tests with optimizations"
596 opt debuginfo-tests 0 "build tests with debugger metadata"
597 opt libcpp 1 "build llvm with libc++ instead of libstdc++ when using clang"
598 opt llvm-assertions 0 "build LLVM with assertions"
599 opt debug-assertions 0 "build with debugging assertions"
600 opt fast-make 0 "use .gitmodules as timestamp for submodule deps"
601 opt ccache 0 "invoke gcc/clang via ccache to reuse object files between builds"
602 opt local-rust 0 "use an installed rustc rather than downloading a snapshot"
603 opt local-rebuild 0 "use an installed rustc matching the current version, for rebuilds"
604 opt llvm-static-stdcpp 0 "statically link to libstdc++ for LLVM"
605 opt rpath 1 "build rpaths into rustc itself"
606 opt stage0-landing-pads 1 "enable landing pads during bootstrap with stage0"
607 # This is used by the automation to produce single-target nightlies
608 opt dist-host-only 0 "only install bins for the host architecture"
609 opt inject-std-version 1 "inject the current compiler version of libstd into programs"
610 opt llvm-version-check 1 "check if the LLVM version is supported, build anyway"
611 opt rustbuild 0 "use the rust and cargo based build system"
612 opt orbit 0 "get MIR where it belongs - everywhere; most importantly, in orbit"
613 opt codegen-tests 1 "run the src/test/codegen tests"
614 opt option-checking 1 "complain about unrecognized options in this configure script"
615 opt ninja 0 "build LLVM using the Ninja generator (for MSVC, requires building in the correct environment)"
616
617 # Optimization and debugging options. These may be overridden by the release channel, etc.
618 opt_nosave optimize 1 "build optimized rust code"
619 opt_nosave optimize-cxx 1 "build optimized C++ code"
620 opt_nosave optimize-llvm 1 "build optimized LLVM"
621 opt_nosave llvm-assertions 0 "build LLVM with assertions"
622 opt_nosave debug-assertions 0 "build with debugging assertions"
623 opt_nosave debuginfo 0 "build with debugger metadata"
624 opt_nosave debug-jemalloc 0 "build jemalloc with --enable-debug --enable-fill"
625
626 valopt localstatedir "/var/lib" "local state directory"
627 valopt sysconfdir "/etc" "install system configuration files"
628
629 valopt datadir "${CFG_PREFIX}/share" "install data"
630 valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
631 valopt llvm-root "" "set LLVM root"
632 valopt python "" "set path to python"
633 valopt jemalloc-root "" "set directory where libjemalloc_pic.a is located"
634 valopt build "${DEFAULT_BUILD}" "GNUs ./configure syntax LLVM build triple"
635 valopt android-cross-path "" "Android NDK standalone path (deprecated)"
636 valopt i686-linux-android-ndk "" "i686-linux-android NDK standalone path"
637 valopt arm-linux-androideabi-ndk "" "arm-linux-androideabi NDK standalone path"
638 valopt armv7-linux-androideabi-ndk "" "armv7-linux-androideabi NDK standalone path"
639 valopt aarch64-linux-android-ndk "" "aarch64-linux-android NDK standalone path"
640 valopt nacl-cross-path  "" "NaCl SDK path (Pepper Canary is recommended). Must be absolute!"
641 valopt release-channel "dev" "the name of the release channel to build"
642 valopt musl-root "/usr/local" "MUSL root installation directory"
643 valopt extra-filename "" "Additional data that is hashed and passed to the -C extra-filename flag"
644
645 # Used on systems where "cc" and "ar" are unavailable
646 valopt default-linker "cc" "the default linker"
647 valopt default-ar     "ar" "the default ar"
648
649 # Many of these are saved below during the "writing configuration" step
650 # (others are conditionally saved).
651 opt_nosave manage-submodules 1 "let the build manage the git submodules"
652 opt_nosave clang 0 "prefer clang to gcc for building the runtime"
653 opt_nosave jemalloc 1 "build liballoc with jemalloc"
654 opt elf-tls 1 "elf thread local storage on platforms where supported"
655
656 valopt_nosave prefix "/usr/local" "set installation prefix"
657 valopt_nosave local-rust-root "/usr/local" "set prefix for local rust binary"
658 valopt_nosave host "${CFG_BUILD}" "GNUs ./configure syntax LLVM host triples"
659 valopt_nosave target "${CFG_HOST}" "GNUs ./configure syntax LLVM target triples"
660 valopt_nosave mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
661
662 # On Windows this determines root of the subtree for target libraries.
663 # Host runtime libs always go to 'bin'.
664 valopt libdir "${CFG_PREFIX}/lib" "install libraries"
665
666 case "$CFG_LIBDIR" in
667     "$CFG_PREFIX"/*) CAT_INC=2;;
668     "$CFG_PREFIX"*)  CAT_INC=1;;
669     *)
670         err "libdir must begin with the prefix. Use --prefix to set it accordingly.";;
671 esac
672
673 CFG_LIBDIR_RELATIVE=`echo ${CFG_LIBDIR} | cut -c$((${#CFG_PREFIX}+${CAT_INC}))-`
674
675 if [ $HELP -eq 1 ]
676 then
677     echo
678     exit 0
679 fi
680
681 # Validate Options
682 if [ -z "$CFG_DISABLE_OPTION_CHECKING" ]
683 then
684     step_msg "validating $CFG_SELF args"
685     validate_opt
686 fi
687
688 # Validate the release channel, and configure options
689 case "$CFG_RELEASE_CHANNEL" in
690     nightly )
691         msg "overriding settings for $CFG_RELEASE_CHANNEL"
692         CFG_ENABLE_LLVM_ASSERTIONS=1
693         ;;
694     dev | beta | stable)
695         ;;
696     *)
697         err "release channel must be 'dev', 'nightly', 'beta' or 'stable'"
698         ;;
699 esac
700
701 # Adjust perf and debug options for debug mode
702 if [ -n "$CFG_ENABLE_DEBUG" ]; then
703     msg "debug mode enabled, setting performance options"
704     if [ -z "$CFG_ENABLE_OPTIMIZE_PROVIDED" ]; then
705         msg "optimization not explicitly enabled, disabling optimization"
706         CFG_DISABLE_OPTIMIZE=1
707         CFG_DISABLE_OPTIMIZE_CXX=1
708     fi
709
710     # Set following variables to 1 unless setting already provided
711     enable_if_not_disabled debug-assertions
712     enable_if_not_disabled debug-jemalloc
713     enable_if_not_disabled debuginfo
714     enable_if_not_disabled llvm-assertions
715 fi
716
717 # OK, now write the debugging options
718 if [ -n "$CFG_DISABLE_OPTIMIZE" ]; then putvar CFG_DISABLE_OPTIMIZE; fi
719 if [ -n "$CFG_DISABLE_OPTIMIZE_CXX" ]; then putvar CFG_DISABLE_OPTIMIZE_CXX; fi
720 if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]; then putvar CFG_DISABLE_OPTIMIZE_LLVM; fi
721 if [ -n "$CFG_ENABLE_LLVM_ASSERTIONS" ]; then putvar CFG_ENABLE_LLVM_ASSERTIONS; fi
722 if [ -n "$CFG_ENABLE_DEBUG_ASSERTIONS" ]; then putvar CFG_ENABLE_DEBUG_ASSERTIONS; fi
723 if [ -n "$CFG_ENABLE_DEBUGINFO" ]; then putvar CFG_ENABLE_DEBUGINFO; fi
724 if [ -n "$CFG_ENABLE_DEBUG_JEMALLOC" ]; then putvar CFG_ENABLE_DEBUG_JEMALLOC; fi
725
726 if [ -n "$CFG_ENABLE_ORBIT" ]; then putvar CFG_ENABLE_ORBIT; fi
727
728 step_msg "looking for build programs"
729
730 probe_need CFG_CURL curl
731 if [ -z "$CFG_PYTHON_PROVIDED" ]; then
732     probe_need CFG_PYTHON      python2.7 python2 python
733 fi
734
735 python_version=$($CFG_PYTHON -V 2>&1)
736 if [ $(echo $python_version | grep -c '^Python 2\.7') -ne 1 ]; then
737     err "Found $python_version, but Python 2.7 is required"
738 fi
739
740 # If we have no git directory then we are probably a tarball distribution
741 # and shouldn't attempt to load submodules
742 if [ ! -e ${CFG_SRC_DIR}.git ]
743 then
744     probe CFG_GIT          git
745     msg "git: no git directory. disabling submodules"
746     CFG_DISABLE_MANAGE_SUBMODULES=1
747 else
748     probe_need CFG_GIT     git
749 fi
750
751 # Use `md5sum` on GNU platforms, or `md5 -q` on BSD
752 probe CFG_MD5              md5
753 probe CFG_MD5SUM           md5sum
754 if [ -n "$CFG_MD5" ]
755 then
756     CFG_HASH_COMMAND="$CFG_MD5 -q | cut -c 1-8"
757 elif [ -n "$CFG_MD5SUM" ]
758 then
759     CFG_HASH_COMMAND="$CFG_MD5SUM | cut -c 1-8"
760 else
761     err 'could not find one of: md5 md5sum'
762 fi
763 putvar CFG_HASH_COMMAND
764
765 probe CFG_CLANG            clang++
766 probe CFG_CCACHE           ccache
767 probe CFG_GCC              gcc
768 probe CFG_LD               ld
769 probe CFG_VALGRIND         valgrind
770 probe CFG_PERF             perf
771 probe CFG_ISCC             iscc
772 probe CFG_ANTLR4           antlr4
773 probe CFG_GRUN             grun
774 probe CFG_FLEX             flex
775 probe CFG_BISON            bison
776 probe CFG_GDB              gdb
777 probe CFG_LLDB             lldb
778
779 if [ -n "$CFG_ENABLE_NINJA" ]
780 then
781   probe CFG_NINJA            ninja
782   if [ -z "$CFG_NINJA" ]
783   then
784     # On Debian and Fedora, the `ninja` binary is an IRC bot, so the build tool was
785     # renamed. Handle this case.
786     probe CFG_NINJA            ninja-build
787   fi
788 fi
789
790 # For building LLVM
791 probe_need CFG_CMAKE cmake
792
793 # On MacOS X, invoking `javac` pops up a dialog if the JDK is not
794 # installed. Since `javac` is only used if `antlr4` is available,
795 # probe for it only in this case.
796 if [ -n "$CFG_ANTLR4" ]
797 then
798    probe CFG_JAVAC            javac
799 fi
800
801 # the valgrind rpass tests will fail if you don't have a valgrind, but they're
802 # only disabled if you opt out.
803 if [ -z "$CFG_VALGRIND" ]
804 then
805     # If the user has explicitly asked for valgrind tests, then fail
806     if [ -n "$CFG_ENABLE_VALGRIND" ] && [ -n "$CFG_ENABLE_VALGRIND_PROVIDED" ]
807     then
808         err "No valgrind present, but valgrind tests explicitly requested"
809     else
810         CFG_DISABLE_VALGRIND_RPASS=1
811         putvar CFG_DISABLE_VALGRIND_RPASS
812     fi
813 fi
814
815 if [ -n "$CFG_GDB" ]
816 then
817     # Store GDB's version
818     CFG_GDB_VERSION=$($CFG_GDB --version 2>/dev/null | head -1)
819     putvar CFG_GDB_VERSION
820 fi
821
822 if [ -n "$CFG_LLDB" ]
823 then
824     # Store LLDB's version
825     CFG_LLDB_VERSION=$($CFG_LLDB --version 2>/dev/null | head -1)
826     putvar CFG_LLDB_VERSION
827
828     # If CFG_LLDB_PYTHON_DIR is not already set from the outside and valid, try to read it from
829     # LLDB via the -P commandline options.
830     if [ -z "$CFG_LLDB_PYTHON_DIR" ] || [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
831     then
832         CFG_LLDB_PYTHON_DIR=$($CFG_LLDB -P)
833
834         # If CFG_LLDB_PYTHON_DIR is not a valid directory, set it to something more readable
835         if [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
836         then
837             CFG_LLDB_PYTHON_DIR="LLDB_PYTHON_DIRECTORY_NOT_FOUND"
838         fi
839
840         putvar CFG_LLDB_PYTHON_DIR
841     fi
842 fi
843
844 # LLDB tests on OSX require /usr/bin/python, not something like Homebrew's
845 # /usr/local/bin/python. We're loading a compiled module for LLDB tests which is
846 # only compatible with the system.
847 case $CFG_BUILD in
848     *-apple-darwin)
849         CFG_LLDB_PYTHON=/usr/bin/python
850         ;;
851     *)
852         CFG_LLDB_PYTHON=$CFG_PYTHON
853         ;;
854 esac
855 putvar CFG_LLDB_PYTHON
856
857 step_msg "looking for target specific programs"
858
859 probe CFG_ADB        adb
860
861 BIN_SUF=
862 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ]
863 then
864     BIN_SUF=.exe
865 fi
866
867 # --enable-local-rebuild implies --enable-local-rust too
868 if [ -n "$CFG_ENABLE_LOCAL_REBUILD" ]
869 then
870     if [ -z "$CFG_ENABLE_LOCAL_RUST" ]
871     then
872         CFG_ENABLE_LOCAL_RUST=1
873         putvar CFG_ENABLE_LOCAL_RUST
874     fi
875 fi
876
877 if [ -n "$CFG_ENABLE_LOCAL_RUST" ]
878 then
879     system_rustc=$(which rustc)
880     if [ -f ${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF} ]
881     then
882         : # everything already configured
883     elif [ -n "$system_rustc" ]
884     then
885         # we assume that rustc is in a /bin directory
886         CFG_LOCAL_RUST_ROOT=${system_rustc%/bin/rustc}
887     else
888         err "no local rust to use"
889     fi
890
891     CMD="${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF}"
892     LRV=`$CMD --version`
893     if [ $? -ne 0 ]
894     then
895         step_msg "failure while running $CMD --version"
896         exit 1
897     fi
898     step_msg "using rustc at: ${CFG_LOCAL_RUST_ROOT} with version: $LRV"
899     putvar CFG_LOCAL_RUST_ROOT
900 fi
901
902 # Force bitrig to build with clang; gcc doesn't like us there
903 if [ $CFG_OSTYPE = unknown-bitrig ]
904 then
905     step_msg "on Bitrig, forcing use of clang"
906     CFG_ENABLE_CLANG=1
907 fi
908
909 # default gcc version under OpenBSD maybe too old, try using egcc, which is a
910 # gcc version from ports
911 if [ $CFG_OSTYPE = unknown-openbsd ]
912 then
913     if [ $("$CFG_GCC" --version 2>&1 | grep -c ' 4\.[0-6]') -ne 0 ]; then
914         step_msg "older GCC found, try with egcc instead"
915
916         # probe again but using egcc
917         probe CFG_GCC egcc
918
919         # and use egcc/eg++ for CC/CXX too if it was found
920         # (but user setting has priority)
921         if [ -n "$CFG_GCC" ]; then
922             CC="${CC:-egcc}"
923             CXX="${CXX:-eg++}"
924         fi
925     fi
926 fi
927
928 # OS X 10.9, gcc is actually clang. This can cause some confusion in the build
929 # system, so if we find that gcc is clang, we should just use clang directly.
930 if [ $CFG_OSTYPE = apple-darwin -a -z "$CFG_ENABLE_CLANG" ]
931 then
932     CFG_OSX_GCC_VERSION=$("$CFG_GCC" --version 2>&1 | grep "Apple LLVM version")
933     if [ $? -eq 0 ]
934     then
935         step_msg "on OS X >=10.9, forcing use of clang"
936         CFG_ENABLE_CLANG=1
937     else
938         if [ $("$CFG_GCC" --version 2>&1 | grep -c ' 4\.[0-6]') -ne 0 ]; then
939             step_msg "older GCC found, using clang instead"
940             CFG_ENABLE_CLANG=1
941         else
942             # on OS X, with xcode 5 and newer, certain developers may have
943             # cc, gcc and g++ point to a  mixture of clang and gcc
944             # if so, this will create very strange build errors
945             # this last stanza is to detect some such problems and save the future rust
946             # contributor some time solving that issue.
947             # this detection could be generalized to other OSes aside from OS X
948             # but the issue seems most likely to happen on OS X
949
950             chk_cc () {
951                 $1 --version 2> /dev/null | grep -q $2
952             }
953             # check that gcc, cc and g++ all point to the same compiler.
954             # note that for xcode 5, g++ points to clang, not clang++
955             if !((chk_cc gcc clang  && chk_cc g++ clang) ||
956                 (chk_cc gcc gcc  &&( chk_cc g++ g++ || chk g++ gcc))); then
957                 err "the gcc and g++ in your path point to different compilers.
958     Check which versions are in your path with gcc --version and g++ --version.
959     To resolve this problem, either fix your PATH  or run configure with --enable-clang"
960             fi
961
962         fi
963     fi
964 fi
965
966 # If the clang isn't already enabled, check for GCC, and if it is missing, turn
967 # on clang as a backup.
968 if [ -z "$CFG_ENABLE_CLANG" ]
969 then
970   CFG_GCC_VERSION=$("$CFG_GCC" --version 2>&1)
971   if [ $? -ne 0 ]
972   then
973     step_msg "GCC not installed, will try using Clang"
974     CFG_ENABLE_CLANG=1
975   fi
976 fi
977
978 # Okay, at this point, we have made up our minds about whether we are
979 # going to force CFG_ENABLE_CLANG or not; save the setting if so.
980 if [ -n "$CFG_ENABLE_CLANG" ]
981 then
982     putvar CFG_ENABLE_CLANG
983 fi
984
985 if [ -z "$CFG_DISABLE_LIBCPP" -a -n "$CFG_ENABLE_CLANG" ]
986 then
987     CFG_USING_LIBCPP="1"
988 else
989     CFG_USING_LIBCPP="0"
990 fi
991
992 # Same with jemalloc.  save the setting here.
993 if [ -n "$CFG_DISABLE_JEMALLOC" ]
994 then
995     putvar CFG_DISABLE_JEMALLOC
996 fi
997
998 if [ -n "$CFG_LLVM_ROOT" -a -z "$CFG_DISABLE_LLVM_VERSION_CHECK" -a -e "$CFG_LLVM_ROOT/bin/llvm-config" ]
999 then
1000     step_msg "using custom LLVM at $CFG_LLVM_ROOT"
1001
1002     LLVM_CONFIG="$CFG_LLVM_ROOT/bin/llvm-config"
1003     LLVM_VERSION=$($LLVM_CONFIG --version)
1004
1005     case $LLVM_VERSION in
1006         (3.[7-8]*)
1007             msg "found ok version of LLVM: $LLVM_VERSION"
1008             ;;
1009         (*)
1010             err "bad LLVM version: $LLVM_VERSION, need >=3.7"
1011             ;;
1012     esac
1013 fi
1014
1015 # Even when the user overrides the choice of CC, still try to detect
1016 # clang to disable some clang-specific warnings.  We here draw a
1017 # distinction between:
1018 #
1019 #  CFG_ENABLE_CLANG : passed --enable-clang, or host "requires" clang,
1020 #  CFG_USING_CLANG : compiler (clang / gcc / $CC) looks like clang.
1021 #
1022 # This distinction is important because there are some safeguards we
1023 # would prefer to skip when merely CFG_USING_CLANG is set; but when
1024 # CFG_ENABLE_CLANG is set, that indicates that we are opting into
1025 # running such safeguards.
1026
1027 if [ -n "$CC" ]
1028 then
1029     msg "skipping compiler inference steps; using provided CC=$CC"
1030     CFG_CC="$CC"
1031
1032     CFG_OSX_CC_VERSION=$("$CFG_CC" --version 2>&1 | grep "clang")
1033     if [ $? -eq 0 ]
1034     then
1035         step_msg "note, user-provided CC looks like clang; CC=$CC."
1036         CFG_USING_CLANG=1
1037         putvar CFG_USING_CLANG
1038     fi
1039 else
1040     if [ -n "$CFG_ENABLE_CLANG" ]
1041     then
1042         if [ -z "$CFG_CLANG" ]
1043         then
1044             err "clang requested but not found"
1045         fi
1046         CFG_CC="$CFG_CLANG"
1047         CFG_USING_CLANG=1
1048         putvar CFG_USING_CLANG
1049     else
1050         CFG_CC="gcc"
1051     fi
1052 fi
1053
1054 if [ -n "$CFG_ENABLE_CLANG" ]
1055 then
1056     case "$CC" in
1057         (''|*clang)
1058         if [ -z "$CC" ]
1059         then
1060             CFG_CC="clang"
1061             CFG_CXX="clang++"
1062         fi
1063     esac
1064 fi
1065
1066 if [ -n "$CFG_ENABLE_CCACHE" ]
1067 then
1068     if [ -z "$CFG_CCACHE" ]
1069     then
1070         err "ccache requested but not found"
1071     fi
1072
1073     CFG_CC="ccache $CFG_CC"
1074 fi
1075
1076 if [ -z "$CC" -a -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
1077 then
1078     err "either clang or gcc is required"
1079 fi
1080
1081 # All safeguards based on $CFG_ENABLE_CLANG should occur before this
1082 # point in the script; after this point, script logic should inspect
1083 # $CFG_USING_CLANG rather than $CFG_ENABLE_CLANG.
1084
1085 # Set CFG_{CC,CXX,CPP,CFLAGS,CXXFLAGS,LDFLAGS}
1086 envopt CC
1087 envopt CXX
1088 envopt CPP
1089 envopt CFLAGS
1090 envopt CXXFLAGS
1091 envopt LDFLAGS
1092
1093 # stdc++ name in use
1094 # used to manage non-standard name (on OpenBSD for example)
1095 program_transform_name=$($CFG_CC -v 2>&1 | sed -n "s/.*--program-transform-name='\([^']*\)'.*/\1/p")
1096 CFG_STDCPP_NAME=$(echo "stdc++" | sed "${program_transform_name}")
1097 putvar CFG_STDCPP_NAME
1098
1099 # a little post-processing of various config values
1100 CFG_PREFIX=${CFG_PREFIX%/}
1101 CFG_MANDIR=${CFG_MANDIR%/}
1102 CFG_HOST="$(echo $CFG_HOST | tr ',' ' ')"
1103 CFG_TARGET="$(echo $CFG_TARGET | tr ',' ' ')"
1104 CFG_SUPPORTED_TARGET=""
1105 for target_file in ${CFG_SRC_DIR}mk/cfg/*.mk; do
1106   CFG_SUPPORTED_TARGET="${CFG_SUPPORTED_TARGET} $(basename "$target_file" .mk)"
1107 done
1108
1109 # copy build-triples to host-triples so that builds are a subset of hosts
1110 V_TEMP=""
1111 for i in $CFG_BUILD $CFG_HOST;
1112 do
1113    echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
1114 done
1115 CFG_HOST=$V_TEMP
1116
1117 # copy host-triples to target-triples so that hosts are a subset of targets
1118 V_TEMP=""
1119 for i in $CFG_HOST $CFG_TARGET;
1120 do
1121    echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
1122 done
1123 CFG_TARGET=$V_TEMP
1124
1125 # check target-specific tool-chains
1126 for i in $CFG_TARGET
1127 do
1128     L_CHECK=false
1129     for j in $CFG_SUPPORTED_TARGET
1130     do
1131         if [ $i = $j ]
1132         then
1133             L_CHECK=true
1134         fi
1135     done
1136
1137     if [ $L_CHECK = false ]
1138     then
1139         err "unsupported target triples \"$i\" found"
1140     fi
1141
1142     case $i in
1143         *android*)
1144             case $i in
1145                 armv7-linux-androideabi)
1146                     cmd_prefix="arm-linux-androideabi"
1147                     ;;
1148                 *)
1149                     cmd_prefix=$i
1150                     ;;
1151             esac
1152
1153             upper_snake_target=$(echo "$i" | tr '[:lower:]' '[:upper:]' | tr '\-' '\_')
1154             eval ndk=\$"CFG_${upper_snake_target}_NDK"
1155             if [ -z "$ndk" ]
1156             then
1157                 ndk=$CFG_ANDROID_CROSS_PATH
1158                 eval "CFG_${upper_snake_target}_NDK"=$CFG_ANDROID_CROSS_PATH
1159                 warn "generic/default Android NDK option is deprecated (use --$i-ndk option instead)"
1160             fi
1161
1162             # Perform a basic sanity check of the NDK
1163             for android_ndk_tool in "$ndk/bin/$cmd_prefix-gcc" "$ndk/bin/$cmd_prefix-g++" "$ndk/bin/$cmd_prefix-ar"
1164             do
1165                 if [ ! -f $android_ndk_tool ]
1166                 then
1167                     err "NDK tool $android_ndk_tool not found (bad or missing --$i-ndk option?)"
1168                 fi
1169             done
1170             ;;
1171         *-unknown-nacl)
1172             if [ -z "$CFG_NACL_CROSS_PATH" ]
1173             then
1174                 err "I need the NaCl SDK path! (use --nacl-cross-path)"
1175             fi
1176             ;;
1177         arm-apple-darwin)
1178             if [ $CFG_OSTYPE != apple-darwin ]
1179             then
1180                 err "The iOS target is only supported on Mac OS X"
1181             fi
1182             ;;
1183
1184
1185         x86_64-*-musl)
1186             if [ ! -f $CFG_MUSL_ROOT/lib/libc.a ]
1187             then
1188                 err "musl libc $CFG_MUSL_ROOT/lib/libc.a not found"
1189             fi
1190             ;;
1191
1192         *-msvc)
1193             # There are three builds of cmake on windows: MSVC, MinGW and Cygwin
1194             # The Cygwin build does not have generators for Visual Studio, so
1195             # detect that here and error.
1196             if ! "$CFG_CMAKE" --help | sed -n '/^Generators/,$p' | grep 'Visual Studio' > /dev/null
1197             then
1198                 err "
1199
1200 cmake does not support Visual Studio generators.
1201
1202 This is likely due to it being an msys/cygwin build of cmake, \
1203 rather than the required windows version, built using MinGW \
1204 or Visual Studio.
1205
1206 If you are building under msys2 try installing the mingw-w64-x86_64-cmake \
1207 package instead of cmake:
1208
1209 $ pacman -R cmake && pacman -S mingw-w64-x86_64-cmake
1210 "
1211             fi
1212
1213             # Use the REG program to figure out where VS is installed
1214             # We need to figure out where cl.exe and link.exe are, so we do some
1215             # munging and some probing here. We also look for the default
1216             # INCLUDE and LIB variables for MSVC so we can set those in the
1217             # build system as well.
1218             install=$(cmd //c reg QUERY \
1219                        'HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\14.0' \
1220                        -v InstallDir)
1221             if [ -z "$install" ]; then
1222               install=$(cmd //c reg QUERY \
1223                          'HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\12.0' \
1224                          -v InstallDir)
1225             fi
1226             need_ok "couldn't find visual studio install root"
1227             CFG_MSVC_ROOT=$(echo "$install" | grep InstallDir | sed 's/.*REG_SZ[ ]*//')
1228             CFG_MSVC_ROOT=$(dirname "$CFG_MSVC_ROOT")
1229             CFG_MSVC_ROOT=$(dirname "$CFG_MSVC_ROOT")
1230             putvar CFG_MSVC_ROOT
1231
1232             case $i in
1233                 x86_64-*)
1234                     bits=x86_64
1235                     msvc_part=amd64
1236                     ;;
1237                 i*86-*)
1238                     bits=i386
1239                     msvc_part=
1240                     ;;
1241                 *)
1242                     err "can only target x86 targets for MSVC"
1243                     ;;
1244             esac
1245             bindir="${CFG_MSVC_ROOT}/VC/bin"
1246             if [ -n "$msvc_part" ]; then
1247                 bindir="$bindir/$msvc_part"
1248             fi
1249             eval CFG_MSVC_BINDIR_$bits="\"$bindir\""
1250             eval CFG_MSVC_CL_$bits="\"$bindir/cl.exe\""
1251             eval CFG_MSVC_LIB_$bits="\"$bindir/lib.exe\""
1252             eval CFG_MSVC_LINK_$bits="\"$bindir/link.exe\""
1253
1254             vcvarsall="${CFG_MSVC_ROOT}/VC/vcvarsall.bat"
1255             include_path=$(cmd //V:ON //c "$vcvarsall" $msvc_part \& echo !INCLUDE!)
1256             need_ok "failed to learn about MSVC's INCLUDE"
1257             lib_path=$(cmd //V:ON //c "$vcvarsall" $msvc_part \& echo !LIB!)
1258             need_ok "failed to learn about MSVC's LIB"
1259
1260             eval CFG_MSVC_INCLUDE_PATH_${bits}="\"$include_path\""
1261             eval CFG_MSVC_LIB_PATH_${bits}="\"$lib_path\""
1262
1263             putvar CFG_MSVC_BINDIR_${bits}
1264             putvar CFG_MSVC_CL_${bits}
1265             putvar CFG_MSVC_LIB_${bits}
1266             putvar CFG_MSVC_LINK_${bits}
1267             putvar CFG_MSVC_INCLUDE_PATH_${bits}
1268             putvar CFG_MSVC_LIB_PATH_${bits}
1269             ;;
1270
1271         *)
1272             ;;
1273     esac
1274 done
1275
1276 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ]
1277 then
1278     # There are some MSYS python builds which will auto-translate
1279     # windows-style paths to MSYS-style paths in Python itself.
1280     # Unfortunately this breaks LLVM's build system as somewhere along
1281     # the line LLVM prints a path into a file from Python and then CMake
1282     # later tries to interpret that path. If Python prints a MSYS path
1283     # and CMake tries to use it as a Windows path, you're gonna have a
1284     # Bad Time.
1285     #
1286     # Consequently here we try to detect when that happens and print an
1287     # error if it does.
1288     if $CFG_PYTHON -c 'import sys; print sys.argv[1]' `pwd` | grep '^/' > /dev/null
1289     then
1290         err "
1291
1292 python is silently translating windows paths to MSYS paths \
1293 and the build will fail if this python is used.
1294
1295 Either an official python install must be used or an \
1296 alternative python package in MinGW must be used.
1297
1298 If you are building under msys2 try installing the mingw-w64-x86_64-python2 \
1299 package instead of python2:
1300
1301 $ pacman -S mingw-w64-x86_64-python2
1302 "
1303     fi
1304 fi
1305
1306 if [ -n "$CFG_PERF" ]
1307 then
1308     HAVE_PERF_LOGFD=`$CFG_PERF stat --log-fd 2>&1 | grep 'unknown option'`
1309     if [ -z "$HAVE_PERF_LOGFD" ];
1310     then
1311         CFG_PERF_WITH_LOGFD=1
1312         putvar CFG_PERF_WITH_LOGFD
1313     fi
1314 fi
1315
1316 if [ -z "$CFG_ENABLE_RUSTBUILD" ]; then
1317
1318   step_msg "making directories"
1319
1320   for i in \
1321       doc doc/std doc/extra \
1322       dl tmp dist
1323   do
1324       make_dir $i
1325   done
1326
1327   for t in $CFG_HOST
1328   do
1329       make_dir $t/llvm
1330   done
1331
1332   for t in $CFG_HOST
1333   do
1334       make_dir $t/rustllvm
1335   done
1336
1337   for t in $CFG_TARGET
1338   do
1339     make_dir $t/rt
1340     for s in 0 1 2 3
1341     do
1342       make_dir $t/rt/stage$s
1343       make_dir $t/rt/jemalloc
1344       make_dir $t/rt/compiler-rt
1345       for i in                                          \
1346         isaac sync test \
1347         arch/i386 arch/x86_64 arch/arm arch/aarch64 arch/mips arch/powerpc
1348       do
1349         make_dir $t/rt/stage$s/$i
1350       done
1351     done
1352   done
1353
1354   for h in $CFG_HOST
1355   do
1356       for t in $CFG_TARGET
1357       do
1358           # host bin dir stage0
1359           make_dir $h/stage0/bin
1360
1361           # host lib dir stage0
1362           make_dir $h/stage0/lib
1363
1364           # host test dir stage0
1365           make_dir $h/stage0/test
1366
1367           # target bin dir stage0
1368           make_dir $h/stage0/lib/rustlib/$t/bin
1369
1370           # target lib dir stage0
1371           make_dir $h/stage0/lib/rustlib/$t/lib
1372
1373           for i in 1 2 3
1374           do
1375               # host bin dir
1376               make_dir $h/stage$i/bin
1377
1378               # host lib dir
1379               make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE
1380
1381               # host test dir
1382               make_dir $h/stage$i/test
1383
1384               # target bin dir
1385               make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/bin
1386
1387               # target lib dir
1388               make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/lib
1389           done
1390       done
1391
1392       make_dir $h/test/run-pass
1393       make_dir $h/test/run-pass-valgrind
1394       make_dir $h/test/run-pass-fulldeps
1395       make_dir $h/test/run-fail
1396       make_dir $h/test/run-fail-fulldeps
1397       make_dir $h/test/compile-fail
1398       make_dir $h/test/parse-fail
1399       make_dir $h/test/compile-fail-fulldeps
1400       make_dir $h/test/bench
1401       make_dir $h/test/perf
1402       make_dir $h/test/pretty
1403       make_dir $h/test/debuginfo-gdb
1404       make_dir $h/test/debuginfo-lldb
1405       make_dir $h/test/codegen
1406       make_dir $h/test/codegen-units
1407       make_dir $h/test/rustdoc
1408   done
1409
1410 fi
1411
1412 # Configure submodules
1413 step_msg "configuring submodules"
1414
1415 # Have to be in the top of src directory for this
1416 if [ -z $CFG_DISABLE_MANAGE_SUBMODULES ] && [ -z $CFG_ENABLE_RUSTBUILD ]
1417 then
1418     cd ${CFG_SRC_DIR}
1419
1420     msg "git: submodule sync"
1421     "${CFG_GIT}" submodule sync
1422
1423     msg "git: submodule init"
1424     "${CFG_GIT}" submodule init
1425
1426     # Disable submodules that we're not using
1427     if [ -n "${CFG_LLVM_ROOT}" ]; then
1428         msg "git: submodule deinit src/llvm"
1429         "${CFG_GIT}" submodule deinit src/llvm
1430     fi
1431     if [ -n "${CFG_JEMALLOC_ROOT}" ]; then
1432         msg "git: submodule deinit src/jemalloc"
1433         "${CFG_GIT}" submodule deinit src/jemalloc
1434     fi
1435
1436     msg "git: submodule update"
1437     "${CFG_GIT}" submodule update
1438     need_ok "git failed"
1439
1440     msg "git: submodule foreach sync"
1441     "${CFG_GIT}" submodule foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi'
1442     need_ok "git failed"
1443
1444     msg "git: submodule foreach update"
1445     "${CFG_GIT}" submodule update --recursive
1446     need_ok "git failed"
1447
1448     # NB: this is just for the sake of getting the submodule SHA1 values
1449     # and status written into the build log.
1450     msg "git: submodule status"
1451     "${CFG_GIT}" submodule status --recursive
1452
1453     msg "git: submodule clobber"
1454     "${CFG_GIT}" submodule foreach --recursive git clean -dxf
1455     need_ok "git failed"
1456     "${CFG_GIT}" submodule foreach --recursive git checkout .
1457     need_ok "git failed"
1458
1459     cd ${CFG_BUILD_DIR}
1460 fi
1461
1462 # Do a sanity check that the submodule source exists. Because GitHub
1463 # automatically publishes broken tarballs that can't be disabled, and
1464 # people download them and try to use them.
1465 if [ ! -e "${CFG_SRC_DIR}/src/liblibc" ]; then
1466     err "some submodules are missing. Is this a broken tarball?
1467
1468 If you downloaded this tarball from the GitHub release pages at
1469 https://github.com/rust-lang/rust/releases,
1470 then please delete it and instead download the source from
1471 https://www.rust-lang.org/downloads.html"
1472
1473 fi
1474
1475 # Configure llvm, only if necessary
1476 step_msg "looking at LLVM"
1477 CFG_LLVM_SRC_DIR=${CFG_SRC_DIR}src/llvm/
1478 for t in $CFG_HOST
1479 do
1480     do_reconfigure=1
1481     is_msvc=0
1482     case "$t" in
1483         (*-msvc)
1484         is_msvc=1
1485         ;;
1486     esac
1487
1488     if [ -n "$CFG_ENABLE_RUSTBUILD" ]
1489     then
1490         msg "not configuring LLVM, rustbuild in use"
1491         do_reconfigure=0
1492     elif [ -z $CFG_LLVM_ROOT ]
1493     then
1494         LLVM_BUILD_DIR=${CFG_BUILD_DIR}$t/llvm
1495         LLVM_INST_DIR=$LLVM_BUILD_DIR
1496         # For some crazy reason the MSVC output dir is different than Unix
1497         if [ ${is_msvc} -ne 0 ]; then
1498             if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]
1499             then
1500                 # Just use LLVM straight from its build directory to
1501                 # avoid 'make install' time
1502                 LLVM_INST_DIR=$LLVM_BUILD_DIR/Debug
1503             else
1504                 LLVM_INST_DIR=$LLVM_BUILD_DIR/Release
1505             fi
1506         fi
1507     else
1508         msg "not reconfiguring LLVM, external LLVM root"
1509         # The user is using their own LLVM
1510         LLVM_BUILD_DIR=
1511         LLVM_INST_DIR=$CFG_LLVM_ROOT
1512         do_reconfigure=0
1513         # Check that LLVm FileCheck is available. Needed for the tests
1514         if [ -z "$CFG_DISABLE_CODEGEN_TESTS" ]; then
1515             need_cmd $LLVM_INST_DIR/bin/FileCheck
1516         fi
1517     fi
1518
1519     if [ ${do_reconfigure} -ne 0 ]
1520     then
1521     # because git is hilarious, it might have put the module index
1522     # in a couple places.
1523         index1="${CFG_SRC_DIR}.git/modules/src/llvm/index"
1524         index2="${CFG_SRC_DIR}src/llvm/.git/index"
1525         for index in ${index1} ${index2}
1526         do
1527             config_status="${LLVM_BUILD_DIR}/config.status"
1528             if test -e ${index} -a \
1529                     -e ${config_status} -a \
1530                     ${config_status} -nt ${index}
1531             then
1532                 msg "not reconfiguring LLVM, config.status is fresh"
1533                 do_reconfigure=0
1534             fi
1535         done
1536     fi
1537
1538     # We need the generator later on for compiler-rt even if LLVM's not built
1539     if [ -n "$CFG_NINJA" ]
1540     then
1541         generator="Ninja"
1542     elif [ ${is_msvc} -ne 0 ]
1543     then
1544         case "$CFG_MSVC_ROOT" in
1545             *14.0*)
1546                 generator="Visual Studio 14 2015"
1547                 ;;
1548             *12.0*)
1549                 generator="Visual Studio 12 2013"
1550                 ;;
1551             *)
1552                 err "can't determine generator for LLVM cmake"
1553                 ;;
1554         esac
1555         case "$t" in
1556             x86_64-*)
1557                 generator="$generator Win64"
1558                 ;;
1559             i686-*)
1560                 ;;
1561             *)
1562                 err "can only build LLVM for x86 platforms"
1563                 ;;
1564         esac
1565     else
1566         generator="Unix Makefiles"
1567     fi
1568     CFG_CMAKE_GENERATOR=$generator
1569     putvar CFG_CMAKE_GENERATOR
1570
1571     msg "configuring LLVM for $t"
1572
1573     LLVM_CFLAGS_32=""
1574     LLVM_CXXFLAGS_32=""
1575     LLVM_LDFLAGS_32=""
1576     LLVM_CFLAGS_64=""
1577     LLVM_CXXFLAGS_64=""
1578     LLVM_LDFLAGS_64=""
1579
1580     case "$CFG_CC" in
1581         ("ccache clang")
1582             LLVM_CXX_32="ccache"
1583             LLVM_CC_32="ccache"
1584             LLVM_CXX_32_ARG1="clang++"
1585             LLVM_CC_32_ARG1="clang"
1586             LLVM_CFLAGS_32="-Qunused-arguments"
1587             LLVM_CXXFLAGS_32="-Qunused-arguments"
1588
1589             LLVM_CXX_64="ccache"
1590             LLVM_CC_64="ccache"
1591             LLVM_CXX_64_ARG1="clang++"
1592             LLVM_CC_64_ARG1="clang"
1593             LLVM_CFLAGS_64="-Qunused-arguments"
1594             LLVM_CXXFLAGS_64="-Qunused-arguments"
1595             ;;
1596         ("clang")
1597             LLVM_CXX_32="clang++"
1598             LLVM_CC_32="clang"
1599             LLVM_CFLAGS_32="-Qunused-arguments"
1600             LLVM_CXXFLAGS_32="-Qunused-arguments"
1601
1602             LLVM_CXX_64="clang++"
1603             LLVM_CC_64="clang"
1604             LLVM_CFLAGS_64="-Qunused-arguments"
1605             LLVM_CXXFLAGS_64="-Qunused-arguments"
1606             ;;
1607         ("ccache gcc")
1608             LLVM_CXX_32="ccache"
1609             LLVM_CC_32="ccache"
1610             LLVM_CXX_32_ARG1="clang++"
1611             LLVM_CC_32_ARG1="clang"
1612
1613             LLVM_CXX_64="ccache"
1614             LLVM_CC_64="ccache"
1615             LLVM_CXX_64_ARG1="g++"
1616             LLVM_CC_64_ARG1="gcc"
1617             ;;
1618         ("gcc")
1619             LLVM_CXX_32="g++"
1620             LLVM_CC_32="gcc"
1621
1622             LLVM_CXX_64="g++"
1623             LLVM_CC_64="gcc"
1624             ;;
1625
1626         (*)
1627             msg "inferring LLVM_CXX/CC from CXX/CC = $CXX/$CC"
1628             if [ -n "$CFG_ENABLE_CCACHE" ]
1629             then
1630                 if [ -z "$CFG_CCACHE" ]
1631                 then
1632                     err "ccache requested but not found"
1633                 fi
1634
1635                 LLVM_CXX_32="ccache"
1636                 LLVM_CC_32="ccache"
1637                 LLVM_CXX_32_ARG1="$CXX"
1638                 LLVM_CC_32_ARG1="$CC"
1639
1640                 LLVM_CXX_64="ccache"
1641                 LLVM_CC_64="ccache"
1642                 LLVM_CXX_64_ARG1="$CXX"
1643                 LLVM_CC_64_ARG1="$CC"
1644             else
1645                 LLVM_CXX_32="$CXX"
1646                 LLVM_CC_32="$CC"
1647
1648                 LLVM_CXX_64="$CXX"
1649                 LLVM_CC_64="$CC"
1650             fi
1651
1652             ;;
1653     esac
1654
1655     case "$CFG_CPUTYPE" in
1656         (x86*)
1657             LLVM_CFLAGS_32="$LLVM_CFLAGS_32 -m32"
1658             LLVM_CXXFLAGS_32="$LLVM_CXXFLAGS_32 -m32"
1659             LLVM_LDFLAGS_32="$LLVM_LDFLAGS_32 -m32"
1660             ;;
1661     esac
1662
1663     if echo $t | grep -q x86_64
1664     then
1665         LLVM_CXX=$LLVM_CXX_64
1666         LLVM_CC=$LLVM_CC_64
1667         LLVM_CXX_ARG1=$LLVM_CXX_64_ARG1
1668         LLVM_CC_ARG1=$LLVM_CC_64_ARG1
1669         LLVM_CFLAGS=$LLVM_CFLAGS_64
1670         LLVM_CXXFLAGS=$LLVM_CXXFLAGS_64
1671         LLVM_LDFLAGS=$LLVM_LDFLAGS_64
1672     else
1673         LLVM_CXX=$LLVM_CXX_32
1674         LLVM_CC=$LLVM_CC_32
1675         LLVM_CXX_ARG1=$LLVM_CXX_32_ARG1
1676         LLVM_CC_ARG1=$LLVM_CC_32_ARG1
1677         LLVM_CFLAGS=$LLVM_CFLAGS_32
1678         LLVM_CXXFLAGS=$LLVM_CXXFLAGS_32
1679         LLVM_LDFLAGS=$LLVM_LDFLAGS_32
1680     fi
1681
1682     if [ "$CFG_USING_LIBCPP" != "0" ]; then
1683         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_LIBCXX=ON"
1684     fi
1685
1686     # Turn off things we don't need
1687     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_INCLUDE_TESTS=OFF"
1688     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_INCLUDE_EXAMPLES=OFF"
1689     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_INCLUDE_DOCS=OFF"
1690     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_ZLIB=OFF"
1691     CMAKE_ARGS="$CMAKE_ARGS -DWITH_POLY=OFF"
1692     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_TERMINFO=OFF"
1693     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_LIBEDIT=OFF"
1694
1695     arch="$(echo "$t" | cut -d - -f 1)"
1696
1697     if [ "$arch" = i686 ]; then
1698         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_BUILD_32_BITS=ON"
1699     fi
1700
1701     if [ "$t" != "$CFG_BUILD" ]; then
1702         # see http://llvm.org/docs/HowToCrossCompileLLVM.html
1703         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_CROSSCOMPILING=True"
1704         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_TARGET_ARCH=$arch"
1705         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_TABLEGEN=$CFG_BUILD_DIR/$CFG_BUILD/llvm/bin/llvm-tblgen"
1706         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_DEFAULT_TARGET_TRIPLE=$t"
1707     fi
1708
1709     # MSVC handles compiler business itself
1710     if [ ${is_msvc} -eq 0 ]; then
1711         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_C_COMPILER=$LLVM_CC"
1712         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_CXX_COMPILER=$LLVM_CXX"
1713         CMAKE_ARGS="$CMAKE_ARGS '-DCMAKE_C_FLAGS=$LLVM_CFLAGS'"
1714         CMAKE_ARGS="$CMAKE_ARGS '-DCMAKE_CXX_FLAGS=$LLVM_CXXFLAGS'"
1715         if [ -n "$LLVM_CC_ARG1" ]; then
1716             CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_C_COMPILER_ARG1=$LLVM_CC_ARG1"
1717         fi
1718         if [ -n "$LLVM_CXX_ARG1" ]; then
1719             CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_CXX_COMPILER_ARG1=$LLVM_CXX_ARG1"
1720         fi
1721         # FIXME: What about LDFLAGS?
1722     fi
1723
1724     if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]; then
1725         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=Debug"
1726     else
1727         CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=Release"
1728     fi
1729     if [ -z "$CFG_ENABLE_LLVM_ASSERTIONS" ]
1730     then
1731         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_ASSERTIONS=OFF"
1732     else
1733         CMAKE_ARGS="$CMAKE_ARGS -DLLVM_ENABLE_ASSERTIONS=ON"
1734     fi
1735
1736     CMAKE_ARGS="$CMAKE_ARGS -DLLVM_TARGETS_TO_BUILD='X86;ARM;AArch64;Mips;PowerPC'"
1737     CMAKE_ARGS="$CMAKE_ARGS -G '$CFG_CMAKE_GENERATOR'"
1738     CMAKE_ARGS="$CMAKE_ARGS $CFG_LLVM_SRC_DIR"
1739
1740     if [ ${do_reconfigure} -ne 0 ]
1741     then
1742         msg "configuring LLVM for $t with cmake"
1743
1744         msg "configuring LLVM with:"
1745         msg "$CMAKE_ARGS"
1746
1747         (cd $LLVM_BUILD_DIR && eval "\"$CFG_CMAKE\"" $CMAKE_ARGS)
1748         need_ok "LLVM cmake configure failed"
1749     fi
1750
1751     # Construct variables for LLVM build and install directories for
1752     # each target. These will be named
1753     # CFG_LLVM_BUILD_DIR_${target_triple} but all the hyphens in
1754     # target_triple will be converted to underscore, because bash
1755     # variables can't contain hyphens. The makefile will then have to
1756     # convert back.
1757     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1758     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1759     eval ${CFG_LLVM_BUILD_DIR}="'$LLVM_BUILD_DIR'"
1760     eval ${CFG_LLVM_INST_DIR}="'$LLVM_INST_DIR'"
1761 done
1762
1763
1764 step_msg "writing configuration"
1765
1766 putvar CFG_SRC_DIR
1767 putvar CFG_SRC_DIR_RELATIVE
1768 putvar CFG_BUILD_DIR
1769 putvar CFG_OSTYPE
1770 putvar CFG_CPUTYPE
1771 putvar CFG_CONFIGURE_ARGS
1772 putvar CFG_PREFIX
1773 putvar CFG_HOST
1774 putvar CFG_TARGET
1775 putvar CFG_LIBDIR_RELATIVE
1776 putvar CFG_DISABLE_MANAGE_SUBMODULES
1777 putvar CFG_AARCH64_LINUX_ANDROID_NDK
1778 putvar CFG_ARM_LINUX_ANDROIDEABI_NDK
1779 putvar CFG_ARMV7_LINUX_ANDROIDEABI_NDK
1780 putvar CFG_I686_LINUX_ANDROID_NDK
1781 putvar CFG_NACL_CROSS_PATH
1782 putvar CFG_MANDIR
1783 putvar CFG_USING_LIBCPP
1784
1785 # Avoid spurious warnings from clang by feeding it original source on
1786 # ccache-miss rather than preprocessed input.
1787 if [ -n "$CFG_ENABLE_CCACHE" ] && [ -n "$CFG_USING_CLANG" ]
1788 then
1789     CFG_CCACHE_CPP2=1
1790     putvar CFG_CCACHE_CPP2
1791 fi
1792
1793 if [ -n "$CFG_ENABLE_CCACHE" ]
1794 then
1795     CFG_CCACHE_BASEDIR=${CFG_SRC_DIR}
1796     putvar CFG_CCACHE_BASEDIR
1797 fi
1798
1799
1800 putvar CFG_LLVM_SRC_DIR
1801
1802 for t in $CFG_HOST
1803 do
1804     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1805     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1806     putvar $CFG_LLVM_BUILD_DIR
1807     putvar $CFG_LLVM_INST_DIR
1808 done
1809
1810 if [ -n "$CFG_ENABLE_RUSTBUILD" ]
1811 then
1812     INPUT_MAKEFILE=src/bootstrap/mk/Makefile.in
1813 else
1814     INPUT_MAKEFILE=Makefile.in
1815 fi
1816
1817 msg
1818 copy_if_changed ${CFG_SRC_DIR}${INPUT_MAKEFILE} ./Makefile
1819 move_if_changed config.tmp config.mk
1820 rm -f config.tmp
1821 touch config.stamp
1822
1823 if [ -z "$CFG_ENABLE_DEBUG" ]; then
1824     step_msg "configured in release mode. for development consider --enable-debug"
1825 else
1826     step_msg "complete"
1827 fi
1828
1829 msg "run \`make help\`"
1830 msg