Skip to content

Commit dd1198d

Browse files
committed
Rollup merge of rust-lang#34104 - nagisa:cfg-llvm-up, r=alexcrichton
Require LLVM 3.7 We are using getMCTargetInfo which is 3.7+. I’m not sure whether 3.7 works though. Fixes rust-lang#34103 r? @alexcrichton
2 parents a41de7f + 12abddb commit dd1198d

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
@@ -988,11 +988,11 @@ then
988988
LLVM_VERSION=$($LLVM_CONFIG --version)
989989

990990
case $LLVM_VERSION in
991-
(3.[6-8]*)
991+
(3.[7-8]*)
992992
msg "found ok version of LLVM: $LLVM_VERSION"
993993
;;
994994
(*)
995-
err "bad LLVM version: $LLVM_VERSION, need >=3.6"
995+
err "bad LLVM version: $LLVM_VERSION, need >=3.7"
996996
;;
997997
esac
998998
fi

0 commit comments

Comments
 (0)