Skip to content

Commit 79c6a4d

Browse files
committed
Auto merge of #28318 - dongz9:master, r=eddyb
Fix the following error when running configure with llvm 3.8svn: configure: error: bad LLVM version: 3.8.0svn, need >=3.5
2 parents 250679e + 0ad631c commit 79c6a4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ then
956956
LLVM_VERSION=$($LLVM_CONFIG --version)
957957

958958
case $LLVM_VERSION in
959-
(3.[5-7]*)
959+
(3.[5-8]*)
960960
msg "found ok version of LLVM: $LLVM_VERSION"
961961
;;
962962
(*)
@@ -1030,7 +1030,7 @@ then
10301030
esac
10311031
else
10321032
case $CFG_CLANG_VERSION in
1033-
(3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7*)
1033+
(3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7* | 3.8*)
10341034
step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
10351035
;;
10361036
(*)

0 commit comments

Comments
 (0)