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