]> git.lizzy.rs Git - rust.git/blob - configure
Fix an unnecessary use of `cast::transmute`
[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 msg "looking for configure programs"
227 need_cmd cmp
228 need_cmd mkdir
229 need_cmd printf
230 need_cmd cut
231 need_cmd head
232 need_cmd grep
233 need_cmd xargs
234 need_cmd cp
235 need_cmd find
236 need_cmd uname
237 need_cmd date
238 need_cmd tr
239 need_cmd sed
240 need_cmd file
241
242 msg "inspecting environment"
243
244 CFG_OSTYPE=$(uname -s)
245 CFG_CPUTYPE=$(uname -m)
246
247 if [ $CFG_OSTYPE = Darwin -a $CFG_CPUTYPE = i386 ]
248 then
249     # Darwin's `uname -s` lies and always returns i386. We have to use sysctl
250     # instead.
251     if sysctl hw.optional.x86_64 | grep -q ': 1'
252     then
253         CFG_CPUTYPE=x86_64
254     fi
255 fi
256
257 # The goal here is to come up with the same triple as LLVM would,
258 # at least for the subset of platforms we're willing to target.
259
260 case $CFG_OSTYPE in
261
262     Linux)
263         CFG_OSTYPE=unknown-linux-gnu
264         ;;
265
266     FreeBSD)
267         CFG_OSTYPE=unknown-freebsd
268         ;;
269
270     Darwin)
271         CFG_OSTYPE=apple-darwin
272         ;;
273
274     MINGW32*)
275         CFG_OSTYPE=pc-mingw32
276         ;;
277
278     MINGW64*)
279         # msys2, MSYSTEM=MINGW64
280         CFG_OSTYPE=w64-mingw32
281         ;;
282
283 # Thad's Cygwin identifers below
284
285 #   Vista 32 bit
286     CYGWIN_NT-6.0)
287         CFG_OSTYPE=pc-mingw32
288         CFG_CPUTYPE=i686
289         ;;
290
291 #   Vista 64 bit
292     CYGWIN_NT-6.0-WOW64)
293         CFG_OSTYPE=w64-mingw32
294         CFG_CPUTYPE=x86_64
295         ;;
296
297 #   Win 7 32 bit
298     CYGWIN_NT-6.1)
299         CFG_OSTYPE=pc-mingw32
300         CFG_CPUTYPE=i686
301         ;;
302
303 #   Win 7 64 bit
304     CYGWIN_NT-6.1-WOW64)
305         CFG_OSTYPE=w64-mingw32
306         CFG_CPUTYPE=x86_64
307         ;;
308
309 # We do not detect other OS such as XP/2003 using 64 bit using uname.
310 # 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.
311     *)
312         err "unknown OS type: $CFG_OSTYPE"
313         ;;
314 esac
315
316
317 case $CFG_CPUTYPE in
318
319     i386 | i486 | i686 | i786 | x86)
320         CFG_CPUTYPE=i686
321         ;;
322
323     xscale | arm)
324         CFG_CPUTYPE=arm
325         ;;
326
327     x86_64 | x86-64 | x64 | amd64)
328         CFG_CPUTYPE=x86_64
329         ;;
330
331     *)
332         err "unknown CPU type: $CFG_CPUTYPE"
333 esac
334
335 # Detect 64 bit linux systems with 32 bit userland and force 32 bit compilation
336 if [ $CFG_OSTYPE = unknown-linux-gnu -a $CFG_CPUTYPE = x86_64 ]
337 then
338     file -L "$SHELL" | grep -q "x86[_-]64"
339     if [ $? != 0 ]; then
340         CFG_CPUTYPE=i686
341     fi
342 fi
343
344
345 DEFAULT_BUILD="${CFG_CPUTYPE}-${CFG_OSTYPE}"
346
347 CFG_SRC_DIR="$(cd $(dirname $0) && pwd)/"
348 CFG_BUILD_DIR="$(pwd)/"
349 CFG_SELF="$0"
350 CFG_CONFIGURE_ARGS="$@"
351
352 OPTIONS=""
353 HELP=0
354 if [ "$1" = "--help" ]
355 then
356     HELP=1
357     shift
358     echo
359     echo "Usage: $CFG_SELF [options]"
360     echo
361     echo "Options:"
362     echo
363 else
364     msg "recreating config.tmp"
365     echo '' >config.tmp
366
367     step_msg "processing $CFG_SELF args"
368 fi
369
370 BOOL_OPTIONS=""
371 VAL_OPTIONS=""
372
373 opt valgrind 0 "run tests with valgrind (memcheck by default)"
374 opt helgrind 0 "run tests with helgrind instead of memcheck"
375 opt docs     1 "build documentation"
376 opt optimize 1 "build optimized rust code"
377 opt optimize-cxx 1 "build optimized C++ code"
378 opt optimize-llvm 1 "build optimized LLVM"
379 opt optimize-tests 1 "build tests with optimizations"
380 opt llvm-assertions 1 "build LLVM with assertions"
381 opt debug 1 "build with extra debug fun"
382 opt ratchet-bench 0 "ratchet benchmarks"
383 opt fast-make 0 "use .gitmodules as timestamp for submodule deps"
384 opt manage-submodules 1 "let the build manage the git submodules"
385 opt mingw-cross 0 "cross-compile for win32 using mingw"
386 opt clang 0 "prefer clang to gcc for building the runtime"
387 opt ccache 0 "invoke gcc/clang via ccache to reuse object files between builds"
388 opt local-rust 0 "use an installed rustc rather than downloading a snapshot"
389 opt pax-flags 0 "apply PaX flags to rustc binaries (required for GRSecurity/PaX-patched kernels)"
390 opt inject-std-version 1 "inject the current compiler version of libstd into programs"
391 opt rpath 1 "build rpaths into rustc itself"
392 opt nightly 0 "build nightly packages"
393 opt verify-install 1 "verify installed binaries work"
394 valopt prefix "/usr/local" "set installation prefix"
395 valopt local-rust-root "/usr/local" "set prefix for local rust binary"
396 valopt llvm-root "" "set LLVM root"
397 valopt android-cross-path "/opt/ndk_standalone" "Android NDK standalone path"
398 valopt mingw32-cross-path "" "MinGW32 cross compiler path"
399
400 valopt build "${DEFAULT_BUILD}" "GNUs ./configure syntax LLVM build triple"
401 valopt host "${CFG_BUILD}" "GNUs ./configure syntax LLVM host triples"
402 valopt target "${CFG_HOST}" "GNUs ./configure syntax LLVM target triples"
403
404 valopt localstatedir "/var/lib" "local state directory"
405 valopt sysconfdir "/etc" "install system configuration files"
406
407 valopt datadir "${CFG_PREFIX}/share" "install data"
408 valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
409 valopt mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
410
411 # On windows we just store the libraries in the bin directory because
412 # there's no rpath. This is where the build system itself puts libraries;
413 # --libdir is used to configure the installation directory.
414 # FIXME: Thise needs to parameterized over target triples. Do it in platform.mk
415 CFG_LIBDIR_RELATIVE=lib
416 if [ "$CFG_OSTYPE" = "pc-mingw32" ] || [ "$CFG_OSTYPE" = "w64-mingw32" ]
417 then
418     CFG_LIBDIR_RELATIVE=bin
419 fi
420
421 valopt libdir "${CFG_PREFIX}/${CFG_LIBDIR_RELATIVE}" "install libraries"
422
423 if [ $HELP -eq 1 ]
424 then
425     echo
426     exit 0
427 fi
428
429 # Validate Options
430 step_msg "validating $CFG_SELF args"
431 validate_opt
432
433 step_msg "looking for build programs"
434
435 probe_need CFG_PERL        perl
436 probe_need CFG_CURLORWGET  curl wget
437 probe_need CFG_PYTHON      python2.7 python2.6 python2 python
438
439 python_version=$($CFG_PYTHON -V 2>&1)
440 if [ $(echo $python_version | grep -c '^Python 2\.[4567]') -ne 1 ]; then
441     err "Found $python_version, but LLVM requires Python 2.4-2.7"
442 fi
443
444 # If we have no git directory then we are probably a tarball distribution
445 # and shouldn't attempt to load submodules
446 if [ ! -e ${CFG_SRC_DIR}.git ]
447 then
448     probe CFG_GIT          git
449     msg "git: no git directory. disabling submodules"
450     CFG_DISABLE_MANAGE_SUBMODULES=1
451 else
452     probe_need CFG_GIT     git
453 fi
454
455 probe CFG_CLANG            clang++
456 probe CFG_CCACHE           ccache
457 probe CFG_GCC              gcc
458 probe CFG_LD               ld
459 probe CFG_VALGRIND         valgrind
460 probe CFG_PERF             perf
461 probe CFG_ISCC             iscc
462 probe CFG_LLNEXTGEN        LLnextgen
463 probe CFG_PANDOC           pandoc
464 probe CFG_PDFLATEX         pdflatex
465 probe CFG_XELATEX          xelatex
466 probe CFG_LUALATEX         lualatex
467 probe CFG_GDB              gdb
468 if [ "$CFG_OSTYPE" = "unknown-linux-gnu" ]
469 then
470     probe CFG_PAXCTL           paxctl /sbin/paxctl
471     probe CFG_ZCAT             zcat
472 fi
473
474 step_msg "looking for target specific programs"
475
476 probe CFG_ADB        adb
477
478 if [ ! -z "$CFG_PANDOC" ]
479 then
480     PV_MAJOR_MINOR=$(pandoc --version | grep '^pandoc ' |
481         # extract the first 2 version fields, ignore everything else
482         sed 's/pandoc \([0-9]*\)\.\([0-9]*\).*/\1 \2/')
483
484     MIN_PV_MAJOR="1"
485     MIN_PV_MINOR="9"
486     # these patterns are shell globs, *not* regexps
487     PV_MAJOR=${PV_MAJOR_MINOR% *}
488     PV_MINOR=${PV_MAJOR_MINOR#* }
489     if [ "$PV_MAJOR" -lt "$MIN_PV_MAJOR" ] || [ "$PV_MINOR" -lt "$MIN_PV_MINOR" ]
490     then
491         step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. Need at least $MIN_PV_MAJOR.$MIN_PV_MINOR. Disabling"
492         BAD_PANDOC=1
493     fi
494 fi
495
496 if [ "$CFG_OSTYPE" = "unknown-linux-gnu" ]
497 then
498     if [ ! -z "$CFG_ENABLE_PAX_FLAGS" -a -z "$CFG_PAXCTL" ]
499     then
500         err "enabled PaX markings but no paxctl binary found"
501     fi
502
503     if [ -z "$CFG_DISABLE_PAX_FLAGS" ]
504     then
505         # GRSecurity/PaX detection. This can be very flaky.
506         GRSEC_DETECTED=
507
508         # /dev/grsec only exists if CONFIG_GRKERNSEC_NO_RBAC is not set.
509         # /proc/sys/kernel/grsecurity is not available if Ã‡ONFIG_GRKERNSEC_SYSCTL is not set.
510         if [ -e /dev/grsec -o -d /proc/sys/kernel/grsecurity ]
511         then
512             GRSEC_DETECTED=1
513         # /proc/config.gz is normally only available to root, and only if CONFIG_IKCONFIG_PROC has been set.
514         elif [ -r /proc/config.gz -a ! -z "$CFG_ZCAT" ]
515         then
516             if "$CFG_ZCAT" /proc/config.gz | grep --quiet "CONFIG_GRKERNSEC=y"
517             then
518                 GRSEC_DETECTED=1
519             fi
520         # Flaky.
521         elif grep --quiet grsec /proc/version
522         then
523             GRSEC_DETECTED=1
524         fi
525
526         if [ ! -z "$GRSEC_DETECTED" ]
527         then
528             step_msg "GRSecurity: yes"
529             if [ ! -z "$CFG_PAXCTL" ]
530             then
531                 CFG_ENABLE_PAX_FLAGS=1
532             else
533                 warn "GRSecurity kernel detected but no paxctl binary found: not setting CFG_ENABLE_PAX_FLAGS"
534             fi
535         else
536             step_msg "GRSecurity: no"
537         fi
538     fi
539 fi
540
541 BIN_SUF=
542 if [ "$CFG_OSTYPE" = "pc-mingw32" ] || [ "$CFG_OSTYPE" = "w64-mingw32" ]
543 then
544     BIN_SUF=.exe
545 fi
546
547 if [ ! -z "$CFG_ENABLE_LOCAL_RUST" ]
548 then
549     if [ ! -f ${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF} ]
550     then
551         err "no local rust to use"
552     else
553         LRV=`${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF} --version`
554         step_msg "using rustc at: ${CFG_LOCAL_RUST_ROOT} with version: $LRV"
555     fi
556 fi
557
558 # Force freebsd to build with clang; gcc doesn't like us there
559 if [ $CFG_OSTYPE = unknown-freebsd ]
560 then
561     step_msg "on FreeBSD, forcing use of clang"
562     CFG_ENABLE_CLANG=1
563     putvar CFG_ENABLE_CLANG
564 fi
565
566 if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
567 then
568     err "either clang or gcc is required"
569 fi
570
571 # OS X 10.9, gcc is actually clang. This can cause some confusion in the build
572 # system, so if we find that gcc is clang, we should just use clang directly.
573 if [ $CFG_OSTYPE = apple-darwin -a -z "$CFG_ENABLE_CLANG" ]
574 then
575     CFG_OSX_GCC_VERSION=$("$CFG_GCC" --version 2>&1 | grep "Apple LLVM version")
576     if [ $? -eq 0 ]
577     then
578         step_msg "on OS X 10.9, forcing use of clang"
579         CFG_ENABLE_CLANG=1
580         putvar CFG_ENABLE_CLANG
581     else
582         # on OS X, with xcode 5 and newer, certain developers may have
583         # cc, gcc and g++ point to a  mixture of clang and gcc
584         # if so, this will create very strange build errors
585         # this last stanza is to detect some such problems and save the future rust
586         # contributor some time solving that issue.
587         # this detection could be generalized to other OSes aside from OS X
588         # but the issue seems most likely to happen on OS X
589
590         chk_cc () {
591             $1 --version 2> /dev/null | grep -q $2
592         }
593         # check that gcc, cc and g++ all point to the same compiler.
594         # note that for xcode 5, g++ points to clang, not clang++
595         if !((chk_cc gcc clang  && chk_cc g++ clang) ||
596             (chk_cc gcc gcc  &&( chk_cc g++ g++ || chk g++ gcc))) then
597             err "the gcc and g++ in your path point to different compilers.
598 Check which versions are in your path with  cc --version and g++ --version.
599 To resolve this problem, either fix your PATH  or run configure with --enable-clang"
600         fi
601
602     fi
603 fi
604
605 if [ ! -z "$CFG_LLVM_ROOT" -a -e "$CFG_LLVM_ROOT/bin/llvm-config" ]
606 then
607     step_msg "using custom LLVM at $CFG_LLVM_ROOT"
608
609     LLVM_CONFIG="$CFG_LLVM_ROOT/bin/llvm-config"
610     LLVM_VERSION=$($LLVM_CONFIG --version)
611
612     case $LLVM_VERSION in
613         (3.[2-5]*)
614             msg "found ok version of LLVM: $LLVM_VERSION"
615             ;;
616         (*)
617             err "bad LLVM version: $LLVM_VERSION, need >=3.0svn"
618             ;;
619     esac
620 fi
621
622 if [ ! -z "$CFG_ENABLE_CLANG" ]
623 then
624     if [ -z "$CFG_CLANG" ]
625     then
626         err "clang requested but not found"
627     fi
628     CFG_CLANG_VERSION=$("$CFG_CLANG" \
629                       --version \
630                       | grep version \
631                       | sed 's/.*\(version .*\)/\1/; s/.*based on \(LLVM .*\))/\1/' \
632                       | cut -d ' ' -f 2)
633
634     case $CFG_CLANG_VERSION in
635         (3.0svn | 3.0 | 3.1* | 3.2* | 3.3* | 3.4* | 3.5* )
636         step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
637         CFG_C_COMPILER="clang"
638         ;;
639         (*)
640         err "bad CLANG version: $CFG_CLANG_VERSION, need >=3.0svn"
641         ;;
642     esac
643 else
644     CFG_C_COMPILER="gcc"
645 fi
646
647 if [ ! -z "$CFG_ENABLE_CCACHE" ]
648 then
649     if [ -z "$CFG_CCACHE" ]
650     then
651         err "ccache requested but not found"
652     fi
653
654     CFG_C_COMPILER="ccache $CFG_C_COMPILER"
655 fi
656
657 # a little post-processing of various config values
658 CFG_PREFIX=${CFG_PREFIX%/}
659 CFG_MANDIR=${CFG_MANDIR%/}
660 CFG_HOST="$(echo $CFG_HOST | tr ',' ' ')"
661 CFG_TARGET="$(echo $CFG_TARGET | tr ',' ' ')"
662 CFG_SUPPORTED_TARGET="$(grep ^CC_*=* ${CFG_SRC_DIR}mk/platform.mk | sed -e 's/^CC_//' -e 's/\([^=]*\).*/\1/' | xargs)"
663
664 # copy host-triples to target-triples so that hosts are a subset of targets
665 V_TEMP=""
666 for i in $CFG_HOST $CFG_TARGET;
667 do
668    echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
669 done
670 CFG_TARGET=$V_TEMP
671
672 # check target-specific tool-chains
673 for i in $CFG_TARGET
674 do
675     L_CHECK=false
676     for j in $CFG_SUPPORTED_TARGET
677     do
678         if [ $i = $j ]
679         then
680             L_CHECK=true
681         fi
682     done
683
684     if [ $L_CHECK = false ]
685     then
686         err "unsupported target triples \"$i\" found"
687     fi
688
689     case $i in
690         arm-linux-androideabi)
691
692             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-gcc ]
693             then
694                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-gcc not found"
695             fi
696             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-g++ ]
697             then
698                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-g++ not found"
699             fi
700             if [ ! -f $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-ar ]
701             then
702                 err "NDK $CFG_ANDROID_CROSS_PATH/bin/arm-linux-androideabi-ar not found"
703             fi
704             ;;
705
706         arm-apple-darwin)
707             if [ $CFG_OSTYPE != apple-darwin ]
708             then
709                 err "The iOS target is only supported on Mac OS X"
710             fi
711             ;;
712
713         *)
714             ;;
715     esac
716 done
717
718 if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
719 then
720     err "either clang or gcc is required"
721 fi
722
723 if [ ! -z "$CFG_PERF" ]
724 then
725     HAVE_PERF_LOGFD=`$CFG_PERF stat --log-fd 2>&1 | grep 'unknown option'`
726     if [ -z "$HAVE_PERF_LOGFD" ];
727     then
728         CFG_PERF_WITH_LOGFD=1
729         putvar CFG_PERF_WITH_LOGFD
730     fi
731 fi
732
733 step_msg "making directories"
734
735 for i in \
736     doc doc/std doc/extra \
737     dl tmp dist
738 do
739     make_dir $i
740 done
741
742 for t in $CFG_HOST
743 do
744     make_dir $t/llvm
745 done
746
747 for t in $CFG_HOST
748 do
749     make_dir $t/rustllvm
750 done
751
752 for t in $CFG_TARGET
753 do
754   make_dir $t/rt
755   for s in 0 1 2 3
756   do
757     make_dir $t/rt/stage$s
758     make_dir $t/rt/libuv
759     make_dir $t/rt/libuv/src/ares
760     make_dir $t/rt/libuv/src/eio
761     make_dir $t/rt/libuv/src/ev
762     for i in                                          \
763       isaac sync test \
764       arch/i386 arch/x86_64 arch/arm arch/mips  \
765       sundown/src sundown/html
766     do
767       make_dir $t/rt/stage$s/$i
768     done
769   done
770 done
771
772 for h in $CFG_HOST
773 do
774     for t in $CFG_TARGET
775     do
776         for i in 0 1 2 3
777         do
778             # host bin dir
779             make_dir $h/stage$i/bin
780
781             # host lib dir
782             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE
783
784             # host test dir
785             make_dir $h/stage$i/test
786
787             # target bin dir
788             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/bin
789
790             # target lib dir
791             make_dir $h/stage$i/$CFG_LIBDIR_RELATIVE/rustlib/$t/lib
792         done
793     done
794
795     make_dir $h/test/run-pass
796     make_dir $h/test/run-pass-fulldeps
797     make_dir $h/test/run-fail
798     make_dir $h/test/compile-fail
799     make_dir $h/test/bench
800     make_dir $h/test/perf
801     make_dir $h/test/pretty
802     make_dir $h/test/debug-info
803     make_dir $h/test/codegen
804     make_dir $h/test/doc-tutorial
805     make_dir $h/test/doc-guide-ffi
806     make_dir $h/test/doc-guide-runtime
807     make_dir $h/test/doc-guide-macros
808     make_dir $h/test/doc-guide-lifetimes
809     make_dir $h/test/doc-guide-pointers
810     make_dir $h/test/doc-guide-container
811     make_dir $h/test/doc-guide-tasks
812     make_dir $h/test/doc-complement-cheatsheet
813     make_dir $h/test/doc-rust
814 done
815
816 # Configure submodules
817 step_msg "configuring submodules"
818
819 # Have to be in the top of src directory for this
820 if [ -z $CFG_DISABLE_MANAGE_SUBMODULES ]
821 then
822     cd ${CFG_SRC_DIR}
823
824     msg "git: submodule sync"
825     "${CFG_GIT}" submodule sync
826
827     msg "git: submodule update"
828     "${CFG_GIT}" submodule update --init
829     need_ok "git failed"
830
831     msg "git: submodule foreach sync"
832     "${CFG_GIT}" submodule foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi'
833     need_ok "git failed"
834
835     msg "git: submodule foreach update"
836     "${CFG_GIT}" submodule update --init --recursive
837     need_ok "git failed"
838
839     # NB: this is just for the sake of getting the submodule SHA1 values
840     # and status written into the build log.
841     msg "git: submodule status"
842     "${CFG_GIT}" submodule status --recursive
843
844     msg "git: submodule clobber"
845     "${CFG_GIT}" submodule foreach --recursive git clean -dxf
846     need_ok "git failed"
847     "${CFG_GIT}" submodule foreach --recursive git checkout .
848     need_ok "git failed"
849
850     cd ${CFG_BUILD_DIR}
851 fi
852
853 # Configure llvm, only if necessary
854 step_msg "looking at LLVM"
855 CFG_LLVM_SRC_DIR=${CFG_SRC_DIR}src/llvm/
856 for t in $CFG_HOST
857 do
858     do_reconfigure=1
859
860     if [ -z $CFG_LLVM_ROOT ]
861     then
862         LLVM_BUILD_DIR=${CFG_BUILD_DIR}$t/llvm
863         if [ ! -z "$CFG_DISABLE_OPTIMIZE_LLVM" ]
864         then
865             LLVM_DBG_OPTS="--enable-debug-symbols --disable-optimized"
866             # Just use LLVM straight from its build directory to
867             # avoid 'make install' time
868             LLVM_INST_DIR=$LLVM_BUILD_DIR/Debug
869         else
870             LLVM_DBG_OPTS="--enable-optimized"
871             LLVM_INST_DIR=$LLVM_BUILD_DIR/Release
872         fi
873         if [ ! -z "$CFG_DISABLE_LLVM_ASSERTIONS" ]
874         then
875             LLVM_ASSERTION_OPTS="--disable-assertions"
876         else
877             LLVM_ASSERTION_OPTS="--enable-assertions"
878             LLVM_INST_DIR=${LLVM_INST_DIR}+Asserts
879         fi
880     else
881         msg "not reconfiguring LLVM, external LLVM root"
882         # The user is using their own LLVM
883         LLVM_BUILD_DIR=
884         LLVM_INST_DIR=$CFG_LLVM_ROOT
885         do_reconfigure=0
886     fi
887
888
889     if [ ${do_reconfigure} -ne 0 ]
890     then
891     # because git is hilarious, it might have put the module index
892     # in a couple places.
893         index1="${CFG_SRC_DIR}.git/modules/src/llvm/index"
894         index2="${CFG_SRC_DIR}src/llvm/.git/index"
895         for index in ${index1} ${index2}
896         do
897             config_status="${LLVM_BUILD_DIR}/config.status"
898             if test -e ${index} -a \
899                     -e ${config_status} -a \
900                     ${config_status} -nt ${index}
901             then
902                 msg "not reconfiguring LLVM, config.status is fresh"
903                 do_reconfigure=0
904             fi
905         done
906     fi
907
908     if [ ${do_reconfigure} -ne 0 ]
909     then
910         msg "configuring LLVM for $t"
911
912         LLVM_TARGETS="--enable-targets=x86,x86_64,arm,mips"
913         LLVM_BUILD="--build=$t"
914         LLVM_HOST="--host=$t"
915         LLVM_TARGET="--target=$t"
916
917         # Disable unused LLVM features
918         LLVM_OPTS="$LLVM_DBG_OPTS $LLVM_ASSERTION_OPTS --disable-docs --enable-bindings=none"
919         # Disable term-info, linkage of which comes in multiple forms,
920         # making our snapshots incompatible (#9334)
921         LLVM_OPTS="$LLVM_OPTS --disable-terminfo"
922         # Try to have LLVM pull in as few dependencies as possible (#9397)
923         LLVM_OPTS="$LLVM_OPTS --disable-zlib --disable-libffi"
924         # LLVM says it needs a "new" clang/gcc, but we seem to get by ok with
925         # older versions on the bots. Get by for a little longer by asking it to
926         # not do version detection
927         LLVM_OPTS="$LLVM_OPTS --disable-compiler-version-checks"
928
929         # Use win32 native thread/lock apis instead of pthread wrapper.
930         # (llvm's configure tries to find pthread first, so we have to disable it explicitly.)
931         # Also note that pthreads works badly on mingw-w64 systems: #8996
932         case "$CFG_BUILD" in
933             (*-mingw32)
934             LLVM_OPTS="$LLVM_OPTS --disable-pthreads"
935             ;;
936         esac
937
938         case "$CFG_C_COMPILER" in
939             ("ccache clang")
940             LLVM_CXX_32="ccache clang++ -m32 -Qunused-arguments"
941             LLVM_CC_32="ccache clang -m32 -Qunused-arguments"
942
943             LLVM_CXX_64="ccache clang++ -Qunused-arguments"
944             LLVM_CC_64="ccache clang -Qunused-arguments"
945             ;;
946             ("clang")
947             LLVM_CXX_32="clang++ -m32 -Qunused-arguments"
948             LLVM_CC_32="clang -m32 -Qunused-arguments"
949
950             LLVM_CXX_64="clang++ -Qunused-arguments"
951             LLVM_CC_64="clang -Qunused-arguments"
952             ;;
953             ("ccache gcc")
954             LLVM_CXX_32="ccache g++ -m32"
955             LLVM_CC_32="ccache gcc -m32"
956
957             LLVM_CXX_64="ccache g++"
958             LLVM_CC_64="ccache gcc"
959             ;;
960             ("gcc")
961             LLVM_CXX_32="g++ -m32"
962             LLVM_CC_32="gcc -m32"
963
964             LLVM_CXX_64="g++"
965             LLVM_CC_64="gcc"
966         esac
967
968         LLVM_CFLAGS_32="-m32"
969         LLVM_CXXFLAGS_32="-m32"
970         LLVM_LDFLAGS_32="-m32"
971
972         LLVM_CFLAGS_64=""
973         LLVM_CXXFLAGS_64=""
974         LLVM_LDFLAGS_64=""
975
976         if echo $t | grep -q x86_64
977         then
978             LLVM_CXX=$LLVM_CXX_64
979             LLVM_CC=$LLVM_CC_64
980             LLVM_CFLAGS=$LLVM_CFLAGS_64
981             LLVM_CXXFLAGS=$LLVM_CXXFLAGS_64
982             LLVM_LDFLAGS=$LLVM_LDFLAGS_64
983         else
984             LLVM_CXX=$LLVM_CXX_32
985             LLVM_CC=$LLVM_CC_32
986             LLVM_CFLAGS=$LLVM_CFLAGS_32
987             LLVM_CXXFLAGS=$LLVM_CXXFLAGS_32
988             LLVM_LDFLAGS=$LLVM_LDFLAGS_32
989         fi
990
991         CXX=$LLVM_CXX
992         CC=$LLVM_CC
993         CFLAGS=$LLVM_CFLAGS
994         CXXFLAGS=$LLVM_CXXFLAGS
995         LDFLAGS=$LLVM_LDFLAGS
996
997         LLVM_FLAGS="$LLVM_TARGETS $LLVM_OPTS $LLVM_BUILD \
998                         $LLVM_HOST $LLVM_TARGET --with-python=$CFG_PYTHON"
999
1000         msg "configuring LLVM with:"
1001         msg "$LLVM_FLAGS"
1002
1003         export CXX
1004         export CC
1005         export CFLAGS
1006         export CXXFLAGS
1007         export LDFLAGS
1008
1009         cd $LLVM_BUILD_DIR
1010         case $CFG_SRC_DIR in
1011             /* | [a-z]:* | [A-Z]:*)
1012                 ${CFG_LLVM_SRC_DIR}configure $LLVM_FLAGS
1013                 ;;
1014             *)
1015                 ${CFG_BUILD_DIR}${CFG_LLVM_SRC_DIR}configure \
1016                     $LLVM_FLAGS
1017                 ;;
1018         esac
1019         need_ok "LLVM configure failed"
1020
1021         cd $CFG_BUILD_DIR
1022     fi
1023
1024     # Construct variables for LLVM build and install directories for
1025     # each target. These will be named
1026     # CFG_LLVM_BUILD_DIR_${target_triple} but all the hyphens in
1027     # target_triple will be converted to underscore, because bash
1028     # variables can't contain hyphens. The makefile will then have to
1029     # convert back.
1030     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1031     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1032     eval ${CFG_LLVM_BUILD_DIR}="'$LLVM_BUILD_DIR'"
1033     eval ${CFG_LLVM_INST_DIR}="'$LLVM_INST_DIR'"
1034 done
1035
1036
1037 step_msg "writing configuration"
1038
1039 putvar CFG_SRC_DIR
1040 putvar CFG_BUILD_DIR
1041 putvar CFG_OSTYPE
1042 putvar CFG_CPUTYPE
1043 putvar CFG_CONFIGURE_ARGS
1044 putvar CFG_PREFIX
1045 putvar CFG_BUILD
1046 putvar CFG_HOST
1047 putvar CFG_TARGET
1048 putvar CFG_C_COMPILER
1049 putvar CFG_LIBDIR
1050 putvar CFG_LIBDIR_RELATIVE
1051 putvar CFG_DISABLE_MANAGE_SUBMODULES
1052 putvar CFG_ANDROID_CROSS_PATH
1053 putvar CFG_MINGW32_CROSS_PATH
1054 putvar CFG_MANDIR
1055 putvar CFG_DISABLE_INJECT_STD_VERSION
1056
1057 # Avoid spurious warnings from clang by feeding it original source on
1058 # ccache-miss rather than preprocessed input.
1059 if [ ! -z "$CFG_ENABLE_CCACHE" ] && [ ! -z "$CFG_ENABLE_CLANG" ]
1060 then
1061     CFG_CCACHE_CPP2=1
1062     putvar CFG_CCACHE_CPP2
1063 fi
1064
1065 if [ ! -z "$CFG_ENABLE_CCACHE" ]
1066 then
1067     CFG_CCACHE_BASEDIR=${CFG_SRC_DIR}
1068     putvar CFG_CCACHE_BASEDIR
1069 fi
1070
1071
1072 if [ ! -z $BAD_PANDOC ]
1073 then
1074     CFG_PANDOC=
1075     putvar CFG_PANDOC
1076 fi
1077
1078 # Valgrind is only reliable on Linux. On Windows it doesn't work at all, and
1079 # on the Mac the dynamic linker causes Valgrind to emit a huge stream of
1080 # errors.
1081 if [ $CFG_OSTYPE != unknown-linux-gnu ] && [ $CFG_OSTYPE != apple-darwin ]
1082 then
1083     CFG_BAD_VALGRIND=1
1084     putvar CFG_BAD_VALGRIND
1085 fi
1086
1087 putvar CFG_LLVM_ROOT
1088 putvar CFG_LLVM_SRC_DIR
1089
1090 for t in $CFG_HOST
1091 do
1092     CFG_LLVM_BUILD_DIR=$(echo CFG_LLVM_BUILD_DIR_${t} | tr - _)
1093     CFG_LLVM_INST_DIR=$(echo CFG_LLVM_INST_DIR_${t} | tr - _)
1094     putvar $CFG_LLVM_BUILD_DIR
1095     putvar $CFG_LLVM_INST_DIR
1096 done
1097
1098 # Munge any paths that appear in config.mk back to posix-y
1099 perl -i.bak -p -e 's@ ([a-zA-Z]):[/\\]@ /\1/@go;' \
1100                -e 's@\\@/@go;' config.tmp
1101 rm -f config.tmp.bak
1102
1103 msg
1104 copy_if_changed ${CFG_SRC_DIR}Makefile.in ./Makefile
1105 move_if_changed config.tmp config.mk
1106 rm -f config.tmp
1107 touch config.stamp
1108
1109 step_msg "complete"
1110 msg "run \`make help\`"
1111 msg