Skip to content

Commit

Permalink
Auto merge of rust-lang#28318 - dongz9:master, r=eddyb
Browse files Browse the repository at this point in the history
Fix the following error when running configure with llvm 3.8svn:

configure: error: bad LLVM version: 3.8.0svn, need >=3.5
  • Loading branch information
bors committed Sep 10, 2015
2 parents 250679e + 0ad631c commit 79c6a4d
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 @@ -956,7 +956,7 @@ then
LLVM_VERSION=$($LLVM_CONFIG --version)

case $LLVM_VERSION in
(3.[5-7]*)
(3.[5-8]*)
msg "found ok version of LLVM: $LLVM_VERSION"
;;
(*)
Expand Down Expand Up @@ -1030,7 +1030,7 @@ then
esac
else
case $CFG_CLANG_VERSION in
(3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7*)
(3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7* | 3.8*)
step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
;;
(*)
Expand Down

0 comments on commit 79c6a4d

Please sign in to comment.