diff options
| author | bors <bors@rust-lang.org> | 2016-03-26 03:31:56 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-03-26 03:31:56 -0700 |
| commit | c9b6ba800aba1e4caf8548904d2957f5cfda2758 (patch) | |
| tree | d0bb3bc7885edd7faf23e29cc34bc55dadd90fd2 | |
| parent | d322f990b04e3b598afd6a47c09a0277f73031aa (diff) | |
| parent | ed2824792698c11437b58e5480da1c1dc3d54510 (diff) | |
| download | rust-c9b6ba800aba1e4caf8548904d2957f5cfda2758.tar.gz rust-c9b6ba800aba1e4caf8548904d2957f5cfda2758.zip | |
Auto merge of #32468 - cardoe:llvm-check, r=alexcrichton
configure: update required LLVM version Rust 1.7.0 and newer appears to require LLVM 3.6.0 or newer when building against a version that's out of the tree with the --llvm-root flag. Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index 9a0143a3532..2700a7f6fe0 100755 --- a/configure +++ b/configure @@ -969,11 +969,11 @@ then LLVM_VERSION=$($LLVM_CONFIG --version) case $LLVM_VERSION in - (3.[5-8]*) + (3.[6-8]*) msg "found ok version of LLVM: $LLVM_VERSION" ;; (*) - err "bad LLVM version: $LLVM_VERSION, need >=3.5" + err "bad LLVM version: $LLVM_VERSION, need >=3.6" ;; esac fi |
