]> git.lizzy.rs Git - rust.git/blob - configure
6cdbfadf637984824963c5f46b779810d7462178
[rust.git] / configure
1 #!/bin/sh
2
3 msg() {
4     echo "configure: $1"
5 }
6
7 step_msg() {
8     msg
9     msg "$1"
10     msg
11 }
12
13 warn() {
14     echo "configure: WARNING: $1"
15 }
16
17 err() {
18     echo "configure: error: $1"
19     exit 1
20 }
21
22 need_ok() {
23     if [ $? -ne 0 ]
24     then
25         err "$1"
26     fi
27 }
28
29 need_cmd() {
30     if command -v $1 >/dev/null 2>&1
31     then msg "found $1"
32     else err "need $1"
33     fi
34 }
35
36 make_dir() {
37     if [ ! -d $1 ]
38     then
39         msg "mkdir -p $1"
40         mkdir -p $1
41     fi
42 }
43
44 copy_if_changed() {
45     if cmp -s $1 $2
46     then
47         msg "leaving $2 unchanged"
48     else
49         msg "cp $1 $2"
50         cp -f $1 $2
51         chmod u-w $2 # make copied artifact read-only
52     fi
53 }
54
55 move_if_changed() {
56     if cmp -s $1 $2
57     then
58         msg "leaving $2 unchanged"
59     else
60         msg "mv $1 $2"
61         mv -f $1 $2
62         chmod u-w $2 # make moved artifact read-only
63     fi
64 }
65
66 putvar() {
67     local T
68     eval T=\$$1
69     eval TLEN=\${#$1}
70     if [ $TLEN -gt 35 ]
71     then
72         printf "configure: %-20s := %.35s ...\n" $1 "$T"
73     else
74         printf "configure: %-20s := %s %s\n" $1 "$T" "$2"
75     fi
76     printf "%-20s := %s\n" $1 "$T" >>config.tmp
77 }
78
79 probe() {
80     local V=$1
81     shift
82     local P
83     local T
84     for P
85     do
86         T=$(command -v $P 2>&1)
87         if [ $? -eq 0 ]
88         then
89             VER0=$($P --version 2>/dev/null | head -1 \
90                 |  sed -e 's/[^0-9]*\([vV]\?[0-9.]\+[^ ]*\).*/\1/' )
91             if [ $? -eq 0 -a "x${VER0}" != "x" ]
92             then
93               VER="($VER0)"
94             else
95               VER=""
96             fi
97             break
98         else
99             VER=""
100             T=""
101         fi
102     done
103     eval $V=\$T
104     putvar $V "$VER"
105 }
106
107 probe_need() {
108     local V=$1
109     probe $*
110     eval VV=\$$V
111     if [ -z "$VV" ]
112     then
113         err "needed, but unable to find any of: $*"
114     fi
115 }
116
117 validate_opt () {
118     for arg in $CFG_CONFIGURE_ARGS
119     do
120         isArgValid=0
121         for option in $BOOL_OPTIONS
122         do
123             if test --disable-$option = $arg
124             then
125                 isArgValid=1
126             fi
127             if test --enable-$option = $arg
128             then
129                 isArgValid=1
130             fi
131         done
132         for option in $VAL_OPTIONS
133         do
134             if echo "$arg" | grep -q -- "--$option="
135             then
136                 isArgValid=1
137             fi
138         done
139         if [ "$arg" = "--help" ]
140         then
141             echo
142             echo "No more help available for Configure options,"
143             echo "check the Wiki or join our IRC channel"
144             break
145         else
146             if test $isArgValid -eq 0
147             then
148                 err "Option '$arg' is not recognized"
149             fi
150         fi
151     done
152 }
153
154 valopt() {
155     VAL_OPTIONS="$VAL_OPTIONS $1"
156
157     local OP=$1
158     local DEFAULT=$2
159     shift
160     shift
161     local DOC="$*"
162     if [ $HELP -eq 0 ]
163     then
164         local UOP=$(echo $OP | tr '[:lower:]' '[:upper:]' | tr '\-' '\_')
165         local V="CFG_${UOP}"
166         eval $V="$DEFAULT"
167         for arg in $CFG_CONFIGURE_ARGS
168         do
169             if echo "$arg" | grep -q -- "--$OP="
170             then
171                 val=$(echo "$arg" | cut -f2 -d=)
172                 eval $V=$val
173             fi
174         done
175         putvar $V
176     else
177         if [ -z "$DEFAULT" ]
178         then
179             DEFAULT="<none>"
180         fi
181         OP="${OP}=[${DEFAULT}]"
182         printf "    --%-30s %s\n" "$OP" "$DOC"
183     fi
184 }
185
186 opt() {
187     BOOL_OPTIONS="$BOOL_OPTIONS $1"
188
189     local OP=$1
190     local DEFAULT=$2
191     shift
192     shift
193     local DOC="$*"
194     local FLAG=""
195
196     if [ $DEFAULT -eq 0 ]
197     then
198         FLAG="enable"
199     else
200         FLAG="disable"
201         DOC="don't $DOC"
202     fi
203
204     if [ $HELP -eq 0 ]
205     then
206         for arg in $CFG_CONFIGURE_ARGS
207         do
208             if [ "$arg" = "--${FLAG}-${OP}" ]
209             then
210                 OP=$(echo $OP | tr 'a-z-' 'A-Z_')
211                 FLAG=$(echo $FLAG | tr 'a-z' 'A-Z')
212                 local V="CFG_${FLAG}_${OP}"
213                 eval $V=1
214                 putvar $V
215             fi
216         done
217     else
218         if [ ! -z "$META" ]
219         then
220             OP="$OP=<$META>"
221         fi
222         printf "    --%-30s %s\n" "$FLAG-$OP" "$DOC"
223      fi
224 }
225
226 envopt() {
227     local NAME=$1
228     local V="CFG_${NAME}"
229     eval VV=\$$V
230
231     # If configure didn't set a value already, then check environment.
232     #
233     # (It is recommended that the configure script always check the
234     # environment before setting any values to envopt variables; see
235     # e.g.  how CFG_CC is handled, where it first checks `-z "$CC"`,
236     # and issues msg if it ends up employing that provided value.)
237     if [ -z "$VV" ]
238     then
239         eval $V=\$$NAME
240         eval VV=\$$V
241     fi
242
243     # If script or environment provided a value, save it.
244     if [ ! -z "$VV" ]
245     then
246         putvar $V
247     fi
248 }
249
250 msg "looking for configure programs"
251 need_cmd cmp
252 need_cmd mkdir
253 need_cmd printf
254 need_cmd cut
255 need_cmd head
256 need_cmd grep
257 need_cmd xargs
258 need_cmd cp
259 need_cmd find
260 need_cmd uname
261 need_cmd date
262 need_cmd tr
263 need_cmd sed
264 need_cmd file
265
266 msg "inspecting environment"
267
268 CFG_OSTYPE=$(uname -s)
269 CFG_CPUTYPE=$(uname -m)
270
271 if [ $CFG_OSTYPE = Darwin -a $CFG_CPUTYPE = i386 ]
272 then
273     # Darwin's `uname -s` lies and always returns i386. We have to use sysctl
274     # instead.
275     if sysctl hw.optional.x86_64 | grep -q ': 1'
276     then
277         CFG_CPUTYPE=x86_64
278     fi
279 fi
280
281 # The goal here is to come up with the same triple as LLVM would,
282 # at least for the subset of platforms we're willing to target.
283
284 case $CFG_OSTYPE in
285
286     Linux)
287         CFG_OSTYPE=unknown-linux-gnu
288         ;;
289
290     FreeBSD)
291         CFG_OSTYPE=unknown-freebsd
292         ;;
293
294     DragonFly)
295         CFG_OSTYPE=unknown-dragonfly
296         ;;
297
298     Darwin)
299         CFG_OSTYPE=apple-darwin
300         ;;
301
302     MINGW*)
303         # msys' `uname` does not print gcc configuration, but prints msys
304         # configuration. so we cannot believe `uname -m`:
305         # msys1 is always i686 and msys2 is always x86_64.
306         # instead, msys defines $MSYSTEM which is MINGW32 on i686 and
307         # MINGW64 on x86_64.
308         CFG_CPUTYPE=i686
309         CFG_OSTYPE=pc-mingw32
310         if [ "$MSYSTEM" = MINGW64 ]
311         then
312             CFG_CPUTYPE=x86_64
313             CFG_OSTYPE=w64-mingw32
314         fi
315         ;;
316
317 # Thad's Cygwin identifers below
318
319 #   Vista 32 bit
320     CYGWIN_NT-6.0)
321         CFG_OSTYPE=pc-mingw32
322         CFG_CPUTYPE=i686
323         ;;
324
325 #   Vista 64 bit
326     CYGWIN_NT-6.0-WOW64)
327         CFG_OSTYPE=w64-mingw32
328         CFG_CPUTYPE=x86_64
329         ;;
330
331 #   Win 7 32 bit
332     CYGWIN_NT-6.1)
333         CFG_OSTYPE=pc-mingw32
334         CFG_CPUTYPE=i686
335         ;;
336
337 #   Win 7 64 bit
338     CYGWIN_NT-6.1-WOW64)
339         CFG_OSTYPE=w64-mingw32
340         CFG_CPUTYPE=x86_64
341         ;;
342
343 # We do not detect other OS such as XP/2003 using 64 bit using uname.
344 # 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.
345     *)
346         err "unknown OS type: $CFG_OSTYPE"
347         ;;
348 esac
349
350
351 case $CFG_CPUTYPE in
352
353     i386 | i486 | i686 | i786 | x86)
354         CFG_CPUTYPE=i686
355         ;;
356
357     xscale | arm)
358         CFG_CPUTYPE=arm
359         ;;
360
361     armv7l)
362         CFG_CPUTYPE=arm
363         CFG_OSTYPE="${CFG_OSTYPE}eabihf"
364         ;;
365
366     x86_64 | x86-64 | x64 | amd64)
367         CFG_CPUTYPE=x86_64
368         ;;
369
370     *)
371         err "unknown CPU type: $CFG_CPUTYPE"
372 esac
373
374 # Detect 64 bit linux systems with 32 bit userland and force 32 bit compilation
375 if [ $CFG_OSTYPE = unknown-linux-gnu -a $CFG_CPUTYPE = x86_64 ]
376 then
377     file -L "$SHELL" | grep -q "x86[_-]64"
378     if [ $? != 0 ]; then
379         CFG_CPUTYPE=i686
380     fi
381 fi
382
383
384 DEFAULT_BUILD="${CFG_CPUTYPE}-${CFG_OSTYPE}"
385
386 CFG_SRC_DIR="$(cd $(dirname $0) && pwd)/"
387 CFG_BUILD_DIR="$(pwd)/"
388 CFG_SELF="$0"
389 CFG_CONFIGURE_ARGS="$@"
390
391 OPTIONS=""
392 HELP=0
393 if [ "$1" = "--help" ]
394 then
395     HELP=1
396     shift
397     echo
398     echo "Usage: $CFG_SELF [options]"
399     echo
400     echo "Options:"
401     echo
402 else
403     msg "recreating config.tmp"
404     echo '' >config.tmp
405
406     step_msg "processing $CFG_SELF args"
407 fi
408
409 BOOL_OPTIONS=""
410 VAL_OPTIONS=""
411
412 opt valgrind 0 "run tests with valgrind (memcheck by default)"
413 opt helgrind 0 "run tests with helgrind instead of memcheck"
414 opt docs     1 "build documentation"
415 opt optimize 1 "build optimized rust code"
416 opt optimize-cxx 1 "build optimized C++ code"
417 opt optimize-llvm 1 "build optimized LLVM"
418 opt optimize-tests 1 "build tests with optimizations"
419 opt libcpp 1 "build with llvm with libc++ instead of libstdc++ when using clang"
420 opt llvm-assertions 1 "build LLVM with assertions"
421 opt debug 1 "build with extra debug fun"
422 opt ratchet-bench 0 "ratchet benchmarks"
423 opt fast-make 0 "use .gitmodules as timestamp for submodule deps"
424 opt manage-submodules 1 "let the build manage the git submodules"
425 opt mingw-cross 0 "cross-compile for win32 using mingw"
426 opt clang 0 "prefer clang to gcc for building the runtime"
427 opt ccache 0 "invoke gcc/clang via ccache to reuse object files between builds"
428 opt local-rust 0 "use an installed rustc rather than downloading a snapshot"
429 opt inject-std-version 1 "inject the current compiler version of libstd into programs"
430 opt llvm-static-stdcpp 0 "statically link to libstdc++ for LLVM"
431 opt rpath 0 "build rpaths into rustc itself"
432 opt nightly 0 "build nightly packages"
433 opt verify-install 1 "verify installed binaries work"
434 opt jemalloc 1 "build liballoc with jemalloc"
435 # This is used by the automation to produce single-target nightlies
436 opt dist-host-only 0 "only install bins for the host architecture"
437 valopt prefix "/usr/local" "set installation prefix"
438 valopt local-rust-root "/usr/local" "set prefix for local rust binary"
439 valopt llvm-root "" "set LLVM root"
440 valopt jemalloc-root "" "set directory where libjemalloc_pic.a is located"
441 valopt libuv-root "" "set directory where libuv.a is located"
442 valopt android-cross-path "/opt/ndk_standalone" "Android NDK standalone path"
443 valopt mingw32-cross-path "" "MinGW32 cross compiler path"
444
445 valopt build "${DEFAULT_BUILD}" "GNUs ./configure syntax LLVM build triple"
446 valopt host "${CFG_BUILD}" "GNUs ./configure syntax LLVM host triples"
447 valopt target "${CFG_HOST}" "GNUs ./configure syntax LLVM target triples"
448
449 valopt localstatedir "/var/lib" "local state directory"
450 valopt sysconfdir "/etc" "install system configuration files"
451
452 valopt datadir "${CFG_PREFIX}/share" "install data"
453 valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
454 valopt mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
455
456 # On windows we just store the libraries in the bin directory because
457 # there's no rpath. This is where the build system itself puts libraries;
458 # --libdir is used to configure the installation directory.
459 # FIXME: Thise needs to parameterized over target triples. Do it in platform.mk
460 CFG_LIBDIR_RELATIVE=lib
461 if [ "$CFG_OSTYPE" = "pc-mingw32" ] || [ "$CFG_OSTYPE" = "w64-mingw32" ]
462 then
463     CFG_LIBDIR_RELATIVE=bin
464 fi
465
466 valopt libdir "${CFG_PREFIX}/${CFG_LIBDIR_RELATIVE}" "install libraries"
467
468 if [ $HELP -eq 1 ]
469 then
470     echo
471     exit 0
472 fi
473
474 # Validate Options
475 step_msg "validating $CFG_SELF args"
476 validate_opt
477
478 step_msg "looking for build programs"
479
480 probe_need CFG_PERL        perl
481 probe_need CFG_CURLORWGET  curl wget
482 probe_need CFG_PYTHON      python2.7 python2.6 python2 python
483
484 python_version=$($CFG_PYTHON -V 2>&1)
485 if [ $(echo $python_version | grep -c '^Python 2\.[4567]') -ne 1 ]; then
486     err "Found $python_version, but LLVM requires Python 2.4-2.7"
487 fi
488
489 # If we have no git directory then we are probably a tarball distribution
490 # and shouldn't attempt to load submodules
491 if [ ! -e ${CFG_SRC_DIR}.git ]
492 then
493     probe CFG_GIT          git
494     msg "git: no git directory. disabling submodules"
495     CFG_DISABLE_MANAGE_SUBMODULES=1
496 else
497     probe_need CFG_GIT     git
498 fi
499
500 probe CFG_CLANG            clang++
501 probe CFG_CCACHE           ccache
502 probe CFG_GCC              gcc
503 probe CFG_LD               ld
504 probe CFG_VALGRIND         valgrind
505 probe CFG_PERF             perf
506 probe CFG_ISCC             iscc
507 probe CFG_LLNEXTGEN        LLnextgen
508 probe CFG_JAVAC            javac
509 probe CFG_ANTLR4           antlr4
510 probe CFG_GRUN             grun
511 probe CFG_PANDOC           pandoc
512 probe CFG_PDFLATEX         pdflatex
513 probe CFG_XELATEX          xelatex
514 probe CFG_LUALATEX         lualatex
515 probe CFG_GDB              gdb
516 probe CFG_LLDB             lldb
517
518 if [ ! -z "$CFG_GDB" ]
519 then
520     # Extract the version
521     CFG_GDB_VERSION=$($CFG_GDB --version 2>/dev/null | head -1)
522     putvar CFG_GDB_VERSION
523 fi
524
525 if [ ! -z "$CFG_LLDB" ]
526 then
527     # If CFG_LLDB_PYTHON_DIR is not already set from the outside and valid, try to read it from
528     # LLDB via the -P commandline options.
529     if [ -z "$CFG_LLDB_PYTHON_DIR" ] || [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
530     then
531         CFG_LLDB_PYTHON_DIR=$($CFG_LLDB -P)
532
533         # If CFG_LLDB_PYTHON_DIR is not a valid directory, set it to something more readable
534         if [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
535         then
536             CFG_LLDB_PYTHON_DIR="LLDB_PYTHON_DIRECTORY_NOT_FOUND"
537         fi
538
539         putvar CFG_LLDB_PYTHON_DIR
540     fi
541 fi
542
543 step_msg "looking for target specific programs"
544
545 probe CFG_ADB        adb
546
547 if [ ! -z "$CFG_PANDOC" ]
548 then
549     PV_MAJOR_MINOR=$(pandoc --version | grep '^pandoc ' |
550         # extract the first 2 version fields, ignore everything else
551         sed 's/pandoc \([0-9]*\)\.\([0-9]*\).*/\1 \2/')
552
553     MIN_PV_MAJOR="1"
554     MIN_PV_MINOR="9"
555     # these patterns are shell globs, *not* regexps
556     PV_MAJOR=${PV_MAJOR_MINOR% *}
557     PV_MINOR=${PV_MAJOR_MINOR#* }
558     if [ "$PV_MAJOR" -lt "$MIN_PV_MAJOR" ] || [ "$PV_MINOR" -lt "$MIN_PV_MINOR" ]
559     then
560         step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. Need at least $MIN_PV_MAJOR.$MIN_PV_MINOR. Disabling"
561         BAD_PANDOC=1
562     fi
563 fi
564
565 BIN_SUF=
566 if [ "$CFG_OSTYPE" = "pc-mingw32" ] || [ "$CFG_OSTYPE" = "w64-mingw32" ]
567 then
568     BIN_SUF=.exe
569 fi
570
571 if [ ! -z "$CFG_ENABLE_LOCAL_RUST" ]
572 then
573     system_rustc=$(which rustc)
574     if [ -f ${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF} ]
575     then
576         : # everything already configured
577     elif [ -n "$system_rustc" ]
578     then
579         # we assume that rustc is in a /bin directory
580         CFG_LOCAL_RUST_ROOT=${system_rustc%/bin/rustc}
581     else
582         err "no local rust to use"
583     fi
584
585     LRV=`${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF} --version`
586     step_msg "using rustc at: ${CFG_LOCAL_RUST_ROOT} with version: $LRV"
587     putvar CFG_LOCAL_RUST_ROOT
588 fi
589
590 # Force freebsd to build with clang; gcc doesn't like us there
591 if [ $CFG_OSTYPE = unknown-freebsd ]
592 then
593     step_msg "on FreeBSD, forcing use of clang"
594     CFG_ENABLE_CLANG=1
595     putvar CFG_ENABLE_CLANG
596 fi
597
598 if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
599 then
600     err "either clang or gcc is required"
601 fi
602
603 # OS X 10.9, gcc is actually clang. This can cause some confusion in the build
604 # system, so if we find that gcc is clang, we should just use clang directly.
605 if [ $CFG_OSTYPE = apple-darwin -a -z "$CFG_ENABLE_CLANG" ]
606 then
607     CFG_OSX_GCC_VERSION=$("$CFG_GCC" --version 2>&1 | grep "Apple LLVM version")
608     if [ $? -eq 0 ]
609     then
610         step_msg "on OS X 10.9, forcing use of clang"
611         CFG_ENABLE_CLANG=1
612         putvar CFG_ENABLE_CLANG
613     else
614         if [ $("$CFG_GCC" --version 2>&1 | grep -c ' 4\.[0-6]') -ne 0 ]; then
615             step_msg "older GCC found, using clang instead"
616             CFG_ENABLE_CLANG=1
617             putvar CFG_ENABLE_CLANG
618         else
619             # on OS X, with xcode 5 and newer, certain developers may have
620             # cc, gcc and g++ point to a  mixture of clang and gcc
621             # if so, this will create very strange build errors
622             # this last stanza is to detect some such problems and save the future rust
623             # contributor some time solving that issue.
624             # this detection could be generalized to other OSes aside from OS X
625             # but the issue seems most likely to happen on OS X
626
627             chk_cc () {
628                 $1 --version 2> /dev/null | grep -q $2
629             }
630             # check that gcc, cc and g++ all point to the same compiler.
631             # note that for xcode 5, g++ points to clang, not clang++
632             if !((chk_cc gcc clang  && chk_cc g++ clang) ||
633                 (chk_cc gcc gcc  &&( chk_cc g++ g++ || chk g++ gcc))) then
634                 err "the gcc and g++ in your path point to different compilers.
635     Check which versions are in your path with gcc --version and g++ --version.
636     To resolve this problem, either fix your PATH  or run configure with --enable-clang"
637             fi
638
639         fi
640     fi
641 fi
642
643 if [ ! -z "$CFG_LLVM_ROOT" -a -e "$CFG_LLVM_ROOT/bin/llvm-config" ]
644 then
645     step_msg "using custom LLVM at $CFG_LLVM_ROOT"
646
647     LLVM_CONFIG="$CFG_LLVM_ROOT/bin/llvm-config"
648     LLVM_VERSION=$($LLVM_CONFIG --version)
649
650     case $LLVM_VERSION in
651         (3.[2-6]*)
652             msg "found ok version of LLVM: $LLVM_VERSION"
653             ;;
654         (*)
655             err "bad LLVM version: $LLVM_VERSION, need >=3.0svn"
656             ;;
657     esac
658 fi
659
660 # Even when the user overrides the choice of CC, still try to detect
661 # clang to disable some clang-specific warnings.  We here draw a
662 # distinction between:
663 #
664 #  CFG_ENABLE_CLANG : passed --enable-clang, or host "requires" clang,
665 #  CFG_USING_CLANG : compiler (clang / gcc / $CC) looks like clang.
666 #
667 # This distinction is important because there are some safeguards we
668 # would prefer to skip when merely CFG_USING_CLANG is set; but when
669 # CFG_ENABLE_CLANG is set, that indicates that we are opting into
670 # running such safeguards.
671
672 if [ ! -z "$CC" ]
673 then
674     msg "skipping compiler inference steps; using provided CC=$CC"
675     CFG_CC="$CC"
676
677     CFG_OSX_CC_VERSION=$("$CFG_CC" --version 2>&1 | grep "clang")
678     if [ $? -eq 0 ]
679     then
680         step_msg "note, user-provided CC looks like clang; CC=$CC."
681         CFG_USING_CLANG=1
682         putvar CFG_USING_CLANG
683     fi
684 else
685     if [ ! -z "$CFG_ENABLE_CLANG" ]
686     then
687         if [ -z "$CFG_CLANG" ]
688         then
689             err "clang requested but not found"
690         fi
691         CFG_CC="$CFG_CLANG"
692         CFG_USING_CLANG=1
693         putvar CFG_USING_CLANG
694     else
695         CFG_CC="gcc"
696     fi
697 fi
698
699 if [ ! -z "$CFG_ENABLE_CLANG" ]
700 then
701     if [ -z "$CC" ] || [[ $CC == *clang ]]
702     then
703         CFG_CLANG_VERSION=$($CFG_CC \
704             --version \
705             | grep version \
706             | sed 's/.*\(version .*\)/\1/; s/.*based on \(LLVM .*\))/\1/' \
707             | cut -d ' ' -f 2)
708
709         case $CFG_CLANG_VERSION in
710             (3.0svn | 3.0 | 3.1* | 3.2* | 3.3* | 3.4* | 3.5* | 3.6*)
711             step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
712             if [ -z "$CC" ]
713             then
714                 CFG_CC="clang"
715                 CFG_CXX="clang++"
716             fi
717             ;;
718             (*)
719             err "bad CLANG version: $CFG_CLANG_VERSION, need >=3.0svn"
720             ;;
721         esac
722     else
723         msg "skipping CFG_ENABLE_CLANG version check; provided CC=$CC"
724     fi
725 fi
726
727 if [ ! -z "$CFG_ENABLE_CCACHE" ]
728 then
729     if [ -z "$CC" ]
730     then
731         if [ -z "$CFG_CCACHE" ]
732         then
733             err "ccache requested but not found"
734         fi
735
736         CFG_CC="ccache $CFG_CC"
737     fi
738 fi
739
740 if [ -z "$CC" -a -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
741 then
742     err "either clang or gcc is required"
743 fi
744
745 # All safeguards based on $CFG_ENABLE_CLANG should occur before this
746 # point in the script; after this point, script logic should inspect
747 # $CFG_USING_CLANG rather than $CFG_ENABLE_CLANG.
748
749 # Set CFG_{CC,CXX,CPP,CFLAGS,CXXFLAGS}
750 envopt CC
751 envopt CXX
752 envopt CPP
753 envopt CFLAGS
754 envopt CXXFLAGS
755
756 # a little post-processing of various config values
757 CFG_PREFIX=${CFG_PREFIX%/}
758 CFG_MANDIR=${CFG_MANDIR%/}
759 CFG_HOST="$(echo $CFG_HOST | tr ',' ' ')"
760 CFG_TARGET="$(echo $CFG_TARGET | tr ',' ' ')"
761 CFG_SUPPORTED_TARGET="$(grep ^CC_*=* ${CFG_SRC_DIR}mk/platform.mk | sed -e 's/^CC_//' -e 's/\([^=]*\).*/\1/' | xargs)"
762
763 # copy host-triples to target-triples so that hosts are a subset of targets
764 V_TEMP=""
765 for i in $CFG_HOST $CFG_TARGET;
766 do
767    echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
768 done
769 CFG_TARGET=$V_TEMP
770
771 # check target-specific tool-chains
772 for i in $CFG_TARGET
773 do
774     L_CHECK=false
775     for j in $CFG_SUPPORTED_TARGET
776     do
777         if [ $i = $j ]
778         then
779             L_CHECK=true
780         fi
781     done
782
783     if [ $L_CHECK = false ]
784     then
785         err "unsupported target triples \"$i\" found"
786     fi
787
788     case $i in
789         arm-linux-androideabi)
790
791             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-gcc ]
792             then
793                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-gcc not found"
794             fi
795             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-g++ ]
796             then
797                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-g++ not found"
798             fi
799             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-ar ]
800             then
801                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-ar not found"
802             fi
803             ;;
804
805         arm-apple-darwin)
806             if [ $CFG_OSTYPE != apple-darwin ]
807             then
808                 err "The iOS target is only supported on Mac OS X"
809             fi
810             ;;
811
812         *)
813             ;;
814     esac
815 done
816
817 if [ ! -z "$CFG_PERF" ]
818 then
819     HAVE_PERF_LOGFD=`$CFG_PERF stat --log-fd 2>&1 | grep 'unknown option'`
820     if [ -z "$HAVE_PERF_LOGFD" ];
821     then
822         CFG_PERF_WITH_LOGFD=1
823         putvar CFG_PERF_WITH_LOGFD
824     fi
825 fi
826
827 step_msg "making directories"
828
829 for i in \
830     doc doc/std doc/extra \
831     dl tmp dist
832 do
833     make_dir $i
834 done
835
836 for t in $CFG_HOST
837 do
838     make_dir $t/llvm
839 done
840
841 for t in $CFG_HOST
842 do
843     make_dir $t/rustllvm
844 done
845
846 for t in $CFG_TARGET
847 do
848   make_dir $t/rt
849   for s in 0 1 2 3
850   do
851     make_dir $t/rt/stage$s
852     make_dir $t/rt/jemalloc
853     make_dir $t/rt/libuv
854     make_dir $t/rt/libuv/src/ares
855     make_dir $t/rt/libuv/src/eio
856     make_dir $t/rt/libuv/src/ev
857     for i in                                          \
858       isaac sync test \
859       arch/i386 arch/x86_64 arch/arm arch/mips  \
860       sundown/src sundown/html
861     do
862       make_dir $t/rt/stage$s/$i
863     done
864   done
865 done
866
867 for h in $CFG_HOST
868 do
869     for t in $CFG_TARGET
870     do
871         for i in 0 1 2 3
872         do
873             # host bin dir
874             make_dir $h/stage$i/bin
875
876             # host lib dir
877             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE
878
879             # host test dir
880             make_dir $h/stage$i/test
881
882             # target bin dir
883             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/bin
884
885             # target lib dir
886             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/lib
887         done
888     done
889
890     make_dir $h/test/run-pass
891     make_dir $h/test/run-pass-fulldeps
892     make_dir $h/test/run-fail
893     make_dir $h/test/compile-fail
894     make_dir $h/test/compile-fail-fulldeps
895     make_dir $h/test/bench
896     make_dir $h/test/perf
897     make_dir $h/test/pretty
898     make_dir $h/test/debuginfo-gdb
899     make_dir $h/test/debuginfo-lldb
900     make_dir $h/test/codegen
901     make_dir $h/test/doc-tutorial
902     make_dir $h/test/doc-guide
903     make_dir $h/test/doc-guide-ffi
904     make_dir $h/test/doc-guide-runtime
905     make_dir $h/test/doc-guide-macros
906     make_dir $h/test/doc-guide-lifetimes
907     make_dir $h/test/doc-guide-pointers
908     make_dir $h/test/doc-guide-container
909     make_dir $h/test/doc-guide-tasks
910     make_dir $h/test/doc-rust
911 done
912
913 # Configure submodules
914 step_msg "configuring submodules"
915
916 # Have to be in the top of src directory for this
917 if [ -z $CFG_DISABLE_MANAGE_SUBMODULES ]
918 then
919     cd ${CFG_SRC_DIR}
920
921     msg "git: submodule sync"
922     "${CFG_GIT}" submodule sync
923
924     msg "git: submodule init"
925     "${CFG_GIT}" submodule init
926
927     # Disable submodules that we're not using
928     if [ ! -z "${CFG_LLVM_ROOT}" ]; then
929         msg "git: submodule deinit src/llvm"
930         "${CFG_GIT}" submodule deinit src/llvm
931     fi
932     if [ ! -z "${CFG_JEMALLOC_ROOT}" ]; then
933         msg "git: submodule deinit src/jemalloc"
934         "${CFG_GIT}" submodule deinit src/jemalloc
935     fi
936     if [ ! -z "${CFG_LIBUV_ROOT}" ]; then
937         msg "git: submodule deinit src/libuv"
938         "${CFG_GIT}" submodule deinit src/libuv
939     fi
940
941     msg "git: submodule update"
942     "${CFG_GIT}" submodule update
943     need_ok "git failed"
944
945     msg "git: submodule foreach sync"
946     "${CFG_GIT}" submodule foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi'
947     need_ok "git failed"
948
949     msg "git: submodule foreach update"
950     "${CFG_GIT}" submodule update --recursive
951     need_ok "git failed"
952
953     # NB: this is just for the sake of getting the submodule SHA1 values
954     # and status written into the build log.
955     msg "git: submodule status"
956     "${CFG_GIT}" submodule status --recursive
957
958     msg "git: submodule clobber"
959     "${CFG_GIT}" submodule foreach --recursive git clean -dxf
960     need_ok "git failed"
961     "${CFG_GIT}" submodule foreach --recursive git checkout .
962     need_ok "git failed"
963
964     cd ${CFG_BUILD_DIR}
965 fi
966
967 # Configure llvm, only if necessary
968 step_msg "looking at LLVM"
969 CFG_LLVM_SRC_DIR=${CFG_SRC_DIR}src/llvm/
970 for t in $CFG_HOST
971 do
972     do_reconfigure=1
973
974     if [ -z $CFG_LLVM_ROOT ]
975     then
976         LLVM_BUILD_DIR=${CFG_BUILD_DIR}$t/llvm
977         if [ ! -z "$CFG_DISABLE_OPTIMIZE_LLVM" ]
978         then
979             LLVM_DBG_OPTS="--enable-debug-symbols --disable-optimized"
980             # Just use LLVM straight from its build directory to
981             # avoid 'make install' time
982             LLVM_INST_DIR=$LLVM_BUILD_DIR/Debug
983         else
984             LLVM_DBG_OPTS="--enable-optimized"
985             LLVM_INST_DIR=$LLVM_BUILD_DIR/Release
986         fi
987         if [ ! -z "$CFG_DISABLE_LLVM_ASSERTIONS" ]
988         then
989             LLVM_ASSERTION_OPTS="--disable-assertions"
990         else
991             LLVM_ASSERTION_OPTS="--enable-assertions"
992             LLVM_INST_DIR=${LLVM_INST_DIR}+Asserts
993         fi
994     else
995         msg "not reconfiguring LLVM, external LLVM root"
996         # The user is using their own LLVM
997         LLVM_BUILD_DIR=
998         LLVM_INST_DIR=$CFG_LLVM_ROOT
999         do_reconfigure=0
1000     fi
1001
1002
1003     if [ ${do_reconfigure} -ne 0 ]
1004     then
1005     # because git is hilarious, it might have put the module index
1006     # in a couple places.
1007         index1="${CFG_SRC_DIR}.git/modules/src/llvm/index"
1008         index2="${CFG_SRC_DIR}src/llvm/.git/index"
1009         for index in ${index1} ${index2}
1010         do
1011             config_status="${LLVM_BUILD_DIR}/config.status"
1012             if test -e ${index} -a \
1013                     -e ${config_status} -a \
1014                     ${config_status} -nt ${index}
1015             then
1016                 msg "not reconfiguring LLVM, config.status is fresh"
1017                 do_reconfigure=0
1018             fi
1019         done
1020     fi
1021
1022     if [ ${do_reconfigure} -ne 0 ]
1023     then
1024         msg "configuring LLVM for $t"
1025
1026         LLVM_TARGETS="--enable-targets=x86,x86_64,arm,mips"
1027         LLVM_BUILD="--build=$t"
1028         LLVM_HOST="--host=$t"
1029         LLVM_TARGET="--target=$t"
1030
1031         # Disable unused LLVM features
1032         LLVM_OPTS="$LLVM_DBG_OPTS $LLVM_ASSERTION_OPTS --disable-docs --enable-bindings=none"
1033         # Disable term-info, linkage of which comes in multiple forms,
1034         # making our snapshots incompatible (#9334)
1035         LLVM_OPTS="$LLVM_OPTS --disable-terminfo"
1036         # Try to have LLVM pull in as few dependencies as possible (#9397)
1037         LLVM_OPTS="$LLVM_OPTS --disable-zlib --disable-libffi"
1038
1039         # Use win32 native thread/lock apis instead of pthread wrapper.
1040         # (llvm's configure tries to find pthread first, so we have to disable it explicitly.)
1041         # Also note that pthreads works badly on mingw-w64 systems: #8996
1042         case "$CFG_BUILD" in
1043             (*-mingw32)
1044             LLVM_OPTS="$LLVM_OPTS --disable-pthreads"
1045             ;;
1046         esac
1047
1048         case "$CFG_CC" in
1049             ("ccache clang")
1050             LLVM_CXX_32="ccache clang++ -Qunused-arguments"
1051             LLVM_CC_32="ccache clang -Qunused-arguments"
1052
1053             LLVM_CXX_64="ccache clang++ -Qunused-arguments"
1054             LLVM_CC_64="ccache clang -Qunused-arguments"
1055             ;;
1056             ("clang")
1057             LLVM_CXX_32="clang++ -Qunused-arguments"
1058             LLVM_CC_32="clang -Qunused-arguments"
1059
1060             LLVM_CXX_64="clang++ -Qunused-arguments"
1061             LLVM_CC_64="clang -Qunused-arguments"
1062             ;;
1063             ("ccache gcc")
1064             LLVM_CXX_32="ccache g++"
1065             LLVM_CC_32="ccache gcc"
1066
1067             LLVM_CXX_64="ccache g++"
1068             LLVM_CC_64="ccache gcc"
1069             ;;
1070             ("gcc")
1071             LLVM_CXX_32="g++"
1072             LLVM_CC_32="gcc"
1073
1074             LLVM_CXX_64="g++"
1075             LLVM_CC_64="gcc"
1076             ;;
1077
1078             (*)
1079             msg "inferring LLVM_CXX/CC from CXX/CC = $CXX/$CC"
1080             LLVM_CXX_32="$CXX"
1081             LLVM_CC_32="$CC"
1082
1083             LLVM_CXX_64="$CXX"
1084             LLVM_CC_64="$CC"
1085             ;;
1086         esac
1087
1088         case "$CFG_CPUTYPE" in
1089             (x86*)
1090                 LLVM_CXX_32="$LLVM_CXX_32 -m32"
1091                 LLVM_CC_32="$LLVM_CC_32 -m32"
1092
1093                 LLVM_CFLAGS_32="-m32"
1094                 LLVM_CXXFLAGS_32="-m32"
1095                 LLVM_LDFLAGS_32="-m32"
1096
1097                 LLVM_CFLAGS_64=""
1098                 LLVM_CXXFLAGS_64=""
1099                 LLVM_LDFLAGS_64=""
1100
1101                 LLVM_CXX_32="$LLVM_CXX_32 -m32"
1102                 LLVM_CC_32="$LLVM_CC_32 -m32"
1103                 ;;
1104
1105             (*)
1106                 LLVM_CFLAGS_32=""
1107                 LLVM_CXXFLAGS_32=""
1108                 LLVM_LDFLAGS_32=""
1109
1110                 LLVM_CFLAGS_64=""
1111                 LLVM_CXXFLAGS_64=""
1112                 LLVM_LDFLAGS_64=""
1113                 ;;
1114         esac
1115
1116         if echo $t | grep -q x86_64
1117         then
1118             LLVM_CXX=$LLVM_CXX_64
1119             LLVM_CC=$LLVM_CC_64
1120             LLVM_CFLAGS=$LLVM_CFLAGS_64
1121             LLVM_CXXFLAGS=$LLVM_CXXFLAGS_64
1122             LLVM_LDFLAGS=$LLVM_LDFLAGS_64
1123         else
1124             LLVM_CXX=$LLVM_CXX_32
1125             LLVM_CC=$LLVM_CC_32
1126             LLVM_CFLAGS=$LLVM_CFLAGS_32
1127             LLVM_CXXFLAGS=$LLVM_CXXFLAGS_32
1128             LLVM_LDFLAGS=$LLVM_LDFLAGS_32
1129         fi
1130
1131         CXX=$LLVM_CXX
1132         CC=$LLVM_CC
1133         CFLAGS=$LLVM_CFLAGS
1134         CXXFLAGS=$LLVM_CXXFLAGS
1135         LDFLAGS=$LLVM_LDFLAGS
1136
1137         if [ -z "$CFG_DISABLE_LIBCPP" ] && [ -n "$CFG_USING_CLANG" ]; then
1138             LLVM_OPTS="$LLVM_OPTS --enable-libcpp"
1139         fi
1140
1141         LLVM_FLAGS="$LLVM_TARGETS $LLVM_OPTS $LLVM_BUILD \
1142                         $LLVM_HOST $LLVM_TARGET --with-python=$CFG_PYTHON"
1143
1144         msg "configuring LLVM with:"
1145         msg "$LLVM_FLAGS"
1146
1147         export CXX
1148         export CC
1149         export CFLAGS
1150         export CXXFLAGS
1151         export LDFLAGS
1152
1153         cd $LLVM_BUILD_DIR
1154         case $CFG_SRC_DIR in
1155             /* | [a-z]:* | [A-Z]:*)
1156                 ${CFG_LLVM_SRC_DIR}configure $LLVM_FLAGS
1157                 ;;
1158             *)
1159                 ${CFG_BUILD_DIR}${CFG_LLVM_SRC_DIR}configure \
1160                     $LLVM_FLAGS
1161                 ;;
1162         esac
1163         need_ok "LLVM configure failed"
1164
1165         cd $CFG_BUILD_DIR
1166     fi
1167
1168     # Construct variables for LLVM build and install directories for
1169     # each target. These will be named
1170     # CFG_LLVM_BUILD_DIR_${target_triple} but all the hyphens in
1171     # target_triple will be converted to underscore, because bash
1172     # variables can't contain hyphens. The makefile will then have to
1173     # convert back.
1174     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1175     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1176     eval ${CFG_LLVM_BUILD_DIR}="'$LLVM_BUILD_DIR'"
1177     eval ${CFG_LLVM_INST_DIR}="'$LLVM_INST_DIR'"
1178 done
1179
1180
1181 step_msg "writing configuration"
1182
1183 putvar CFG_SRC_DIR
1184 putvar CFG_BUILD_DIR
1185 putvar CFG_OSTYPE
1186 putvar CFG_CPUTYPE
1187 putvar CFG_CONFIGURE_ARGS
1188 putvar CFG_PREFIX
1189 putvar CFG_BUILD
1190 putvar CFG_HOST
1191 putvar CFG_TARGET
1192 putvar CFG_LIBDIR
1193 putvar CFG_LIBDIR_RELATIVE
1194 putvar CFG_DISABLE_MANAGE_SUBMODULES
1195 putvar CFG_ANDROID_CROSS_PATH
1196 putvar CFG_MINGW32_CROSS_PATH
1197 putvar CFG_MANDIR
1198 putvar CFG_DISABLE_INJECT_STD_VERSION
1199 putvar CFG_JEMALLOC_ROOT
1200 putvar CFG_LIBUV_ROOT
1201 putvar CFG_DISABLE_JEMALLOC
1202
1203 # Avoid spurious warnings from clang by feeding it original source on
1204 # ccache-miss rather than preprocessed input.
1205 if [ ! -z "$CFG_ENABLE_CCACHE" ] && [ ! -z "$CFG_USING_CLANG" ]
1206 then
1207     CFG_CCACHE_CPP2=1
1208     putvar CFG_CCACHE_CPP2
1209 fi
1210
1211 if [ ! -z "$CFG_ENABLE_CCACHE" ]
1212 then
1213     CFG_CCACHE_BASEDIR=${CFG_SRC_DIR}
1214     putvar CFG_CCACHE_BASEDIR
1215 fi
1216
1217
1218 if [ ! -z $BAD_PANDOC ]
1219 then
1220     CFG_PANDOC=
1221     putvar CFG_PANDOC
1222 fi
1223
1224 # Valgrind is only reliable on Linux. On Windows it doesn't work at all, and
1225 # on the Mac the dynamic linker causes Valgrind to emit a huge stream of
1226 # errors.
1227 if [ $CFG_OSTYPE != unknown-linux-gnu ] && [ $CFG_OSTYPE != apple-darwin ]
1228 then
1229     CFG_BAD_VALGRIND=1
1230     putvar CFG_BAD_VALGRIND
1231 fi
1232
1233 putvar CFG_LLVM_ROOT
1234 putvar CFG_LLVM_SRC_DIR
1235
1236 for t in $CFG_HOST
1237 do
1238     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1239     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1240     putvar $CFG_LLVM_BUILD_DIR
1241     putvar $CFG_LLVM_INST_DIR
1242 done
1243
1244 # Munge any paths that appear in config.mk back to posix-y
1245 perl -i.bak -p -e 's@ ([a-zA-Z]):[/\\]@ /\1/@go;' \
1246                -e 's@\\@/@go;' config.tmp
1247 rm -f config.tmp.bak
1248
1249 msg
1250 copy_if_changed ${CFG_SRC_DIR}Makefile.in ./Makefile
1251 move_if_changed config.tmp config.mk
1252 rm -f config.tmp
1253 touch config.stamp
1254
1255 step_msg "complete"
1256 msg "run \`make help\`"
1257 msg