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