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