Skip to content

Commit

Permalink
Rollup merge of rust-lang#32468 - cardoe:llvm-check, r=alexcrichton
Browse files Browse the repository at this point in the history
configure: update required LLVM version

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 <[email protected]>
  • Loading branch information
Manishearth committed Mar 26, 2016
2 parents 2e0dad7 + ed28247 commit af2f001
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit af2f001

Please sign in to comment.