Skip to content

Commit

Permalink
configure: Accept LLVM 3.5 for building rust
Browse files Browse the repository at this point in the history
This is the current head of LLVM, and we can indeed build with 3.5
  • Loading branch information
alexcrichton committed Feb 21, 2014
1 parent 1366e04 commit ea72398
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 @@ -604,7 +604,7 @@ then
LLVM_VERSION=$($LLVM_CONFIG --version)

case $LLVM_VERSION in
(3.[2-4]svn|3.[2-4])
(3.[2-5]svn|3.[2-5])
msg "found ok version of LLVM: $LLVM_VERSION"
;;
(*)
Expand All @@ -626,7 +626,7 @@ then
| cut -d ' ' -f 2)

case $CFG_CLANG_VERSION in
(3.0svn | 3.0 | 3.1* | 3.2* | 3.3* | 3.4* )
(3.0svn | 3.0 | 3.1* | 3.2* | 3.3* | 3.4* | 3.5* )
step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
CFG_C_COMPILER="clang"
;;
Expand Down

0 comments on commit ea72398

Please sign in to comment.