about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-06-07 10:43:57 -0400
committerSteve Klabnik <steve@steveklabnik.com>2016-06-07 10:43:57 -0400
commitdd1198d0250c4e74b2de8d5576e922ccf5b99ef8 (patch)
tree2b06c6b31d000ee569f0575e1426a6e7901acfb8
parenta41de7f8da461ed479021082347d7163ab6b6878 (diff)
parent12abddb06b681f5c1cb389074b5a35d3e260698f (diff)
downloadrust-dd1198d0250c4e74b2de8d5576e922ccf5b99ef8.tar.gz
rust-dd1198d0250c4e74b2de8d5576e922ccf5b99ef8.zip
Rollup merge of #34104 - nagisa:cfg-llvm-up, r=alexcrichton
Require LLVM 3.7

We are using getMCTargetInfo which is 3.7+. I’m not sure whether 3.7 works though.

Fixes https://github.com/rust-lang/rust/issues/34103

r? @alexcrichton
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index a36362e0ada..5edfd0ed5a1 100755
--- a/configure
+++ b/configure
@@ -988,11 +988,11 @@ then
     LLVM_VERSION=$($LLVM_CONFIG --version)
 
     case $LLVM_VERSION in
-        (3.[6-8]*)
+        (3.[7-8]*)
             msg "found ok version of LLVM: $LLVM_VERSION"
             ;;
         (*)
-            err "bad LLVM version: $LLVM_VERSION, need >=3.6"
+            err "bad LLVM version: $LLVM_VERSION, need >=3.7"
             ;;
     esac
 fi