3 # /bin/sh on Solaris is not a POSIX compatible shell, but /usr/bin/bash is.
4 if [ `uname -s` = 'SunOS' -a "${POSIX_SHELL}" != "true" ]; then
7 exec /usr
/bin
/env bash
$0 "$@"
9 unset POSIX_SHELL
# clear it so if we invoke other scripts, they run as bash as well
22 echo "configure: WARNING: $1"
26 echo "configure: error: $1"
43 if command -v $1 >/dev
/null
2>&1
44 then msg
"found program '$1'"
45 else err
"program '$1' is missing, please install it"
59 msg
"leaving $2 unchanged"
62 chmod u-w
$2 # make copied artifact read-only
69 msg
"leaving $2 unchanged"
72 chmod u-w
$2 # make moved artifact read-only
82 printf "configure: %-20s := %.35s ...\n" $1 "$T"
84 printf "configure: %-20s := %s %s\n" $1 "$T" "$2"
86 printf "%-20s := %s\n" $1 "$T" >>config.tmp
95 printf "configure: %-20s := %.35s ...\n" $1 "$T"
97 printf "configure: %-20s := %s %s\n" $1 "$T" "$2"
101 printf "%-20s := \n" $1 >>config.tmp
103 printf "%-20s := \"%s\"\n" $1 "$T" >>config.tmp
114 T
=$
(command -v $P 2>&1)
117 VER0
=$
($P --version 2>/dev
/null \
118 |
grep -o '[vV]\?[0-9][0-9.][a-z0-9.-]*' |
head -1 )
119 if [ $?
-eq 0 -a "x${VER0}" != "x" ]
141 err
"needed, but unable to find any of: $*"
146 for arg
in $CFG_CONFIGURE_ARGS
149 for option
in $BOOL_OPTIONS
151 if test --disable-$option = $arg
155 if test --enable-$option = $arg
160 for option
in $VAL_OPTIONS
162 if echo "$arg" |
grep -q -- "--$option="
167 if [ "$arg" = "--help" ]
170 echo "No more help available for Configure options,"
171 echo "check the Wiki or join our IRC channel"
174 if test $isArgValid -eq 0
176 err
"Option '$arg' is not recognized"
182 # `valopt OPTION_NAME DEFAULT DOC` extracts a string-valued option
183 # from command line, using provided default value for the option if
184 # not present, and saves it to the generated config.mk.
186 # `valopt_nosave` is much the same, except that it does not save the
187 # result to config.mk (instead the script should use `putvar` itself
188 # later on to save it). `valopt_core` is the core upon which the
189 # other two are built.
192 VAL_OPTIONS
="$VAL_OPTIONS $2"
203 local UOP
=$
(echo $OP |
tr '[:lower:]' '[:upper:]' |
tr '\-' '\_')
205 local V_PROVIDED
="${V}_PROVIDED"
207 for arg
in $CFG_CONFIGURE_ARGS
209 if echo "$arg" |
grep -q -- "--$OP="
211 val
=$
(echo "$arg" | cut
-f2 -d=)
216 if [ "$SAVE" = "save" ]
225 OP
="${OP}=[${DEFAULT}]"
226 printf " --%-30s %s\n" "$OP" "$DOC"
231 valopt_core nosave
"$@"
235 valopt_core save
"$@"
238 # `opt OPTION_NAME DEFAULT DOC` extracts a boolean-valued option from
239 # command line, using the provided default value (0/1) for the option
240 # if not present, and saves it to the generated config.mk.
242 # `opt_nosave` is much the same, except that it does not save the
243 # result to config.mk (instead the script should use `putvar` itself
244 # later on to save it). `opt_core` is the core upon which the other
248 BOOL_OPTIONS
="$BOOL_OPTIONS $2"
259 if [ $DEFAULT -eq 0 ]
262 DEFAULT_FLAG
="disable"
265 DEFAULT_FLAG
="enable"
271 for arg
in $CFG_CONFIGURE_ARGS
273 if [ "$arg" = "--${FLAG}-${OP}" ]
275 OP
=$
(echo $OP |
tr 'a-z-' 'A-Z_')
276 FLAG
=$
(echo $FLAG |
tr 'a-z' 'A-Z')
277 local V
="CFG_${FLAG}_${OP}"
278 local V_PROVIDED
="CFG_${FLAG}_${OP}_PROVIDED"
281 if [ "$SAVE" = "save" ]
285 elif [ "$arg" = "--${DEFAULT_FLAG}-${OP}" ]
287 OP
=$
(echo $OP |
tr 'a-z-' 'A-Z_')
288 DEFAULT_FLAG
=$
(echo $DEFAULT_FLAG |
tr 'a-z' 'A-Z')
289 local V_PROVIDED
="CFG_${DEFAULT_FLAG}_${OP}_PROVIDED"
298 printf " --%-30s %s\n" "$FLAG-$OP" "$DOC"
312 local V
="CFG_${NAME}"
315 # If configure didn't set a value already, then check environment.
317 # (It is recommended that the configure script always check the
318 # environment before setting any values to envopt variables; see
319 # e.g. how CFG_CC is handled, where it first checks `-z "$CC"`,
320 # and issues msg if it ends up employing that provided value.)
327 # If script or environment provided a value, save it.
334 enable_if_not_disabled
() {
336 local UOP
=$
(echo $OP |
tr '[:lower:]' '[:upper:]' |
tr '\-' '\_')
337 local ENAB_V
="CFG_ENABLE_$UOP"
338 local EXPLICITLY_DISABLED
="CFG_DISABLE_${UOP}_PROVIDED"
339 eval VV
=\$
$EXPLICITLY_DISABLED
340 if [ -z "$VV" ]; then
347 i686-pc-windows-gnu
) echo i686-w64-mingw32
;;
348 x86_64-pc-windows-gnu
) echo x86_64-w64-mingw32
;;
353 # Prints the absolute path of a directory to stdout
356 # Unset CDPATH because it causes havok: it makes the destination unpredictable
357 # and triggers 'cd' to print the path to stdout. Route `cd`'s output to /dev/null
359 (unset CDPATH
&& cd "$_path" > /dev
/null
&& pwd)
362 msg
"looking for configure programs"
379 msg
"inspecting environment"
381 CFG_OSTYPE
=$
(uname
-s)
382 CFG_CPUTYPE
=$
(uname
-m)
384 if [ $CFG_OSTYPE = Darwin
-a $CFG_CPUTYPE = i386
]
386 # Darwin's `uname -s` lies and always returns i386. We have to use sysctl
388 if sysctl hw.optional.x86_64 |
grep -q ': 1'
394 # The goal here is to come up with the same triple as LLVM would,
395 # at least for the subset of platforms we're willing to target.
400 CFG_OSTYPE
=unknown-linux-gnu
404 CFG_OSTYPE
=unknown-freebsd
408 CFG_OSTYPE
=unknown-dragonfly
412 CFG_OSTYPE
=unknown-bitrig
416 CFG_OSTYPE
=unknown-openbsd
420 CFG_OSTYPE
=unknown-netbsd
424 CFG_OSTYPE
=apple-darwin
428 CFG_OSTYPE
=sun-solaris
429 CFG_CPUTYPE
=$
(isainfo
-n)
433 # msys' `uname` does not print gcc configuration, but prints msys
434 # configuration. so we cannot believe `uname -m`:
435 # msys1 is always i686 and msys2 is always x86_64.
436 # instead, msys defines $MSYSTEM which is MINGW32 on i686 and
439 CFG_OSTYPE
=pc-windows-gnu
440 if [ "$MSYSTEM" = MINGW64
]
447 CFG_OSTYPE
=pc-windows-gnu
450 # Thad's Cygwin identifiers below
454 CFG_OSTYPE
=pc-windows-gnu
460 CFG_OSTYPE
=pc-windows-gnu
466 CFG_OSTYPE
=pc-windows-gnu
472 CFG_OSTYPE
=pc-windows-gnu
476 # Win 8 # uname -s on 64-bit cygwin does not contain WOW64, so simply use uname -m to detect arch (works in my install)
478 CFG_OSTYPE
=pc-windows-gnu
480 # We do not detect other OS such as XP/2003 using 64 bit using uname.
481 # 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.
483 err
"unknown OS type: $CFG_OSTYPE"
490 i386 | i486 | i686 | i786 | x86
)
500 CFG_OSTYPE
="${CFG_OSTYPE}eabihf"
512 CFG_CPUTYPE
=powerpc64
515 powerpc64le | ppc64le
)
516 CFG_CPUTYPE
=powerpc64le
519 x86_64 | x86-64 | x64 | amd64
)
524 err
"unknown CPU type: $CFG_CPUTYPE"
527 # Detect 64 bit linux systems with 32 bit userland and force 32 bit compilation
528 if [ $CFG_OSTYPE = unknown-linux-gnu
-a $CFG_CPUTYPE = x86_64
]
530 # $SHELL does not exist in standard 'sh', so probably only exists
531 # if configure is running in an interactive bash shell. /usr/bin/env
532 # exists *everywhere*.
533 BIN_TO_PROBE
="$SHELL"
534 if [ ! -r "$BIN_TO_PROBE" ]; then
535 if [ -r "/usr/bin/env" ]; then
536 BIN_TO_PROBE
="/usr/bin/env"
538 warn
"Cannot check if the userland is i686 or x86_64"
541 file -L "$BIN_TO_PROBE" |
grep -q "x86[_-]64"
543 msg
"i686 userland on x86_64 Linux kernel"
549 DEFAULT_BUILD
="${CFG_CPUTYPE}-${CFG_OSTYPE}"
551 CFG_SRC_DIR
="$(abs_path $(dirname $0))/"
552 CFG_SRC_DIR_RELATIVE
="$(dirname $0)/"
553 CFG_BUILD_DIR
="$(pwd)/"
555 CFG_CONFIGURE_ARGS
="$@"
558 case "${CFG_SRC_DIR}" in
560 err
"The path to the rust source directory contains spaces, which is not supported"
569 if [ "$1" = "--help" ]
574 echo "Usage: $CFG_SELF [options]"
579 msg
"recreating config.tmp"
582 step_msg
"processing $CFG_SELF args"
588 opt debug
0 "debug mode; disables optimization unless \`--enable-optimize\` given"
589 opt valgrind
0 "run tests with valgrind (memcheck by default)"
590 opt helgrind
0 "run tests with helgrind instead of memcheck"
591 opt valgrind-rpass
1 "run rpass-valgrind tests with valgrind"
592 opt docs
1 "build standard library documentation"
593 opt compiler-docs
0 "build compiler documentation"
594 opt optimize-tests
1 "build tests with optimizations"
595 opt debuginfo-tests
0 "build tests with debugger metadata"
596 opt libcpp
1 "build with llvm with libc++ instead of libstdc++ when using clang"
597 opt llvm-assertions
0 "build LLVM with assertions"
598 opt debug-assertions
0 "build with debugging assertions"
599 opt fast-make
0 "use .gitmodules as timestamp for submodule deps"
600 opt ccache
0 "invoke gcc/clang via ccache to reuse object files between builds"
601 opt local-rust
0 "use an installed rustc rather than downloading a snapshot"
602 opt llvm-static-stdcpp
0 "statically link to libstdc++ for LLVM"
603 opt rpath
1 "build rpaths into rustc itself"
604 opt stage0-landing-pads
1 "enable landing pads during bootstrap with stage0"
605 # This is used by the automation to produce single-target nightlies
606 opt dist-host-only
0 "only install bins for the host architecture"
607 opt inject-std-version
1 "inject the current compiler version of libstd into programs"
608 opt llvm-version-check
1 "check if the LLVM version is supported, build anyway"
609 opt rustbuild
0 "use the rust and cargo based build system"
610 opt orbit
0 "get MIR where it belongs - everywhere; most importantly, in orbit"
611 opt codegen-tests
1 "run the src/test/codegen tests"
613 # Optimization and debugging options. These may be overridden by the release channel, etc.
614 opt_nosave optimize
1 "build optimized rust code"
615 opt_nosave optimize-cxx
1 "build optimized C++ code"
616 opt_nosave optimize-llvm
1 "build optimized LLVM"
617 opt_nosave llvm-assertions
0 "build LLVM with assertions"
618 opt_nosave debug-assertions
0 "build with debugging assertions"
619 opt_nosave debuginfo
0 "build with debugger metadata"
620 opt_nosave debug-jemalloc
0 "build jemalloc with --enable-debug --enable-fill"
622 valopt localstatedir
"/var/lib" "local state directory"
623 valopt sysconfdir
"/etc" "install system configuration files"
625 valopt datadir
"${CFG_PREFIX}/share" "install data"
626 valopt infodir
"${CFG_PREFIX}/share/info" "install additional info"
627 valopt llvm-root
"" "set LLVM root"
628 valopt python
"" "set path to python"
629 valopt jemalloc-root
"" "set directory where libjemalloc_pic.a is located"
630 valopt build
"${DEFAULT_BUILD}" "GNUs ./configure syntax LLVM build triple"
631 valopt android-cross-path
"" "Android NDK standalone path (deprecated)"
632 valopt i686-linux-android-ndk
"" "i686-linux-android NDK standalone path"
633 valopt arm-linux-androideabi-ndk
"" "arm-linux-androideabi NDK standalone path"
634 valopt aarch64-linux-android-ndk
"" "aarch64-linux-android NDK standalone path"
635 valopt nacl-cross-path
"" "NaCl SDK path (Pepper Canary is recommended). Must be absolute!"
636 valopt release-channel
"dev" "the name of the release channel to build"
637 valopt musl-root
"/usr/local" "MUSL root installation directory"
638 valopt extra-filename
"" "Additional data that is hashed and passed to the -C extra-filename flag"
640 # Used on systems where "cc" and "ar" are unavailable
641 valopt default-linker
"cc" "the default linker"
642 valopt default-ar
"ar" "the default ar"
644 # Many of these are saved below during the "writing configuration" step
645 # (others are conditionally saved).
646 opt_nosave manage-submodules
1 "let the build manage the git submodules"
647 opt_nosave clang
0 "prefer clang to gcc for building the runtime"
648 opt_nosave jemalloc
1 "build liballoc with jemalloc"
649 opt elf-tls
1 "elf thread local storage on platforms where supported"
651 valopt_nosave prefix
"/usr/local" "set installation prefix"
652 valopt_nosave local-rust-root
"/usr/local" "set prefix for local rust binary"
653 valopt_nosave
host "${CFG_BUILD}" "GNUs ./configure syntax LLVM host triples"
654 valopt_nosave target
"${CFG_HOST}" "GNUs ./configure syntax LLVM target triples"
655 valopt_nosave mandir
"${CFG_PREFIX}/share/man" "install man pages in PATH"
657 # On Windows this determines root of the subtree for target libraries.
658 # Host runtime libs always go to 'bin'.
659 valopt libdir
"${CFG_PREFIX}/lib" "install libraries"
661 case "$CFG_LIBDIR" in
662 "$CFG_PREFIX"/*) CAT_INC
=2;;
663 "$CFG_PREFIX"*) CAT_INC
=1;;
665 err
"libdir must begin with the prefix. Use --prefix to set it accordingly.";;
668 CFG_LIBDIR_RELATIVE
=`echo ${CFG_LIBDIR} | cut -c$((${#CFG_PREFIX}+${CAT_INC}))-`
677 step_msg
"validating $CFG_SELF args"
680 # Validate the release channel, and configure options
681 case "$CFG_RELEASE_CHANNEL" in
683 msg
"overriding settings for $CFG_RELEASE_CHANNEL"
684 CFG_ENABLE_LLVM_ASSERTIONS
=1
689 err
"release channel must be 'dev', 'nightly', 'beta' or 'stable'"
693 # Adjust perf and debug options for debug mode
694 if [ -n "$CFG_ENABLE_DEBUG" ]; then
695 msg
"debug mode enabled, setting performance options"
696 if [ -z "$CFG_ENABLE_OPTIMIZE_PROVIDED" ]; then
697 msg
"optimization not explicitly enabled, disabling optimization"
698 CFG_DISABLE_OPTIMIZE
=1
699 CFG_DISABLE_OPTIMIZE_CXX
=1
702 # Set following variables to 1 unless setting already provided
703 enable_if_not_disabled debug-assertions
704 enable_if_not_disabled debug-jemalloc
705 enable_if_not_disabled debuginfo
706 enable_if_not_disabled llvm-assertions
709 # OK, now write the debugging options
710 if [ -n "$CFG_DISABLE_OPTIMIZE" ]; then putvar CFG_DISABLE_OPTIMIZE
; fi
711 if [ -n "$CFG_DISABLE_OPTIMIZE_CXX" ]; then putvar CFG_DISABLE_OPTIMIZE_CXX
; fi
712 if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]; then putvar CFG_DISABLE_OPTIMIZE_LLVM
; fi
713 if [ -n "$CFG_ENABLE_LLVM_ASSERTIONS" ]; then putvar CFG_ENABLE_LLVM_ASSERTIONS
; fi
714 if [ -n "$CFG_ENABLE_DEBUG_ASSERTIONS" ]; then putvar CFG_ENABLE_DEBUG_ASSERTIONS
; fi
715 if [ -n "$CFG_ENABLE_DEBUGINFO" ]; then putvar CFG_ENABLE_DEBUGINFO
; fi
716 if [ -n "$CFG_ENABLE_DEBUG_JEMALLOC" ]; then putvar CFG_ENABLE_DEBUG_JEMALLOC
; fi
718 if [ -n "$CFG_ENABLE_ORBIT" ]; then putvar CFG_ENABLE_ORBIT
; fi
720 step_msg
"looking for build programs"
722 probe_need CFG_CURLORWGET curl wget
723 if [ -z "$CFG_PYTHON_PROVIDED" ]; then
724 probe_need CFG_PYTHON python2.7 python2 python
727 python_version
=$
($CFG_PYTHON -V 2>&1)
728 if [ $
(echo $python_version |
grep -c '^Python 2\.7') -ne 1 ]; then
729 err
"Found $python_version, but Python 2.7 is required"
732 # If we have no git directory then we are probably a tarball distribution
733 # and shouldn't attempt to load submodules
734 if [ ! -e ${CFG_SRC_DIR}.git
]
737 msg
"git: no git directory. disabling submodules"
738 CFG_DISABLE_MANAGE_SUBMODULES
=1
740 probe_need CFG_GIT git
743 # Use `md5sum` on GNU platforms, or `md5 -q` on BSD
745 probe CFG_MD5SUM
md5sum
748 CFG_HASH_COMMAND
="$CFG_MD5 -q | cut -c 1-8"
749 elif [ -n "$CFG_MD5SUM" ]
751 CFG_HASH_COMMAND
="$CFG_MD5SUM | cut -c 1-8"
753 err
'could not find one of: md5 md5sum'
755 putvar CFG_HASH_COMMAND
757 probe CFG_CLANG clang
++
758 probe CFG_CCACHE ccache
761 probe CFG_VALGRIND valgrind
764 probe CFG_ANTLR4 antlr4
767 probe CFG_BISON bison
771 # On MacOS X, invoking `javac` pops up a dialog if the JDK is not
772 # installed. Since `javac` is only used if `antlr4` is available,
773 # probe for it only in this case.
774 if [ -n "$CFG_ANTLR4" ]
776 probe CFG_JAVAC javac
779 # the valgrind rpass tests will fail if you don't have a valgrind, but they're
780 # only disabled if you opt out.
781 if [ -z "$CFG_VALGRIND" ]
783 # If the user has explicitly asked for valgrind tests, then fail
784 if [ -n "$CFG_ENABLE_VALGRIND" ] && [ -n "$CFG_ENABLE_VALGRIND_PROVIDED" ]
786 err
"No valgrind present, but valgrind tests explicitly requested"
788 CFG_DISABLE_VALGRIND_RPASS
=1
789 putvar CFG_DISABLE_VALGRIND_RPASS
795 # Store GDB's version
796 CFG_GDB_VERSION
=$
($CFG_GDB --version 2>/dev
/null |
head -1)
797 putvar CFG_GDB_VERSION
800 if [ -n "$CFG_LLDB" ]
802 # Store LLDB's version
803 CFG_LLDB_VERSION
=$
($CFG_LLDB --version 2>/dev
/null |
head -1)
804 putvar CFG_LLDB_VERSION
806 # If CFG_LLDB_PYTHON_DIR is not already set from the outside and valid, try to read it from
807 # LLDB via the -P commandline options.
808 if [ -z "$CFG_LLDB_PYTHON_DIR" ] ||
[ ! -d "$CFG_LLDB_PYTHON_DIR" ]
810 CFG_LLDB_PYTHON_DIR
=$
($CFG_LLDB -P)
812 # If CFG_LLDB_PYTHON_DIR is not a valid directory, set it to something more readable
813 if [ ! -d "$CFG_LLDB_PYTHON_DIR" ]
815 CFG_LLDB_PYTHON_DIR
="LLDB_PYTHON_DIRECTORY_NOT_FOUND"
818 putvar CFG_LLDB_PYTHON_DIR
822 step_msg
"looking for target specific programs"
827 if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] ||
[ "$CFG_OSTYPE" = "pc-windows-msvc" ]
832 if [ -n "$CFG_ENABLE_LOCAL_RUST" ]
834 system_rustc
=$
(which rustc
)
835 if [ -f ${CFG_LOCAL_RUST_ROOT}/bin
/rustc
${BIN_SUF} ]
837 : # everything already configured
838 elif [ -n "$system_rustc" ]
840 # we assume that rustc is in a /bin directory
841 CFG_LOCAL_RUST_ROOT
=${system_rustc%/bin/rustc}
843 err
"no local rust to use"
846 CMD
="${CFG_LOCAL_RUST_ROOT}/bin/rustc${BIN_SUF}"
850 step_msg
"failure while running $CMD --version"
853 step_msg
"using rustc at: ${CFG_LOCAL_RUST_ROOT} with version: $LRV"
854 putvar CFG_LOCAL_RUST_ROOT
857 # Force bitrig to build with clang; gcc doesn't like us there
858 if [ $CFG_OSTYPE = unknown-bitrig
]
860 step_msg
"on Bitrig, forcing use of clang"
864 # default gcc version under OpenBSD maybe too old, try using egcc, which is a
865 # gcc version from ports
866 if [ $CFG_OSTYPE = unknown-openbsd
]
868 if [ $
("$CFG_GCC" --version 2>&1 |
grep -c ' 4\.[0-6]') -ne 0 ]; then
869 step_msg
"older GCC found, try with egcc instead"
871 # probe again but using egcc
874 # and use egcc/eg++ for CC/CXX too if it was found
875 # (but user setting has priority)
876 if [ -n "$CFG_GCC" ]; then
883 # OS X 10.9, gcc is actually clang. This can cause some confusion in the build
884 # system, so if we find that gcc is clang, we should just use clang directly.
885 if [ $CFG_OSTYPE = apple-darwin
-a -z "$CFG_ENABLE_CLANG" ]
887 CFG_OSX_GCC_VERSION
=$
("$CFG_GCC" --version 2>&1 |
grep "Apple LLVM version")
890 step_msg
"on OS X >=10.9, forcing use of clang"
893 if [ $
("$CFG_GCC" --version 2>&1 |
grep -c ' 4\.[0-6]') -ne 0 ]; then
894 step_msg
"older GCC found, using clang instead"
897 # on OS X, with xcode 5 and newer, certain developers may have
898 # cc, gcc and g++ point to a mixture of clang and gcc
899 # if so, this will create very strange build errors
900 # this last stanza is to detect some such problems and save the future rust
901 # contributor some time solving that issue.
902 # this detection could be generalized to other OSes aside from OS X
903 # but the issue seems most likely to happen on OS X
906 $1 --version 2> /dev
/null |
grep -q $2
908 # check that gcc, cc and g++ all point to the same compiler.
909 # note that for xcode 5, g++ points to clang, not clang++
910 if !((chk_cc gcc clang
&& chk_cc g
++ clang
) ||
911 (chk_cc gcc gcc
&&( chk_cc g
++ g
++ || chk g
++ gcc
))); then
912 err
"the gcc and g++ in your path point to different compilers.
913 Check which versions are in your path with gcc --version and g++ --version.
914 To resolve this problem, either fix your PATH or run configure with --enable-clang"
921 # If the clang isn't already enabled, check for GCC, and if it is missing, turn
922 # on clang as a backup.
923 if [ -z "$CFG_ENABLE_CLANG" ]
925 CFG_GCC_VERSION
=$
("$CFG_GCC" --version 2>&1)
928 step_msg
"GCC not installed, will try using Clang"
933 # Okay, at this point, we have made up our minds about whether we are
934 # going to force CFG_ENABLE_CLANG or not; save the setting if so.
935 if [ -n "$CFG_ENABLE_CLANG" ]
937 putvar CFG_ENABLE_CLANG
940 if [ -z "$CFG_DISABLE_LIBCPP" -a -n "$CFG_ENABLE_CLANG" ]
947 # Same with jemalloc. save the setting here.
948 if [ -n "$CFG_DISABLE_JEMALLOC" ]
950 putvar CFG_DISABLE_JEMALLOC
953 if [ -n "$CFG_LLVM_ROOT" -a -z "$CFG_DISABLE_LLVM_VERSION_CHECK" -a -e "$CFG_LLVM_ROOT/bin/llvm-config" ]
955 step_msg
"using custom LLVM at $CFG_LLVM_ROOT"
957 LLVM_CONFIG
="$CFG_LLVM_ROOT/bin/llvm-config"
958 LLVM_VERSION
=$
($LLVM_CONFIG --version)
960 case $LLVM_VERSION in
962 msg
"found ok version of LLVM: $LLVM_VERSION"
965 err
"bad LLVM version: $LLVM_VERSION, need >=3.6"
970 # Even when the user overrides the choice of CC, still try to detect
971 # clang to disable some clang-specific warnings. We here draw a
972 # distinction between:
974 # CFG_ENABLE_CLANG : passed --enable-clang, or host "requires" clang,
975 # CFG_USING_CLANG : compiler (clang / gcc / $CC) looks like clang.
977 # This distinction is important because there are some safeguards we
978 # would prefer to skip when merely CFG_USING_CLANG is set; but when
979 # CFG_ENABLE_CLANG is set, that indicates that we are opting into
980 # running such safeguards.
984 msg
"skipping compiler inference steps; using provided CC=$CC"
987 CFG_OSX_CC_VERSION
=$
("$CFG_CC" --version 2>&1 |
grep "clang")
990 step_msg
"note, user-provided CC looks like clang; CC=$CC."
992 putvar CFG_USING_CLANG
995 if [ -n "$CFG_ENABLE_CLANG" ]
997 if [ -z "$CFG_CLANG" ]
999 err
"clang requested but not found"
1003 putvar CFG_USING_CLANG
1009 if [ -n "$CFG_ENABLE_CLANG" ]
1013 CFG_CLANG_REPORTED_VERSION
=$
($CFG_CC --version |
grep version
)
1015 if echo $CFG_CLANG_REPORTED_VERSION |
grep -q "(based on LLVM "; then
1016 CFG_CLANG_VERSION
=$
(echo $CFG_CLANG_REPORTED_VERSION |
sed 's/.*(based on LLVM \(.*\))/\1/')
1017 elif echo $CFG_CLANG_REPORTED_VERSION |
grep -q "Apple LLVM"; then
1018 CFG_OSX_CLANG_VERSION
=$
(echo $CFG_CLANG_REPORTED_VERSION |
sed 's/.*version \(.*\) .*/\1/')
1020 CFG_CLANG_VERSION
=$
(echo $CFG_CLANG_REPORTED_VERSION |
sed 's/.*version \(.*\) .*/\1/')
1023 if [ -n "$CFG_OSX_CLANG_VERSION" ]
1025 case $CFG_OSX_CLANG_VERSION in
1026 (7.0* |
7.1* |
7.2* |
7.3*)
1027 step_msg
"found ok version of APPLE CLANG: $CFG_OSX_CLANG_VERSION"
1030 err
"bad APPLE CLANG version: $CFG_OSX_CLANG_VERSION, need >=7.0"
1034 case $CFG_CLANG_VERSION in
1035 (3.2* |
3.3* |
3.4* |
3.5* |
3.6* |
3.7* |
3.8* |
3.9*)
1036 step_msg
"found ok version of CLANG: $CFG_CLANG_VERSION"
1039 err
"bad CLANG version: $CFG_CLANG_VERSION, need >=3.0svn"
1052 if [ -n "$CFG_ENABLE_CCACHE" ]
1054 if [ -z "$CFG_CCACHE" ]
1056 err
"ccache requested but not found"
1059 CFG_CC
="ccache $CFG_CC"
1062 if [ -z "$CC" -a -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
1064 err
"either clang or gcc is required"
1067 # All safeguards based on $CFG_ENABLE_CLANG should occur before this
1068 # point in the script; after this point, script logic should inspect
1069 # $CFG_USING_CLANG rather than $CFG_ENABLE_CLANG.
1071 # Set CFG_{CC,CXX,CPP,CFLAGS,CXXFLAGS,LDFLAGS}
1079 # stdc++ name in use
1080 # used to manage non-standard name (on OpenBSD for example)
1081 program_transform_name
=$
($CFG_CC -v 2>&1 |
sed -n "s/.*--program-transform-name='\([^']*\)'.*/\1/p")
1082 CFG_STDCPP_NAME
=$
(echo "stdc++" |
sed "${program_transform_name}")
1083 putvar CFG_STDCPP_NAME
1085 # a little post-processing of various config values
1086 CFG_PREFIX
=${CFG_PREFIX%/}
1087 CFG_MANDIR
=${CFG_MANDIR%/}
1088 CFG_HOST
="$(echo $CFG_HOST | tr ',' ' ')"
1089 CFG_TARGET
="$(echo $CFG_TARGET | tr ',' ' ')"
1090 CFG_SUPPORTED_TARGET
=""
1091 for target_file
in ${CFG_SRC_DIR}mk
/cfg
/*.mk
; do
1092 CFG_SUPPORTED_TARGET
="${CFG_SUPPORTED_TARGET} $(basename "$target_file" .mk)"
1095 # copy build-triples to host-triples so that builds are a subset of hosts
1097 for i
in $CFG_BUILD $CFG_HOST;
1099 echo "$V_TEMP" |
grep -qF $i || V_TEMP
="$V_TEMP${V_TEMP:+ }$i"
1103 # copy host-triples to target-triples so that hosts are a subset of targets
1105 for i
in $CFG_HOST $CFG_TARGET;
1107 echo "$V_TEMP" |
grep -qF $i || V_TEMP
="$V_TEMP${V_TEMP:+ }$i"
1111 # check target-specific tool-chains
1112 for i
in $CFG_TARGET
1115 for j
in $CFG_SUPPORTED_TARGET
1123 if [ $L_CHECK = false
]
1125 err
"unsupported target triples \"$i\" found"
1130 upper_snake_target
=$
(echo "$i" |
tr '[:lower:]' '[:upper:]' |
tr '\-' '\_')
1131 eval ndk
=\$
"CFG_${upper_snake_target}_NDK"
1134 ndk
=$CFG_ANDROID_CROSS_PATH
1135 eval "CFG_${upper_snake_target}_NDK"=$CFG_ANDROID_CROSS_PATH
1136 warn
"generic/default Android NDK option is deprecated (use --$i-ndk option instead)"
1139 # Perform a basic sanity check of the NDK
1140 for android_ndk_tool
in "$ndk/bin/$i-gcc" "$ndk/bin/$i-g++" "$ndk/bin/$i-ar"
1142 if [ ! -f $android_ndk_tool ]
1144 err
"NDK tool $android_ndk_tool not found (bad or missing --$i-ndk option?)"
1149 if [ -z "$CFG_NACL_CROSS_PATH" ]
1151 err
"I need the NaCl SDK path! (use --nacl-cross-path)"
1155 if [ $CFG_OSTYPE != apple-darwin
]
1157 err
"The iOS target is only supported on Mac OS X"
1163 if [ ! -f $CFG_MUSL_ROOT/lib
/libc.a
]
1165 err
"musl libc $CFG_MUSL_ROOT/lib/libc.a not found"
1170 # There are some MSYS python builds which will auto-translate
1171 # windows-style paths to MSYS-style paths in Python itself.
1172 # Unfortunately this breaks LLVM's build system as somewhere along
1173 # the line LLVM prints a path into a file from Python and then CMake
1174 # later tries to interpret that path. If Python prints a MSYS path
1175 # and CMake tries to use it as a Windows path, you're gonna have a
1178 # Consequently here we try to detect when that happens and print an
1180 if $CFG_PYTHON -c 'import sys; print sys.argv[1]' `pwd` |
grep '^/' > /dev
/null
1184 python is silently translating windows paths to MSYS paths \
1185 and the build will fail if this python is used.
1187 Either an official python install must be used or an \
1188 alternative python package in MinGW must be used.
1190 If you are building under msys2 try installing the mingw-w64-x86_64-python2 \
1191 package instead of python2:
1193 $ pacman -R python2 && pacman -S mingw-w64-x86_64-python2
1197 # MSVC requires cmake because that's how we're going to build LLVM
1198 probe_need CFG_CMAKE cmake
1200 # There are three builds of cmake on windows: MSVC, MinGW and Cygwin
1201 # The Cygwin build does not have generators for Visual Studio, so
1202 # detect that here and error.
1203 if ! "$CFG_CMAKE" --help |
sed -n '/^Generators/,$p' |
grep 'Visual Studio' > /dev
/null
1207 cmake does not support Visual Studio generators.
1209 This is likely due to it being an msys/cygwin build of cmake, \
1210 rather than the required windows version, built using MinGW \
1213 If you are building under msys2 try installing the mingw-w64-x86_64-cmake \
1214 package instead of cmake:
1216 $ pacman -R cmake && pacman -S mingw-w64-x86_64-cmake
1220 # Use the REG program to figure out where VS is installed
1221 # We need to figure out where cl.exe and link.exe are, so we do some
1222 # munging and some probing here. We also look for the default
1223 # INCLUDE and LIB variables for MSVC so we can set those in the
1224 # build system as well.
1225 install=$
(cmd
//c reg QUERY \
1226 'HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\14.0' \
1228 if [ -z "$install" ]; then
1229 install=$
(cmd
//c reg QUERY \
1230 'HKLM\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\12.0' \
1233 need_ok
"couldn't find visual studio install root"
1234 CFG_MSVC_ROOT
=$
(echo "$install" |
grep InstallDir |
sed 's/.*REG_SZ[ ]*//')
1235 CFG_MSVC_ROOT
=$
(dirname "$CFG_MSVC_ROOT")
1236 CFG_MSVC_ROOT
=$
(dirname "$CFG_MSVC_ROOT")
1237 putvar CFG_MSVC_ROOT
1249 err
"can only target x86 targets for MSVC"
1252 bindir
="${CFG_MSVC_ROOT}/VC/bin"
1253 if [ -n "$msvc_part" ]; then
1254 bindir
="$bindir/$msvc_part"
1256 eval CFG_MSVC_BINDIR_
$bits="\"$bindir\""
1257 eval CFG_MSVC_CL_
$bits="\"$bindir/cl.exe\""
1258 eval CFG_MSVC_LIB_
$bits="\"$bindir/lib.exe\""
1259 eval CFG_MSVC_LINK_
$bits="\"$bindir/link.exe\""
1261 vcvarsall
="${CFG_MSVC_ROOT}/VC/vcvarsall.bat"
1262 include_path
=$
(cmd
//V
:ON
//c
"$vcvarsall" $msvc_part \
& echo !INCLUDE
!)
1263 need_ok
"failed to learn about MSVC's INCLUDE"
1264 lib_path
=$
(cmd
//V
:ON
//c
"$vcvarsall" $msvc_part \
& echo !LIB
!)
1265 need_ok
"failed to learn about MSVC's LIB"
1267 eval CFG_MSVC_INCLUDE_PATH_
${bits}="\"$include_path\""
1268 eval CFG_MSVC_LIB_PATH_
${bits}="\"$lib_path\""
1270 putvar CFG_MSVC_BINDIR_
${bits}
1271 putvar CFG_MSVC_CL_
${bits}
1272 putvar CFG_MSVC_LIB_
${bits}
1273 putvar CFG_MSVC_LINK_
${bits}
1274 putvar CFG_MSVC_INCLUDE_PATH_
${bits}
1275 putvar CFG_MSVC_LIB_PATH_
${bits}
1283 if [ -n "$CFG_PERF" ]
1285 HAVE_PERF_LOGFD
=`$CFG_PERF stat --log-fd 2>&1 | grep 'unknown option'`
1286 if [ -z "$HAVE_PERF_LOGFD" ];
1288 CFG_PERF_WITH_LOGFD
=1
1289 putvar CFG_PERF_WITH_LOGFD
1293 if [ -z "$CFG_ENABLE_RUSTBUILD" ]; then
1295 step_msg
"making directories"
1298 doc
doc
/std
doc
/extra \
1311 make_dir
$t/rustllvm
1314 for t
in $CFG_TARGET
1319 make_dir
$t/rt
/stage
$s
1320 make_dir
$t/rt
/jemalloc
1321 make_dir
$t/rt
/compiler-rt
1324 arch
/i386 arch
/x86_64 arch
/arm arch
/aarch64 arch
/mips arch
/powerpc
1326 make_dir
$t/rt
/stage
$s/$i
1333 for t
in $CFG_TARGET
1335 # host bin dir stage0
1336 make_dir
$h/stage
0/bin
1338 # host lib dir stage0
1339 make_dir
$h/stage
0/lib
1341 # host test dir stage0
1342 make_dir
$h/stage
0/test
1344 # target bin dir stage0
1345 make_dir
$h/stage
0/lib
/rustlib
/$t/bin
1347 # target lib dir stage0
1348 make_dir
$h/stage
0/lib
/rustlib
/$t/lib
1353 make_dir
$h/stage
$i/bin
1356 make_dir
$h/stage
$i/$CFG_LIBDIR_RELATIVE
1359 make_dir
$h/stage
$i/test
1362 make_dir
$h/stage
$i/$CFG_LIBDIR_RELATIVE/rustlib
/$t/bin
1365 make_dir
$h/stage
$i/$CFG_LIBDIR_RELATIVE/rustlib
/$t/lib
1369 make_dir
$h/test
/run-pass
1370 make_dir
$h/test
/run-pass-valgrind
1371 make_dir
$h/test
/run-pass-fulldeps
1372 make_dir
$h/test
/run-fail
1373 make_dir
$h/test
/run-fail-fulldeps
1374 make_dir
$h/test
/compile-fail
1375 make_dir
$h/test
/parse-fail
1376 make_dir
$h/test
/compile-fail-fulldeps
1377 make_dir
$h/test
/bench
1378 make_dir
$h/test
/perf
1379 make_dir
$h/test
/pretty
1380 make_dir
$h/test
/debuginfo-gdb
1381 make_dir
$h/test
/debuginfo-lldb
1382 make_dir
$h/test
/codegen
1383 make_dir
$h/test
/codegen-units
1384 make_dir
$h/test
/rustdoc
1389 # Configure submodules
1390 step_msg
"configuring submodules"
1392 # Have to be in the top of src directory for this
1393 if [ -z $CFG_DISABLE_MANAGE_SUBMODULES ] && [ -z $CFG_ENABLE_RUSTBUILD ]
1397 msg
"git: submodule sync"
1398 "${CFG_GIT}" submodule sync
1400 msg
"git: submodule init"
1401 "${CFG_GIT}" submodule init
1403 # Disable submodules that we're not using
1404 if [ -n "${CFG_LLVM_ROOT}" ]; then
1405 msg
"git: submodule deinit src/llvm"
1406 "${CFG_GIT}" submodule deinit src
/llvm
1408 if [ -n "${CFG_JEMALLOC_ROOT}" ]; then
1409 msg
"git: submodule deinit src/jemalloc"
1410 "${CFG_GIT}" submodule deinit src
/jemalloc
1413 msg
"git: submodule update"
1414 "${CFG_GIT}" submodule update
1415 need_ok
"git failed"
1417 msg
"git: submodule foreach sync"
1418 "${CFG_GIT}" submodule foreach
--recursive 'if test -e .gitmodules; then git submodule sync; fi'
1419 need_ok
"git failed"
1421 msg
"git: submodule foreach update"
1422 "${CFG_GIT}" submodule update
--recursive
1423 need_ok
"git failed"
1425 # NB: this is just for the sake of getting the submodule SHA1 values
1426 # and status written into the build log.
1427 msg
"git: submodule status"
1428 "${CFG_GIT}" submodule status
--recursive
1430 msg
"git: submodule clobber"
1431 "${CFG_GIT}" submodule foreach
--recursive git clean
-dxf
1432 need_ok
"git failed"
1433 "${CFG_GIT}" submodule foreach
--recursive git checkout .
1434 need_ok
"git failed"
1439 # Configure llvm, only if necessary
1440 step_msg
"looking at LLVM"
1441 CFG_LLVM_SRC_DIR
=${CFG_SRC_DIR}src
/llvm
/
1452 if [ -n "$CFG_ENABLE_RUSTBUILD" ]
1454 msg
"not configuring LLVM, rustbuild in use"
1456 elif [ -z $CFG_LLVM_ROOT ]
1458 LLVM_BUILD_DIR
=${CFG_BUILD_DIR}$t/llvm
1459 if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]
1461 LLVM_DBG_OPTS
="--enable-debug-symbols --disable-optimized"
1462 # Just use LLVM straight from its build directory to
1463 # avoid 'make install' time
1464 LLVM_INST_DIR
=$LLVM_BUILD_DIR/Debug
1466 LLVM_DBG_OPTS
="--enable-optimized"
1467 LLVM_INST_DIR
=$LLVM_BUILD_DIR/Release
1469 if [ -z "$CFG_ENABLE_LLVM_ASSERTIONS" ]
1471 LLVM_ASSERTION_OPTS
="--disable-assertions"
1473 LLVM_ASSERTION_OPTS
="--enable-assertions"
1475 # Apparently even if we request assertions be enabled for MSVC,
1476 # LLVM's CMake build system ignore this and outputs in `Release`
1478 if [ ${is_msvc} -eq 0 ]; then
1479 LLVM_INST_DIR
=${LLVM_INST_DIR}+Asserts
1483 msg
"not reconfiguring LLVM, external LLVM root"
1484 # The user is using their own LLVM
1486 LLVM_INST_DIR
=$CFG_LLVM_ROOT
1488 # Check that LLVm FileCheck is available. Needed for the tests
1489 if [ -z "$CFG_DISABLE_CODEGEN_TESTS" ]; then
1490 need_cmd
$LLVM_INST_DIR/bin
/FileCheck
1494 if [ ${do_reconfigure} -ne 0 ]
1496 # because git is hilarious, it might have put the module index
1497 # in a couple places.
1498 index1
="${CFG_SRC_DIR}.git/modules/src/llvm/index"
1499 index2
="${CFG_SRC_DIR}src/llvm/.git/index"
1500 for index
in ${index1} ${index2}
1502 config_status
="${LLVM_BUILD_DIR}/config.status"
1503 if test -e ${index} -a \
1504 -e ${config_status} -a \
1505 ${config_status} -nt ${index}
1507 msg
"not reconfiguring LLVM, config.status is fresh"
1513 # We need the generator later on for compiler-rt even if LLVM's not built
1514 if [ ${is_msvc} -ne 0 ]
1516 case "$CFG_MSVC_ROOT" in
1518 generator
="Visual Studio 14 2015"
1521 generator
="Visual Studio 12 2013"
1524 err
"can't determine generator for LLVM cmake"
1529 generator
="$generator Win64"
1534 err
"can only build LLVM for x86 platforms"
1537 CFG_CMAKE_GENERATOR
=$generator
1538 putvar CFG_CMAKE_GENERATOR
1541 if [ ${do_reconfigure} -ne 0 ] && [ ${is_msvc} -ne 0 ]
1543 msg
"configuring LLVM for $t with cmake"
1545 CMAKE_ARGS
="-DLLVM_INCLUDE_TESTS=OFF"
1546 if [ -n "$CFG_DISABLE_OPTIMIZE_LLVM" ]; then
1547 CMAKE_ARGS
="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=Debug"
1549 CMAKE_ARGS
="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=Release"
1551 if [ -z "$CFG_ENABLE_LLVM_ASSERTIONS" ]
1553 CMAKE_ARGS
="$CMAKE_ARGS -DLLVM_ENABLE_ASSERTIONS=OFF"
1555 CMAKE_ARGS
="$CMAKE_ARGS -DLLVM_ENABLE_ASSERTIONS=ON"
1558 msg
"configuring LLVM with:"
1561 (cd $LLVM_BUILD_DIR && "$CFG_CMAKE" $CFG_LLVM_SRC_DIR \
1562 -G "$CFG_CMAKE_GENERATOR" \
1564 need_ok
"LLVM cmake configure failed"
1567 if [ ${do_reconfigure} -ne 0 ] && [ ${is_msvc} -eq 0 ]
1569 # LLVM's configure doesn't recognize the new Windows triples yet
1570 gnu_t
=$
(to_gnu_triple
$t)
1572 msg
"configuring LLVM for $gnu_t"
1574 LLVM_TARGETS
="--enable-targets=x86,x86_64,arm,aarch64,mips,powerpc"
1575 LLVM_BUILD
="--build=$gnu_t"
1576 LLVM_HOST
="--host=$gnu_t"
1577 LLVM_TARGET
="--target=$gnu_t"
1579 # Disable unused LLVM features
1580 LLVM_OPTS
="$LLVM_DBG_OPTS $LLVM_ASSERTION_OPTS --disable-docs --enable-bindings=none"
1581 # Disable term-info, linkage of which comes in multiple forms,
1582 # making our snapshots incompatible (#9334)
1583 LLVM_OPTS
="$LLVM_OPTS --disable-terminfo"
1584 # Try to have LLVM pull in as few dependencies as possible (#9397)
1585 LLVM_OPTS
="$LLVM_OPTS --disable-zlib --disable-libffi"
1587 # Use win32 native thread/lock apis instead of pthread wrapper.
1588 # (llvm's configure tries to find pthread first, so we have to disable it explicitly.)
1589 # Also note that pthreads works badly on mingw-w64 systems: #8996
1590 case "$CFG_BUILD" in
1592 LLVM_OPTS
="$LLVM_OPTS --disable-pthreads"
1598 LLVM_CXX_32
="ccache clang++ -Qunused-arguments"
1599 LLVM_CC_32
="ccache clang -Qunused-arguments"
1601 LLVM_CXX_64
="ccache clang++ -Qunused-arguments"
1602 LLVM_CC_64
="ccache clang -Qunused-arguments"
1605 LLVM_CXX_32
="clang++ -Qunused-arguments"
1606 LLVM_CC_32
="clang -Qunused-arguments"
1608 LLVM_CXX_64
="clang++ -Qunused-arguments"
1609 LLVM_CC_64
="clang -Qunused-arguments"
1612 LLVM_CXX_32
="ccache g++"
1613 LLVM_CC_32
="ccache gcc"
1615 LLVM_CXX_64
="ccache g++"
1616 LLVM_CC_64
="ccache gcc"
1627 msg
"inferring LLVM_CXX/CC from CXX/CC = $CXX/$CC"
1628 if [ -n "$CFG_ENABLE_CCACHE" ]
1630 if [ -z "$CFG_CCACHE" ]
1632 err
"ccache requested but not found"
1635 LLVM_CXX_32
="ccache $CXX"
1636 LLVM_CC_32
="ccache $CC"
1638 LLVM_CXX_64
="ccache $CXX"
1639 LLVM_CC_64
="ccache $CC"
1651 case "$CFG_CPUTYPE" in
1653 LLVM_CXX_32
="$LLVM_CXX_32 -m32"
1654 LLVM_CC_32
="$LLVM_CC_32 -m32"
1656 LLVM_CFLAGS_32
="-m32"
1657 LLVM_CXXFLAGS_32
="-m32"
1658 LLVM_LDFLAGS_32
="-m32"
1664 LLVM_CXX_32
="$LLVM_CXX_32 -m32"
1665 LLVM_CC_32
="$LLVM_CC_32 -m32"
1679 if echo $t |
grep -q x86_64
1681 LLVM_CXX
=$LLVM_CXX_64
1683 LLVM_CFLAGS
=$LLVM_CFLAGS_64
1684 LLVM_CXXFLAGS
=$LLVM_CXXFLAGS_64
1685 LLVM_LDFLAGS
=$LLVM_LDFLAGS_64
1687 LLVM_CXX
=$LLVM_CXX_32
1689 LLVM_CFLAGS
=$LLVM_CFLAGS_32
1690 LLVM_CXXFLAGS
=$LLVM_CXXFLAGS_32
1691 LLVM_LDFLAGS
=$LLVM_LDFLAGS_32
1696 CFLAGS
="$CFLAGS $LLVM_CFLAGS"
1697 CXXFLAGS
="$CXXFLAGS $LLVM_CXXFLAGS"
1698 LDFLAGS
="$LDFLAGS $LLVM_LDFLAGS"
1700 if [ "$CFG_USING_LIBCPP" != "0" ]; then
1701 LLVM_OPTS
="$LLVM_OPTS --enable-libcpp"
1704 LLVM_FLAGS
="$LLVM_TARGETS $LLVM_OPTS $LLVM_BUILD \
1705 $LLVM_HOST $LLVM_TARGET --with-python=$CFG_PYTHON"
1707 msg
"configuring LLVM with:"
1717 case $CFG_SRC_DIR in
1718 /* |
[a-z
]:* |
[A-Z
]:*)
1719 ${CFG_LLVM_SRC_DIR}configure
$LLVM_FLAGS
1722 ${CFG_BUILD_DIR}${CFG_LLVM_SRC_DIR}configure \
1726 need_ok
"LLVM configure failed"
1731 # Construct variables for LLVM build and install directories for
1732 # each target. These will be named
1733 # CFG_LLVM_BUILD_DIR_${target_triple} but all the hyphens in
1734 # target_triple will be converted to underscore, because bash
1735 # variables can't contain hyphens. The makefile will then have to
1737 CFG_LLVM_BUILD_DIR
=$
(echo CFG_LLVM_BUILD_DIR_
${t} |
tr - _
)
1738 CFG_LLVM_INST_DIR
=$
(echo CFG_LLVM_INST_DIR_
${t} |
tr - _
)
1739 eval ${CFG_LLVM_BUILD_DIR}="'$LLVM_BUILD_DIR'"
1740 eval ${CFG_LLVM_INST_DIR}="'$LLVM_INST_DIR'"
1744 step_msg
"writing configuration"
1747 putvar CFG_SRC_DIR_RELATIVE
1748 putvar CFG_BUILD_DIR
1751 putvar CFG_CONFIGURE_ARGS
1755 putvar CFG_LIBDIR_RELATIVE
1756 putvar CFG_DISABLE_MANAGE_SUBMODULES
1757 putvar CFG_AARCH64_LINUX_ANDROID_NDK
1758 putvar CFG_ARM_LINUX_ANDROIDEABI_NDK
1759 putvar CFG_I686_LINUX_ANDROID_NDK
1760 putvar CFG_NACL_CROSS_PATH
1762 putvar CFG_USING_LIBCPP
1764 # Avoid spurious warnings from clang by feeding it original source on
1765 # ccache-miss rather than preprocessed input.
1766 if [ -n "$CFG_ENABLE_CCACHE" ] && [ -n "$CFG_USING_CLANG" ]
1769 putvar CFG_CCACHE_CPP2
1772 if [ -n "$CFG_ENABLE_CCACHE" ]
1774 CFG_CCACHE_BASEDIR
=${CFG_SRC_DIR}
1775 putvar CFG_CCACHE_BASEDIR
1779 putvar CFG_LLVM_SRC_DIR
1783 CFG_LLVM_BUILD_DIR
=$
(echo CFG_LLVM_BUILD_DIR_
${t} |
tr - _
)
1784 CFG_LLVM_INST_DIR
=$
(echo CFG_LLVM_INST_DIR_
${t} |
tr - _
)
1785 putvar
$CFG_LLVM_BUILD_DIR
1786 putvar
$CFG_LLVM_INST_DIR
1789 if [ -n "$CFG_ENABLE_RUSTBUILD" ]
1791 INPUT_MAKEFILE
=src
/bootstrap
/mk
/Makefile.
in
1793 INPUT_MAKEFILE
=Makefile.
in
1797 copy_if_changed
${CFG_SRC_DIR}${INPUT_MAKEFILE} .
/Makefile
1798 move_if_changed config.tmp config.mk
1802 if [ -z "$CFG_ENABLE_DEBUG" ]; then
1803 step_msg
"configured in release mode. for development consider --enable-debug"
1808 msg
"run \`make help\`"