]> git.lizzy.rs Git - rust.git/commitdiff
configure: update required LLVM version
authorDoug Goldstein <cardoe@cardoe.com>
Thu, 24 Mar 2016 18:11:08 +0000 (13:11 -0500)
committerDoug Goldstein <cardoe@cardoe.com>
Thu, 24 Mar 2016 18:11:08 +0000 (13:11 -0500)
Rust 1.7.0 and newer appears to require LLVM 3.6.0 or newer when
building against a version that's out of the tree with the --llvm-root
flag.

Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
configure

index 9a0143a353275bd645795bfd594722918da96505..2700a7f6fe0ee7cff53f7511029448ae85463a9c 100755 (executable)
--- a/configure
+++ b/configure
@@ -969,11 +969,11 @@ then
     LLVM_VERSION=$($LLVM_CONFIG --version)
 
     case $LLVM_VERSION in
-        (3.[5-8]*)
+        (3.[6-8]*)
             msg "found ok version of LLVM: $LLVM_VERSION"
             ;;
         (*)
-            err "bad LLVM version: $LLVM_VERSION, need >=3.5"
+            err "bad LLVM version: $LLVM_VERSION, need >=3.6"
             ;;
     esac
 fi