Skip to content

Commit 9f990f7

Browse files
committed
configure: Accept LLVM 3.4.X during configuration
The previous regex was a bit to strict, rejecting versions such as 3.4.1 which is apparently the version which travis is currently installing, causing all travis builds to fail.
1 parent ec7d0c7 commit 9f990f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ then
610610
LLVM_VERSION=$($LLVM_CONFIG --version)
611611

612612
case $LLVM_VERSION in
613-
(3.[2-5]svn|3.[2-5])
613+
(3.[2-5]*)
614614
msg "found ok version of LLVM: $LLVM_VERSION"
615615
;;
616616
(*)

0 commit comments

Comments
 (0)